/**
 * Evergreen Webinar Frontend Styles
 */

/* Countdown Timer Styles */
.evergreen-countdown-container {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    padding: 30px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 15px;
    color: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.evergreen-countdown-message h3 {
    font-size: 28px;
    margin: 0 0 30px 0;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.evergreen-countdown-timer {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.countdown-block {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 20px 15px;
    min-width: 80px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.countdown-number {
    display: block;
    font-size: 36px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 5px;
}

.countdown-label {
    display: block;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

.evergreen-countdown-actions {
    font-size: 16px;
    opacity: 0.9;
}

.webinar-live {
    font-size: 24px;
    font-weight: bold;
    color: #ff4757;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }

    100% {
        opacity: 1;
    }
}

/* Compact Live Indicator Styles */
.evergreen-compact-live {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 150;
    background: rgba(255, 71, 87, 0.95);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(255, 71, 87, 0.4);
    backdrop-filter: blur(5px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.evergreen-compact-live::before {
    content: '';
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    animation: liveBlink 1.5s infinite;
}

/* Replay Mode Indicator */
.evergreen-compact-live.replay {
    background: rgba(52, 152, 219, 0.95);
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.4);
}

.evergreen-compact-live.replay::before {
    animation: replayRotate 2s linear infinite;
}

.webinar-replay {
    font-size: 24px;
    font-weight: bold;
    color: #3498db;
    animation: pulse 2s infinite;
}

@keyframes liveBlink {

    0%,
    50% {
        opacity: 1;
    }

    51%,
    100% {
        opacity: 0.3;
    }
}

@keyframes replayRotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@media (max-width: 768px) {
    .evergreen-compact-live {
        top: 15px;
        left: 15px;
        padding: 6px 12px;
        font-size: 12px;
        border-radius: 16px;
    }

    .evergreen-compact-live::before {
        width: 6px;
        height: 6px;
    }
}

@media (max-width: 480px) {
    .evergreen-compact-live {
        top: 10px;
        left: 10px;
        padding: 5px 10px;
        font-size: 11px;
        border-radius: 14px;
        gap: 6px;
    }

    .evergreen-compact-live::before {
        width: 5px;
        height: 5px;
    }
}

/* Ensure compact indicator doesn't interfere with other elements */
.evergreen-compact-live {
    user-select: none;
    pointer-events: none;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .evergreen-compact-live {
        background: #ff0000;
        border: 3px solid #ffffff;
    }
}

/* Video Player Styles */
.evergreen-player-container {
    position: relative;
    background: #000;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    margin: 0 auto;
}

/* Responsive aspect ratio container */
.evergreen-responsive-player .evergreen-player-aspect-wrapper {
    position: relative;
    width: 100%;
    height: 0;
    /* padding-bottom is set inline based on aspect ratio */
}

.evergreen-responsive-player .evergreen-player-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Fallback for non-responsive players */
.evergreen-player-container:not(.evergreen-responsive-player) .evergreen-player-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.evergreen-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* Changed from cover to contain to respect aspect ratio */
    display: none;
    background: #000;
    /* Ensure smooth playback */
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
}

.evergreen-video.active {
    display: block;
}

/* Ensure videos are responsive on mobile */
.evergreen-video {
    max-width: 100%;
    height: auto;
}

/* For responsive players, override the height auto */
.evergreen-responsive-player .evergreen-video {
    height: 100%;
}

/* Aspect Ratio Specific Styles */
.evergreen-player-container[data-aspect-ratio="16:9"] .evergreen-player-aspect-wrapper {
    padding-bottom: 56.25%;
    /* 9/16 * 100 */
}

.evergreen-player-container[data-aspect-ratio="4:3"] .evergreen-player-aspect-wrapper {
    padding-bottom: 75%;
    /* 3/4 * 100 */
}

.evergreen-player-container[data-aspect-ratio="21:9"] .evergreen-player-aspect-wrapper {
    padding-bottom: 42.86%;
    /* 9/21 * 100 */
}

.evergreen-player-container[data-aspect-ratio="1:1"] .evergreen-player-aspect-wrapper {
    padding-bottom: 100%;
    /* 1/1 * 100 */
}

.evergreen-player-container[data-aspect-ratio="9:16"] .evergreen-player-aspect-wrapper {
    padding-bottom: 177.78%;
    /* 16/9 * 100 */
}

/* Mobile-first responsive design for video players */
@media (max-width: 768px) {
    .evergreen-player-container {
        margin: 0 auto;
        border-radius: 8px;
    }

    .evergreen-player-status {
        padding: 15px 10px;
        font-size: 14px;
    }

    /* Adjust CTA buttons for mobile */
    .evergreen-cta-container {
        bottom: 50px;
    }

    .evergreen-cta-button {
        padding: 10px 20px;
        font-size: 14px;
        margin: 5px;
    }

    /* For vertical videos on mobile, limit max height */
    .evergreen-player-container[data-aspect-ratio="9:16"] {
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .evergreen-player-container {
        border-radius: 6px;
    }

    .evergreen-player-status {
        padding: 12px 8px;
        font-size: 12px;
    }

    .evergreen-cta-container {
        bottom: 40px;
    }

    .evergreen-cta-button {
        padding: 8px 16px;
        font-size: 12px;
        margin: 3px;
    }

    /* Further limit vertical videos on small screens */
    .evergreen-player-container[data-aspect-ratio="9:16"] {
        max-width: 250px;
    }
}

/* Large screen optimizations */
@media (min-width: 1200px) {
    .evergreen-player-container {
        max-width: 1000px;
    }

    /* Ultra-wide videos look better with some max-width */
    .evergreen-player-container[data-aspect-ratio="21:9"] {
        max-width: 1200px;
    }
}

/* Ensure proper scaling for different aspect ratios */
.evergreen-player-container[data-aspect-ratio="21:9"] .evergreen-video,
.evergreen-player-container[data-aspect-ratio="16:9"] .evergreen-video {
    object-fit: contain;
}

.evergreen-player-container[data-aspect-ratio="1:1"] .evergreen-video,
.evergreen-player-container[data-aspect-ratio="9:16"] .evergreen-video {
    object-fit: contain;
}

.evergreen-player-container[data-aspect-ratio="4:3"] .evergreen-video {
    object-fit: contain;
}

.evergreen-player-status {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.8), transparent);
    color: white;
    padding: 20px;
    text-align: center;
    font-size: 16px;
    z-index: 50;
}

/* Div Reveals Container - Now positioned below video */
.evergreen-reveals-container {
    position: relative;
    width: 100%;
    margin-top: 20px;
    z-index: 100;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Reverse order when configured */
.evergreen-reveals-container.reverse-order {
    flex-direction: column-reverse;
}

/* Individual reveal positioning - now stacked vertically */
.evergreen-reveal {
    position: relative;
    width: 100%;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

/* Show animation */
.evergreen-reveal.show {
    opacity: 1;
    transform: translateY(0);
}

/* Legacy positioning classes for backward compatibility - now ignored */
.evergreen-reveal-bottom-center,
.evergreen-reveal-top-center,
.evergreen-reveal-bottom-left,
.evergreen-reveal-bottom-right,
.evergreen-reveal-center {
    /* All reveals now stack vertically regardless of position class */
}

/* Legacy CTA Button Styles for backward compatibility */
.evergreen-cta-container {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    text-align: center;
}

.evergreen-cta-button {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(45deg, #ff6b6b, #ee5a52);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 18px;
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.4);
    transition: all 0.3s ease;
    animation: ctaPulse 3s infinite;
    margin: 10px;
}

.evergreen-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.6);
    color: white;
    text-decoration: none;
}

@keyframes ctaPulse {
    0% {
        box-shadow: 0 5px 15px rgba(255, 107, 107, 0.4);
    }

    50% {
        box-shadow: 0 5px 25px rgba(255, 107, 107, 0.8);
    }

    100% {
        box-shadow: 0 5px 15px rgba(255, 107, 107, 0.4);
    }
}

/* Div Reveal Content Styles */
.evergreen-html-reveal {
    /* Base styling - can be overridden by custom HTML */
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.4;
}

/* Default styling for common elements inside reveals */
.evergreen-html-reveal h1,
.evergreen-html-reveal h2,
.evergreen-html-reveal h3,
.evergreen-html-reveal h4,
.evergreen-html-reveal h5,
.evergreen-html-reveal h6 {
    margin: 0 0 10px 0;
    color: inherit;
}

.evergreen-html-reveal p {
    margin: 0 0 10px 0;
}

.evergreen-html-reveal img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
}

.evergreen-html-reveal a {
    color: inherit;
    text-decoration: underline;
}

/* Default button styling for reveals */
.evergreen-html-reveal .evergreen-cta-button,
.evergreen-html-reveal .cta-button,
.evergreen-html-reveal .btn {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(45deg, #ff6b6b, #ee5a52);
    color: white !important;
    text-decoration: none !important;
    border-radius: 50px;
    font-weight: 600;
    font-size: 18px;
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.4);
    transition: all 0.3s ease;
    animation: ctaPulse 3s infinite;
    border: none;
    cursor: pointer;
}

.evergreen-html-reveal .evergreen-cta-button:hover,
.evergreen-html-reveal .cta-button:hover,
.evergreen-html-reveal .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.6);
    color: white !important;
    text-decoration: none !important;
}

/* Responsive adjustments for reveals */
@media (max-width: 768px) {
    .evergreen-reveals-container {
        margin-top: 15px;
        gap: 12px;
    }

    .evergreen-html-reveal {
        max-width: 100%;
        font-size: 14px;
    }

    .evergreen-html-reveal .evergreen-cta-button,
    .evergreen-html-reveal .cta-button,
    .evergreen-html-reveal .btn {
        padding: 12px 25px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .evergreen-reveals-container {
        margin-top: 10px;
        gap: 10px;
    }

    .evergreen-html-reveal {
        max-width: 100%;
        font-size: 12px;
    }

    .evergreen-html-reveal .evergreen-cta-button,
    .evergreen-html-reveal .cta-button,
    .evergreen-html-reveal .btn {
        padding: 10px 20px;
        font-size: 14px;
    }
}

/* Registration Form Styles */
.evergreen-registration-form {
    max-width: 400px;
    margin: 0 auto;
    padding: 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e0e0e0;
}

.evergreen-registration-form .form-group {
    margin-bottom: 20px;
}

.evergreen-registration-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
    font-size: 14px;
}

.evergreen-registration-form input[type="text"],
.evergreen-registration-form input[type="email"] {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.evergreen-registration-form input[type="text"]:focus,
.evergreen-registration-form input[type="email"]:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.evergreen-registration-form button {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.evergreen-registration-form button:hover {
    transform: translateY(-2px);
}

.evergreen-registration-form button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* Message Styles */
.success-message {
    background: #d4edda;
    color: #155724;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #c3e6cb;
    text-align: center;
}

.success-message h3 {
    margin: 0 0 15px 0;
    color: #155724;
}

.error-message {
    background: #f8d7da;
    color: #721c24;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #f5c6cb;
    text-align: center;
    margin-top: 15px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .evergreen-countdown-container {
        padding: 20px 15px;
    }

    .evergreen-countdown-message h3 {
        font-size: 24px;
    }

    .countdown-timer {
        gap: 15px;
    }

    .countdown-block {
        padding: 15px 10px;
        min-width: 70px;
    }

    .countdown-number {
        font-size: 28px;
    }

    .countdown-label {
        font-size: 12px;
    }

    .evergreen-cta-button {
        padding: 12px 25px;
        font-size: 16px;
    }

    .evergreen-registration-form {
        padding: 20px;
        margin: 0 15px;
    }
}

@media (max-width: 480px) {
    .countdown-timer {
        gap: 10px;
    }

    .countdown-block {
        padding: 12px 8px;
        min-width: 60px;
    }

    .countdown-number {
        font-size: 24px;
    }

    .evergreen-cta-button {
        padding: 10px 20px;
        font-size: 14px;
    }

    .evergreen-cta-container {
        bottom: 60px;
    }
}

/* Loading States */
.evergreen-loading {
    text-align: center;
    padding: 40px;
    color: #666;
}

.evergreen-loading::after {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid #666;
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-left: 10px;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Admin Styles */
.evergreen-admin-card {
    background: white;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    margin-bottom: 20px;
}

.evergreen-admin-card h2 {
    margin-top: 0;
    color: #333;
}

.cta-button-row {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 1px solid #e0e0e0;
}

.cta-button-row h3 {
    margin-top: 0;
    color: #333;
}

.cta-button-row .button {
    margin-top: 10px;
}

/* Video Loading States */
.evergreen-video[data-loading="true"] {
    background: #000 url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="20" fill="none" stroke="%23fff" stroke-width="2" stroke-dasharray="31.416" stroke-dashoffset="31.416"><animate attributeName="stroke-dasharray" dur="2s" values="0 31.416;15.708 15.708;0 31.416" repeatCount="indefinite"/><animate attributeName="stroke-dashoffset" dur="2s" values="0;-15.708;-31.416" repeatCount="indefinite"/></circle></svg>') center center no-repeat;
    background-size: 50px 50px;
}

/* Thank You Page Styles */
.evergreen-thankyou-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.thankyou-header {
    text-align: center;
    margin-bottom: 40px;
}

.thankyou-header h1 {
    font-size: 36px;
    color: #2c3e50;
    margin: 0 0 15px 0;
    font-weight: 700;
}

.thankyou-subtitle {
    font-size: 18px;
    color: #7f8c8d;
    margin: 0;
}

.thankyou-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 15px;
    border: 1px solid #e9ecef;
}

.webinar-info .info-row {
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 1.5;
}

.webinar-info .info-row strong {
    color: #2c3e50;
    display: inline-block;
    min-width: 80px;
}

.countdown-section {
    text-align: center;
}

.countdown-section h3 {
    margin: 0 0 20px 0;
    color: #2c3e50;
    font-size: 20px;
}

.mini-countdown {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: nowrap;
}

.countdown-item {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 15px 10px;
    border-radius: 10px;
    min-width: 60px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.countdown-item .countdown-number {
    display: block;
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 5px;
}

.countdown-item .countdown-label {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

.webinar-url-section {
    background: white;
    padding: 30px;
    border-radius: 15px;
    border: 2px solid #e9ecef;
    margin-bottom: 40px;
    text-align: center;
}

.webinar-url-section h2 {
    color: #2c3e50;
    margin: 0 0 15px 0;
    font-size: 24px;
}

.webinar-url-section p {
    color: #7f8c8d;
    margin: 0 0 25px 0;
    font-size: 16px;
}

.url-box {
    display: flex;
    max-width: 600px;
    margin: 0 auto;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    overflow: hidden;
}

.url-box input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    font-size: 16px;
    background: #f8f9fa;
    color: #2c3e50;
}

.url-box input:focus {
    outline: none;
    background: white;
}

.url-box button {
    padding: 15px 25px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.url-box button:hover {
    background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%);
}

.thankyou-footer {
    text-align: center;
}

.see-you-message {
    font-size: 24px;
    color: #2c3e50;
    font-weight: 600;
    margin: 0 0 20px 0;
}

.email-notice {
    font-size: 16px;
    color: #7f8c8d;
    margin: 0 0 30px 0;
    line-height: 1.6;
}

.calendar-buttons h3 {
    color: #2c3e50;
    margin: 0 0 20px 0;
    font-size: 20px;
}

.calendar-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.calendar-btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.google-calendar {
    background: #4285f4;
    color: white;
}

.google-calendar:hover {
    background: #3367d6;
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(66, 133, 244, 0.4);
}

.ical-calendar {
    background: #34495e;
    color: white;
}

.ical-calendar:hover {
    background: #2c3e50;
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(52, 73, 94, 0.4);
}

/* Thank You Page Responsive Design */
@media (max-width: 768px) {
    .evergreen-thankyou-container {
        padding: 30px 15px;
    }

    .thankyou-header h1 {
        font-size: 28px;
    }

    .thankyou-details {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 20px;
    }

    .mini-countdown {
        gap: 8px;
        flex-wrap: nowrap;
    }

    .countdown-item {
        min-width: 45px;
        padding: 12px 6px;
        flex-shrink: 0;
    }

    .countdown-item .countdown-number {
        font-size: 18px;
    }

    .url-box {
        flex-direction: column;
    }

    .url-box input,
    .url-box button {
        border-radius: 0;
    }

    .url-box input {
        border-radius: 10px 10px 0 0;
    }

    .url-box button {
        border-radius: 0 0 10px 10px;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
    }

    .calendar-links {
        flex-direction: column;
        align-items: center;
    }

    .calendar-btn {
        width: 200px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .thankyou-header h1 {
        font-size: 24px;
    }

    .thankyou-subtitle {
        font-size: 16px;
    }

    .webinar-url-section h2 {
        font-size: 20px;
    }

    .see-you-message {
        font-size: 20px;
    }

    .mini-countdown {
        gap: 6px;
        flex-wrap: nowrap;
        overflow-x: auto;
        padding: 0 5px;
    }

    .countdown-item {
        min-width: 40px;
        padding: 8px 4px;
        flex-shrink: 0;
    }

    .countdown-item .countdown-number {
        font-size: 16px;
    }

    .countdown-item .countdown-label {
        font-size: 9px;
    }
}

/* Sound Indicator Styles */
.evergreen-sound-indicator {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 150;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 8px;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.evergreen-sound-indicator:hover {
    background: rgba(0, 0, 0, 0.9);
    border-color: rgba(255, 255, 255, 0.4);
    transform: scale(1.05);
}

.evergreen-sound-indicator img,
.evergreen-sound-indicator .sound-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
    flex-shrink: 0;
}

.evergreen-sound-indicator .sound-icon svg {
    width: 100%;
    height: 100%;
}

.evergreen-sound-indicator span {
    color: white;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .evergreen-sound-indicator {
        top: 15px;
        right: 15px;
        padding: 8px 12px;
    }

    .evergreen-sound-indicator img,
    .evergreen-sound-indicator .sound-icon {
        width: 20px;
        height: 20px;
    }

    .evergreen-sound-indicator span {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .evergreen-sound-indicator {
        top: 10px;
        right: 10px;
        padding: 6px 10px;
    }

    .evergreen-sound-indicator img,
    .evergreen-sound-indicator .sound-icon {
        width: 18px;
        height: 18px;
    }

    .evergreen-sound-indicator span {
        font-size: 11px;
    }
}

/* Play Button Overlay Styles */
.evergreen-play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 200;
    backdrop-filter: blur(5px);
}

.evergreen-play-button {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 100px;
    height: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.evergreen-play-button:hover {
    background: white;
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.evergreen-play-button svg {
    width: 30px;
    height: 30px;
    color: #333;
    margin-bottom: 5px;
}

.evergreen-play-button span {
    font-size: 12px;
    font-weight: 600;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .evergreen-play-button {
        width: 80px;
        height: 80px;
    }

    .evergreen-play-button svg {
        width: 24px;
        height: 24px;
    }

    .evergreen-play-button span {
        font-size: 10px;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    .evergreen-registration-form {
        background: #2d2d2d;
        border-color: #404040;
        color: white;
    }

    .evergreen-registration-form label {
        color: #e0e0e0;
    }

    .evergreen-registration-form input[type="text"],
    .evergreen-registration-form input[type="email"] {
        background: #3d3d3d;
        border-color: #555;
        color: white;
    }

    .evergreen-registration-form input[type="text"]:focus,
    .evergreen-registration-form input[type="email"]:focus {
        border-color: #667eea;
    }

    .evergreen-thankyou-container {
        color: #e0e0e0;
    }

    .thankyou-header h1,
    .webinar-info .info-row strong,
    .countdown-section h3,
    .webinar-url-section h2,
    .see-you-message,
    .calendar-buttons h3 {
        color: #e0e0e0;
    }

    .thankyou-details {
        background: #2d2d2d;
        border-color: #404040;
    }

    .webinar-url-section {
        background: #2d2d2d;
        border-color: #404040;
    }

    .url-box {
        border-color: #404040;
    }

    .url-box input {
        background: #3d3d3d;
        color: #e0e0e0;
    }

    .url-box input:focus {
        background: #4d4d4d;
    }
}