/* ================================================
   Event Landing Page - Premium Sanctuary Design
   Elevated UI/UX with depth and sophistication
   ================================================ */

/* ================================================
   Base Layout
   ================================================ */
.event-landing {
    background-color: var(--meetings-bg-primary, #0d0d0d);
    min-height: 100vh;
    color: var(--meetings-text-primary, #ffffff);
}

/* ================================================
   Hero Section - Portal de Entrada
   ================================================ */
.event-hero {
    position: relative;
    padding: 100px 20px 140px;
    background-color: #0d0d0d;
    background-size: cover;
    background-position: center top;
    overflow: hidden;
}

/* Gradiente radial sutil quando não há imagem */
.event-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 50% 0%, rgba(254, 175, 80, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(230, 126, 34, 0.05) 0%, transparent 40%);
    pointer-events: none;
}

/* Overlay gradiente - escurece para legibilidade */
.event-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.55) 0%,
        rgba(0, 0, 0, 0.7) 50%,
        #0d0d0d 100%
    );
    pointer-events: none;
}

.event-hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

/* Meta Badges - Pílulas elegantes */
.event-meta-badges {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.meta-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: 24px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    backdrop-filter: blur(10px);
}

.badge-public {
    background-color: rgba(46, 204, 113, 0.12);
    color: #2ecc71;
    border: 1px solid rgba(46, 204, 113, 0.25);
}

.badge-exclusive {
    background-color: rgba(254, 175, 80, 0.12);
    color: var(--meetings-accent, #feaf50);
    border: 1px solid rgba(254, 175, 80, 0.25);
}

.badge-recording {
    background-color: rgba(52, 152, 219, 0.12);
    color: #3498db;
    border: 1px solid rgba(52, 152, 219, 0.25);
}

.badge-recording.fullpass {
    background-color: rgba(46, 204, 113, 0.12);
    color: #2ecc71;
    border: 1px solid rgba(46, 204, 113, 0.25);
}

.badge-live-only {
    background-color: rgba(255, 127, 80, 0.12);
    color: #ff7f50;
    border: 1px solid rgba(255, 127, 80, 0.25);
}

/* Event Format Label - Destaque acima do título */
.event-format-label {
    display: inline-block;
    margin-bottom: 16px;
}

.event-format-label span {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--meetings-accent, #feaf50);
    letter-spacing: 2px;
    text-transform: uppercase;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--meetings-accent, #feaf50);
}

/* Event Title - Impactante e Elegante */
.event-title {
    font-size: 3rem;
    font-weight: 700;
    margin: 0 0 20px;
    line-height: 1.15;
    color: #fff;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.9);
}

.event-subtitle {
    font-size: 1.25rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.95);
    margin: 0 0 36px;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.9);
}

