/* ═══════════════════════════════════════════════════
   OBRA DETAIL PAGE
   ═══════════════════════════════════════════════════ */

.obra-detail-page {
    padding: 0;
}

/* ── HERO ── */

.obra-hero {
    position: relative;
    height: 70vh;
    min-height: 480px;
    background-color: #141414;
    overflow: hidden;
}

.obra-hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right center;
}

/* Strong left-to-right gradient so title sits on dark, image shows on right */
.obra-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to right,
            rgba(13, 11, 16, 1)    0%,
            rgba(13, 11, 16, 0.85) 40%,
            rgba(13, 11, 16, 0.3)  65%,
            transparent            100%),
        linear-gradient(to top,
            rgba(13, 11, 16, 0.9)  0%,
            transparent            40%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 0 3rem 0;
}

.obra-hero-top {
    position: absolute;
    top: 2rem;
    left: 3rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.obra-genre-badge-list {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    flex-wrap: wrap;
}

.obra-genre-badge {
    background: #7c3aed;
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.28rem 0.75rem;
    border-radius: 999px;
}

.obra-genre-link-badge {
    text-decoration: none;
    transition: filter 0.18s ease, transform 0.18s ease;
}

.obra-genre-link-badge:hover {
    filter: brightness(1.08);
    transform: translateY(-1px);
}

.obra-hero-rating {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.88rem;
    font-weight: 700;
    color: #fff;
}

.obra-hero-rating-star {
    color: #f5a623;
}

.obra-hero-bottom {
    padding-bottom: 0;
    max-width: 860px;
}

.obra-hero-title-row {
    display: flex;
    align-items: flex-end;
    gap: 1rem;
    flex-wrap: wrap;
}

.obra-hero-title {
    font-size: clamp(2.8rem, 6vw, 5rem);
    font-weight: 900;
    line-height: 0.95;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    margin: 0;
    word-break: break-word;
}

/* ── META BAR (below hero) ── */

.obra-meta-bar {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 1rem 3rem;
    background: #0d0b10;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.obra-hero-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.78rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.obra-hero-meta-item svg {
    color: rgba(255, 255, 255, 0.4);
    flex-shrink: 0;
}

/* ── CONTENT LAYOUT ── */

.obra-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    max-width: 1100px;
    margin: 0 auto;
    padding: 3rem 2rem;
    align-items: start;
}

/* ── SECTIONS ── */

.obra-section {
    margin-bottom: 3rem;
}

.obra-section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

/* Heading with left amber border accent */
.obra-heading {
    border-left: 4px solid #cc9108;
    padding-left: 0.75rem;
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
    line-height: 1.2;
}

.obra-head-actions {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.obra-bookmark-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.65);
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
    flex-shrink: 0;
}

.obra-bookmark-btn:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

/* ── SYNOPSIS ── */

.obra-synopsis {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.75;
    font-size: 0.94rem;
    margin-bottom: 2rem;
}

.obra-synopsis-empty {
    color: rgba(255, 255, 255, 0.35);
    font-style: italic;
}

/* ── META STRIP ── */

.obra-meta-strip {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem 1.25rem;
    padding-top: 0.4rem;
}

.obra-meta-inline-item {
    padding-top: 0.85rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.obra-meta-inline-label {
    display: block;
    margin-bottom: 0.38rem;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.38);
}

.obra-meta-inline-value {
    margin: 0;
    font-size: 0.88rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.78);
}

.obra-meta-inline-link {
    color: #d8c9ff;
    text-decoration: none;
    font-weight: 600;
}

.obra-meta-inline-link:hover {
    text-decoration: underline;
}

.obra-meta-inline-genre-list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.38rem;
}

/* ── QUÉ DICE LA GENTE ── */

.obra-reviews-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.obra-reviews-section-title {
    font-size: 1.36rem;
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin: 0;
}

.obra-avg-rating {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.7rem 0.95rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 18px 40px rgba(13, 11, 16, 0.22);
    font-size: 0.88rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.78);
}

.obra-avg-stars {
    position: relative;
    display: inline-block;
    font-size: 1.05rem;
    line-height: 1;
    letter-spacing: 0.06em;
}

.obra-avg-stars-base,
.obra-avg-stars-fill {
    display: block;
}

.obra-avg-stars-base {
    color: rgba(255, 255, 255, 0.14);
}