/* Event Info - Metadados como pílulas */
.event-info {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.event-info-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    font-weight: 500;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.event-info-item i {
    color: var(--meetings-accent, #feaf50);
    font-size: 1rem;
}

/* Speakers no Hero */
.event-speakers {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 8px;
}

.speaker-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--meetings-accent, #feaf50);
    box-shadow: 0 4px 20px rgba(254, 175, 80, 0.25);
    transition: transform 0.3s ease;
}


.speaker-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.speaker-names {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    font-weight: 400;
}

/* ================================================
   Main Content Grid
   ================================================ */
.event-main {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px 60px;
    position: relative;
}

.event-grid {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 50px;
    align-items: start;
}

/* ================================================
   Action Panel - Card Flutuante Premium
   ================================================ */
.event-action-panel {
    position: sticky;
    top: 30px;
    margin-top: -100px; /* Overlap com o Hero */
    z-index: 10;
}

/* Message Display */
.event-message {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    border-radius: 12px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    backdrop-filter: blur(10px);
}

.message-success {
    background-color: rgba(46, 204, 113, 0.12);
    color: #2ecc71;
    border: 1px solid rgba(46, 204, 113, 0.25);
}

.message-error {
    background-color: rgba(231, 76, 60, 0.12);
    color: #e74c3c;
    border: 1px solid rgba(231, 76, 60, 0.25);
}

/* Action Card - Premium Style */
.action-card {
    background: linear-gradient(180deg, #1a1a1a 0%, #141414 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 36px 32px;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.03) inset;
    text-align: center;
}

.action-card-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(254, 175, 80, 0.15) 0%, rgba(230, 126, 34, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    border: 1px solid rgba(254, 175, 80, 0.2);
}

.action-card-icon i {
    font-size: 1.8rem;
    color: var(--meetings-accent, #feaf50);
}

.action-card-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #fff;
    margin: 0 0 12px;
    text-align: center;
    letter-spacing: -0.01em;
}

.action-card-text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    line-height: 1.7;
    text-align: center;
    margin: 0 0 28px;
}

/* ================================================
   Left Column - Description
   ================================================ */
.event-description {
    padding-top: 40px;
}

.section-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
    margin: 0 0 28px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.section-title::before {
    content: '';
    width: 4px;
    height: 24px;
    background: linear-gradient(180deg, var(--meetings-accent, #feaf50) 0%, #e67e22 100%);
    border-radius: 2px;
}

/* Learning Points - Lista Premium */
.learning-points {
    list-style: none;
    padding: 0;
    margin: 0 0 50px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.learning-points li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 24px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    transition: all 0.3s ease;
}


.learning-points li i {
    color: rgba(254, 175, 80, 0.5);
    font-size: 0.7rem;
    flex-shrink: 0;
    margin-top: 6px;
}

.learning-points li span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.7;
}

/* Destaque para títulos nos tópicos */
.learning-points li span strong,
.learning-points li span b {
    color: #fff;
    font-weight: 600;
    display: block;
    margin-bottom: 4px;
}

/* ================================================
   Speakers Detail - Cards Premium
   ================================================ */
.speakers-detail {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.speaker-card {
    display: flex;
    gap: 24px;
    padding: 28px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    transition: all 0.3s ease;
}


.speaker-photo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 3px solid rgba(254, 175, 80, 0.3);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.speaker-info {
    flex: 1;
}

.speaker-info h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #fff;
    margin: 0 0 12px;
    letter-spacing: -0.01em;
}

.speaker-info p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0 0 16px;
}

/* Speaker Bio List - Bullets discretos */
.speaker-bio-list {
    list-style: none;
    padding: 0;
    margin: 0 0 16px;
}

.speaker-bio-list li {
    position: relative;
    padding-left: 16px;
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 4px;
}

.speaker-bio-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: rgba(254, 175, 80, 0.4);
    font-size: 0.8rem;
}

.speaker-linkedin {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(0, 119, 181, 0.1);
    border: 1px solid rgba(0, 119, 181, 0.2);
    border-radius: 8px;
    color: #0077b5;
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
}


/* ================================================
   Form Styles - Premium Inputs
   ================================================ */
.registration-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: left;
}

.form-group input {
    padding: 14px 18px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.form-group input:focus {
    outline: none;
    border-color: var(--meetings-accent, #feaf50);
    background: rgba(254, 175, 80, 0.05);
    box-shadow: 0 0 0 3px rgba(254, 175, 80, 0.1);
}

.form-group input[readonly] {
    opacity: 0.6;
    cursor: not-allowed;
    background: rgba(255, 255, 255, 0.02);
}

.recaptcha-container {
    display: flex;
    justify-content: center;
    padding: 8px 0;
}

/* Submit Button - Premium CTA */
.btn-submit-registration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 28px;
    border-radius: 12px;
    border: none;
    background: linear-gradient(135deg, #feaf50 0%, #e67e22 100%);
    color: #000;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 20px rgba(254, 175, 80, 0.3);
}


.btn-submit-registration:active {
    transform: translateY(0);
}

.btn-submit-registration.urgent {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: #fff;
    box-shadow: 0 4px 20px rgba(231, 76, 60, 0.3);
    animation: pulse-urgent 2s infinite;
}

@keyframes pulse-urgent {
    0%, 100% { box-shadow: 0 4px 20px rgba(231, 76, 60, 0.3); }
    50% { box-shadow: 0 4px 30px rgba(231, 76, 60, 0.5), 0 0 0 8px rgba(231, 76, 60, 0.1); }
}

/* ================================================
   State-specific Styles
   ================================================ */

/* Badges genéricos */
.registered-badge,
.today-badge,
.room-open-badge,
.live-badge,
.ended-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 auto 24px;
}

.registered-badge {
    background: linear-gradient(135deg, rgba(46, 204, 113, 0.15) 0%, rgba(39, 174, 96, 0.1) 100%);
    color: #2ecc71;
    border: 1px solid rgba(46, 204, 113, 0.3);
}

.today-badge {
    background: linear-gradient(135deg, rgba(254, 175, 80, 0.15) 0%, rgba(230, 126, 34, 0.1) 100%);
    color: var(--meetings-accent, #feaf50);
    border: 1px solid rgba(254, 175, 80, 0.3);
}

.room-open-badge {
    background: linear-gradient(135deg, rgba(46, 204, 113, 0.15) 0%, rgba(39, 174, 96, 0.1) 100%);
    color: #2ecc71;
    border: 1px solid rgba(46, 204, 113, 0.3);
}

.room-open-badge.urgent {
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.15) 0%, rgba(192, 57, 43, 0.1) 100%);
    color: #e74c3c;
    border: 1px solid rgba(231, 76, 60, 0.3);
}

.live-badge {
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.2) 0%, rgba(192, 57, 43, 0.15) 100%);
    color: #e74c3c;
    border: 1px solid rgba(231, 76, 60, 0.4);
    font-weight: 700;
    animation: live-pulse 2s infinite;
}

.ended-badge {
    background: rgba(127, 140, 141, 0.1);
    color: #95a5a6;
    border: 1px solid rgba(127, 140, 141, 0.25);
}

.pulse-dot, .live-dot {
    width: 10px;
    height: 10px;
    background: currentColor;
    border-radius: 50%;
    animation: pulse-dot 1.5s infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.7); }
}

@keyframes live-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(231, 76, 60, 0.4); }
    50% { box-shadow: 0 0 0 10px rgba(231, 76, 60, 0); }
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* Locked Icon */
.locked-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(254, 175, 80, 0.15) 0%, rgba(230, 126, 34, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    border: 1px solid rgba(254, 175, 80, 0.25);
}

.locked-icon i {
    font-size: 2.2rem;
    color: var(--meetings-accent, #feaf50);
}

/* ================================================
   Buttons Premium
   ================================================ */
.btn-action-disabled {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 28px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.03);
    color: rgba(255, 255, 255, 0.4);
    font-size: 1rem;
    width: 100%;
    cursor: not-allowed;
}

.btn-enter-room {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 32px;
    border-radius: 14px;
    background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 6px 25px rgba(46, 204, 113, 0.35);
}

.btn-enter-room:hover {
    color: #fff;
    text-decoration: none;
}


.btn-enter-live {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 32px;
    border-radius: 14px;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: live-button-pulse 2s infinite;
    transition: all 0.3s ease;
}


@keyframes live-button-pulse {
    0%, 100% { box-shadow: 0 6px 25px rgba(231, 76, 60, 0.35); }
    50% { box-shadow: 0 6px 35px rgba(231, 76, 60, 0.5), 0 0 0 10px rgba(231, 76, 60, 0.1); }
}

.live-indicator {
    width: 14px;
    height: 14px;
    background: #fff;
    border-radius: 50%;
    animation: blink 1s infinite;
}

.btn-refresh-page {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 24px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    width: 100%;
    cursor: pointer;
    transition: all 0.3s ease;
}


.btn-cancel-subscription {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 16px;
    border-radius: 10px;
    border: none;
    background: transparent;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 100%;
    margin-top: 16px;
}


.btn-watch-recording {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 28px;
    border-radius: 12px;
    background: linear-gradient(135deg, #feaf50 0%, #e67e22 100%);
    color: #000;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(254, 175, 80, 0.3);
}

.btn-watch-recording:hover {
    color: #000;
    text-decoration: none;
}

.btn-see-events {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    text-decoration: none;
}

.btn-see-events:hover {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
}

.btn-login {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 24px;
    border-radius: 12px;
    background: linear-gradient(135deg, #feaf50 0%, #e67e22 100%);
    color: #000;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(254, 175, 80, 0.3);
}


/* ================================================
   Countdown Timer Premium
   ================================================ */
.countdown-timer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    margin: 28px 0;
    padding: 20px;
    background: rgba(254, 175, 80, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(254, 175, 80, 0.15);
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 70px;
    padding: 8px 12px;
}

.countdown-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--meetings-accent, #feaf50);
    font-family: 'SF Mono', 'Monaco', 'Consolas', monospace;
    line-height: 1;
}

.countdown-label {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 6px;
}

.countdown-separator {
    font-size: 2rem;
    font-weight: 700;
    color: rgba(254, 175, 80, 0.4);
    margin-bottom: 20px;
}

.event-countdown-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 20px;
    background: rgba(254, 175, 80, 0.08);
    border-radius: 12px;
    border: 1px solid rgba(254, 175, 80, 0.15);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    text-align: center;
    margin-bottom: 20px;
}