.obra-avg-stars-fill {
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    white-space: nowrap;
    color: #f8a010;
    text-shadow: 0 0 16px rgba(248, 160, 16, 0.22);
}

.obra-avg-rating-value {
    color: #fff;
    font-size: 0.95rem;
}

.obra-avg-rating-meta {
    font-size: 0.74rem;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.46);
}

.obra-reviews-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.obra-review-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.025));
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 18px;
    padding: 1.15rem 1.25rem;
    box-shadow: 0 24px 48px rgba(13, 11, 16, 0.18);
}

.obra-review-header {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.65rem;
}

.obra-review-avatar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #7c3aed;
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    flex-shrink: 0;
}

.obra-review-avatar-img {
    object-fit: cover;
    display: block;
}

.obra-review-author {
    font-size: 0.84rem;
    font-weight: 700;
    color: #fff;
}

.obra-review-body {
    font-size: 0.86rem;
    color: rgba(255, 255, 255, 0.68);
    line-height: 1.72;
    font-style: italic;
    margin: 0;
}

.obra-reviews-empty {
    padding: 1rem 1.1rem;
    margin-bottom: 2rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.07);
    color: rgba(255, 255, 255, 0.52);
    font-size: 0.88rem;
}

/* ── INTERACT FORMS ── */

.obra-interact-panel {
    position: relative;
    margin-top: 0.5rem;
    padding: 1.15rem 1.2rem;
    border-radius: 20px;
    background:
        radial-gradient(circle at top left, rgba(186, 158, 255, 0.09), transparent 44%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015));
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 24px 56px rgba(8, 6, 14, 0.28);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.obra-interact-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 0.7rem;
}

.obra-interact-title {
    font-size: 1.02rem;
    font-weight: 800;
    color: #fff;
    margin: 0;
    letter-spacing: -0.01em;
}

.obra-participation-rating {
    padding-bottom: 1rem;
}

.obra-participation-review {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.obra-participation-review-locked {
    opacity: 0.86;
}

.obra-rating-value {
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.48);
}

.obra-inline-feedback {
    margin: 0 0 0.7rem;
    padding: 0.55rem 0.72rem;
    border-radius: 12px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.obra-inline-feedback-success {
    background: rgba(132, 85, 239, 0.12);
    border: 1px solid rgba(186, 158, 255, 0.22);
    color: #d9ccff;
}

.obra-inline-feedback-warning {
    background: rgba(248, 160, 16, 0.12);
    border: 1px solid rgba(248, 160, 16, 0.18);
    color: #ffdfaf;
}

.obra-action-feedback-wrap-hidden {
    display: none;
}

.obra-review-email,
.obra-share-input {
    display: block;
    width: 100%;
    margin-bottom: 0.75rem;
    background: rgba(255, 255, 255, 0.055);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 0.88rem 0.95rem;
    font-size: 0.88rem;
    font-family: inherit;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
    transition: background 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.obra-review-email:focus,
.obra-share-input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(186, 158, 255, 0.28);
    box-shadow: 0 0 0 8px rgba(132, 85, 239, 0.09);
}

.obra-rate-form-inner {
    margin: 0;
}

.obra-review-signed-in-as {
    margin: 0 0 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.84rem;
}

.obra-interact-panel-guest {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(13.5rem, 15.25rem);
    gap: 1.2rem;
    align-items: center;
    padding: 1.35rem 1.45rem;
    background:
        radial-gradient(circle at top left, rgba(186, 158, 255, 0.14), transparent 38%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.018));
}

.obra-interact-guest-body {
    min-width: 0;
}

.obra-interact-guest-head {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.obra-interact-guest-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    flex-shrink: 0;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(135deg, rgba(186, 158, 255, 0.2), rgba(132, 85, 239, 0.1));
    color: #f3ebff;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 12px 28px rgba(132, 85, 239, 0.16);
}

.obra-interact-guest-copy-block {
    display: grid;
    gap: 0.45rem;
    min-width: 0;
}

.obra-interact-panel-guest .obra-interact-title {
    font-size: 1.16rem;
    letter-spacing: -0.02em;
}

.obra-interact-guest-copy {
    margin: 0;
    max-width: 34rem;
    color: rgba(255, 255, 255, 0.64);
    font-size: 0.94rem;
    line-height: 1.7;
}

.obra-interact-auth-actions {
    display: grid;
    gap: 0.75rem;
    padding: 0.9rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.btn.obra-interact-guest-login,
.btn.obra-interact-guest-register {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 3rem;
    min-width: 0;
    border-radius: 16px;
    text-align: center;
}

.btn.obra-interact-guest-login {
    font-size: 0.72rem;
    letter-spacing: 0.14em;
}

.btn.obra-interact-guest-register {
    border-color: rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.025);
    color: rgba(247, 242, 255, 0.88);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
}

.btn.obra-interact-guest-register:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.18);
    color: #fff;
    opacity: 1;
}

.obra-review-textarea {
    display: block;
    width: 100%;
    min-height: 124px;
    background: rgba(255, 255, 255, 0.055);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 0.88rem 0.95rem;
    font-size: 0.88rem;
    line-height: 1.7;
    font-family: inherit;
    resize: vertical;
    margin-bottom: 0.75rem;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
    transition: background 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.obra-review-textarea:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(186, 158, 255, 0.28);
    box-shadow: 0 0 0 8px rgba(132, 85, 239, 0.09);
}

.obra-review-textarea:disabled {
    opacity: 0.52;
    cursor: not-allowed;
}

.obra-review-textarea::placeholder {
    color: rgba(255, 255, 255, 0.34);
}

.obra-review-form {
    margin: 0;
}

.obra-review-help {
    color: rgba(255, 255, 255, 0.52);
    font-size: 0.78rem;
}

.obra-review-score {
    margin-left: auto;
    padding: 0.25rem 0.55rem;
    border-radius: 999px;
    background: rgba(245, 166, 35, 0.14);
    color: #ffd48d;
    font-size: 0.76rem;
    font-weight: 700;
}

.obra-review-form-locked {
    opacity: 0.9;
}

.obra-review-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn.obra-review-submit {
    min-width: 11rem;
}

.obra-user-review-card {
    padding: 0.9rem 0.95rem;
    border-radius: 16px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.obra-user-review {
    border-left: 3px solid rgba(186, 158, 255, 0.78);
    padding-left: 0.95rem;
    margin: 0;
    color: rgba(255, 255, 255, 0.74);
    font-style: italic;
    font-size: 0.9rem;
    line-height: 1.75;
}

.obra-share-dialog {
    width: min(100%, 32rem);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 22px;
    background: #1a1620;
    color: #fff;
    padding: 0;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
    inset: 0;
    margin: auto;
}

.obra-share-dialog::backdrop {
    background: rgba(0, 0, 0, 0.6);
}

.obra-share-dialog-close-form {
    display: flex;
    justify-content: flex-end;
    padding: 0.75rem 0.75rem 0;
}

.obra-share-dialog-close {
    width: 2rem;
    height: 2rem;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.78);
    cursor: pointer;
}

.obra-share-dialog-body {
    padding: 0 1.5rem 1.5rem;
}

.obra-share-dialog-kicker {
    margin: 0;
    color: #f5a623;
    font-size: 0.76rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

.obra-share-dialog-title {
    margin: 0.5rem 0 0.65rem;
}

.obra-share-dialog-copy {
    margin: 0 0 1rem;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.6;
}

.obra-share-form {
    display: grid;
    gap: 0.65rem;
}

.obra-share-label {
    font-size: 0.88rem;
    font-weight: 700;
}

.obra-share-actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 0.25rem;
}

/* ── VERSIONES ── */

.obra-versions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 0.75rem;
}

.obra-version-item {
    display: block;
    padding: 1rem 1.1rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    text-decoration: none;
    transition: background 0.15s, border-color 0.15s;
}

.obra-version-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.16);
}

.obra-version-item-active {
    border-color: #7c3aed;
    background: rgba(124, 58, 237, 0.08);
}

.obra-version-theater {
    font-size: 0.88rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 0.3rem;
}

.obra-version-dates {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.45);
    margin: 0;
    line-height: 1.5;
}

/* ── RESPONSIVE ── */