.event-countdown-info i {
    color: var(--meetings-accent, #feaf50);
    font-size: 1.1rem;
}

/* Auto-reload Notice */
.auto-reload-notice {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px;
    background: linear-gradient(135deg, rgba(46, 204, 113, 0.15) 0%, rgba(39, 174, 96, 0.1) 100%);
    border-radius: 12px;
    border: 1px solid rgba(46, 204, 113, 0.3);
    color: #2ecc71;
    font-weight: 600;
    animation: fade-in 0.3s ease;
}

.spinning {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes fade-in {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ================================================
   Access Options (Locked State)
   ================================================ */
.locked-options {
    text-align: center;
    margin-bottom: 20px;
}

.option-hint {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.access-divider {
    display: flex;
    align-items: center;
    margin: 24px 0;
}

.access-divider::before,
.access-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.access-divider span {
    padding: 0 20px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.access-options {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.access-option-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}


.access-option-card.fullpass {
    border-color: rgba(254, 175, 80, 0.25);
    background: linear-gradient(135deg, rgba(254, 175, 80, 0.08) 0%, rgba(230, 126, 34, 0.04) 100%);
}

.access-option-card .option-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(254, 175, 80, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.access-option-card .option-icon i {
    font-size: 1.3rem;
    color: var(--meetings-accent, #feaf50);
}

.access-option-card .option-info {
    flex: 1;
}

.access-option-card .option-info h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    margin: 0 0 4px;
}

.access-option-card .option-info p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

.access-option-card > i {
    color: rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}


/* ================================================
   Misc
   ================================================ */
.room-tip {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
    margin-top: 20px;
}

.room-tip i {
    color: rgba(255, 255, 255, 0.3);
}

.recording-notice {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px;
    background: rgba(52, 152, 219, 0.08);
    border-radius: 12px;
    border: 1px solid rgba(52, 152, 219, 0.2);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.recording-notice i {
    color: #3498db;
    animation: spin 2s linear infinite;
}

/* Recording Warning Box */
.recording-warning {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 16px;
    background: rgba(254, 175, 80, 0.08);
    border-radius: 10px;
    border: 1px solid rgba(254, 175, 80, 0.2);
    margin-bottom: 8px;
}

.recording-warning i {
    color: var(--meetings-accent, #feaf50);
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.recording-warning-content {
    flex: 1;
}

.recording-warning-content p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.65rem;
    line-height: 1.5;
    margin: 0;
    text-align: left;
}

.recording-warning-content a {
    color: var(--meetings-accent, #feaf50);
    text-decoration: underline;
    font-weight: 500;
}


.recording-warning.fullpass {
    background: rgba(46, 204, 113, 0.08);
    border-color: rgba(46, 204, 113, 0.2);
}

.recording-warning.fullpass i {
    color: #2ecc71;
}

.next-events-hint {
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
}

.next-events-hint p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.9rem;
    margin-bottom: 14px;
}

.access-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--meetings-accent, #feaf50);
    font-size: 0.9rem;
    margin-top: 14px;
}

/* ================================================
   Responsive Design
   ================================================ */
@media (max-width: 1024px) {
    .event-grid {
        grid-template-columns: 1fr 380px;
        gap: 40px;
    }
}

@media (max-width: 900px) {
    .event-hero {
        padding: 80px 20px 60px;
    }

    .event-action-panel {
        margin-top: 0;
    }

    .event-grid {
        grid-template-columns: 1fr;
    }

    .event-description {
        padding-top: 0;
        order: 2;
    }

    .event-action-panel {
        position: static;
        order: 1;
    }

    .event-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 600px) {
    .event-hero {
        padding: 60px 16px 50px;
    }

    .event-title {
        font-size: 1.8rem;
    }

    .event-subtitle {
        font-size: 1rem;
    }

    .event-info {
        gap: 10px;
    }

    .event-info-item {
        padding: 8px 14px;
        font-size: 0.8rem;
    }

    .action-card {
        padding: 28px 24px;
        border-radius: 16px;
    }

    .countdown-value {
        font-size: 1.8rem;
    }

    .countdown-item {
        min-width: 55px;
    }

    .learning-points li {
        padding: 16px 18px;
    }

    .speaker-card {
        flex-direction: column;
        text-align: center;
        padding: 24px 20px;
    }

    .speaker-photo {
        margin: 0 auto 16px;
    }

    .speaker-info h3 {
        font-size: 1.15rem;
    }

    .section-title {
        font-size: 1.25rem;
    }
}