@media (max-width: 960px) {
    .obra-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {
    .obra-hero-overlay {
        background:
            linear-gradient(to bottom,
                rgba(13, 11, 16, 0.5)  0%,
                rgba(13, 11, 16, 0.9)  70%,
                rgba(13, 11, 16, 1)    100%);
    }

    .obra-hero-top {
        left: 1.5rem;
    }

    .obra-hero-overlay {
        padding: 0 1.5rem 0;
    }

    .obra-hero-title {
        font-size: 2.4rem;
    }

    .obra-meta-bar {
        padding: 1rem 1.5rem;
        gap: 1.25rem;
        flex-wrap: wrap;
    }

    .obra-meta-strip {
        grid-template-columns: 1fr;
    }

    .obra-reviews-grid {
        grid-template-columns: 1fr;
    }

    .obra-avg-rating {
        width: 100%;
        justify-content: space-between;
        border-radius: 18px;
    }

    .obra-avg-rating-meta {
        display: none;
    }

    .obra-interact-panel {
        padding: 1rem;
        border-radius: 18px;
    }

    .obra-review-actions {
        align-items: stretch;
    }

    .obra-interact-auth-actions {
        padding: 0.8rem;
    }

    .btn.obra-review-submit {
        width: 100%;
    }

    .obra-interact-panel-guest {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .obra-interact-guest-head {
        gap: 0.9rem;
    }

    .obra-interact-guest-mark {
        width: 2.8rem;
        height: 2.8rem;
        border-radius: 16px;
    }

    .obra-content {
        padding: 2rem 1.25rem;
    }
}

/* ── ACTION BAR (wishlist / seen) ── */

.obra-action-bar {
    display: flex;
    gap: 1rem;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background: rgba(0,0,0,0.4);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    flex-wrap: wrap;
}

.obra-action-bar-left,
.obra-action-bar-right {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    flex-wrap: wrap;
}

.obra-action-form {
    margin: 0;
}

.obra-action-feedback-wrap {
    padding: 0.8rem 2rem 0;
    background: rgba(0, 0, 0, 0.4);
}

.obra-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.55rem 1.1rem;
    font-size: 0.88rem;
    font-weight: 600;
    border-radius: 20px;
    cursor: pointer;
    border: 1px solid rgba(255,255,255,0.18);
    background: rgba(255,255,255,0.05);
    color: rgba(255,255,255,0.7);
    transition: background 0.18s, border-color 0.18s, color 0.18s;
}

.obra-action-btn:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.3);
    color: #fff;
}

.obra-action-btn.obra-action-btn-active {
    background: rgba(124,58,237,0.2);
    border-color: #7c3aed;
    color: #c4b5fd;
}

/*
.obra-action-btn.obra-action-btn-seen.obra-action-btn-active {
    background: rgba(74,222,128,0.12);
    border-color: rgba(74,222,128,0.4);
    color: #4ade80;
}
*/

.obra-action-btn-share {
    border-color: rgba(124, 58, 237, 0.34);
    color: #d8c9ff;
}

.obra-ticket-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.65rem;
    padding: 0.55rem 1.2rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #cc9108 0%, #f5a623 100%);
    color: #141414;
    font-size: 0.88rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-decoration: none;
    box-shadow: 0 16px 34px rgba(204, 145, 8, 0.24);
    transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}

.obra-ticket-btn:hover {
    transform: translateY(-1px);
    filter: brightness(1.03);
    box-shadow: 0 18px 38px rgba(204, 145, 8, 0.3);
}

.obra-ticket-btn-disabled {
    cursor: pointer;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.72);
    box-shadow: none;
}

.obra-ticket-btn-disabled:hover {
    transform: none;
    filter: none;
    box-shadow: none;
}

.obra-show-dates {
    margin-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 1rem;
}

.obra-show-dates-title {
    margin: 0;
    color: #d8c9ff;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.obra-show-dates-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-top: 0.75rem;
}

.obra-show-date-pill {
    padding: 0.45rem 0.75rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.84rem;
}

.obra-action-btn.obra-action-btn-admin {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.18) 0%, rgba(139, 92, 246, 0.28) 100%);
    border-color: rgba(167, 139, 250, 0.45);
    color: #ddd6fe;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 4px 12px rgba(124, 58, 237, 0.18);
    text-decoration: none;
    transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease,
        box-shadow 0.18s ease, transform 0.18s ease;
}

.obra-action-btn.obra-action-btn-admin:hover {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.32) 0%, rgba(139, 92, 246, 0.42) 100%);
    border-color: rgba(196, 181, 253, 0.7);
    color: #fff;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.12),
        0 6px 18px rgba(124, 58, 237, 0.32);
    transform: translateY(-1px);
}
