/* Reset & Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background-color: #040711;
    background-image: 
        radial-gradient(circle at 50% 15%, rgba(26, 38, 66, 0.6) 0%, rgba(4, 7, 17, 0.95) 60%),
        radial-gradient(circle at 50% 85%, rgba(10, 16, 31, 0.8) 0%, #040711 100%);
    background-attachment: fixed;
    color: #e2e8f0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    -webkit-font-smoothing: antialiased;
}

.page-wrapper {
    width: 100%;
    max-width: 1000px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 16px;
}

/* Top Banner */
.top-banner-container {
    width: 100%;
    display: flex;
    justify-content: center;
    padding-top: 20px;
    padding-bottom: 10px;
}

.top-banner {
    background-color: #0d1527;
    border: 1px solid #1e2e4a;
    border-radius: 6px;
    padding: 10px 20px;
    max-width: 760px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.alert-icon {
    font-size: 14px;
}

.banner-text {
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 0.4px;
    color: #cbd5e1;
    text-align: center;
    text-transform: uppercase;
}

/* Main Content */
.main-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-top: 25px;
}

/* Main Headline */
.main-title {
    font-family: 'Cinzel', serif;
    font-size: 2.25rem;
    font-weight: 900;
    line-height: 1.3;
    max-width: 780px;
    margin-bottom: 20px;
    letter-spacing: 0.5px;

    /* Metallic Gold Gradient */
    background: linear-gradient(180deg, #fff3c4 0%, #e6c265 35%, #b88a28 75%, #8a6210 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0px 2px 5px rgba(0, 0, 0, 0.8));
}

/* Subtitle */
.subtitle {
    font-size: 0.95rem;
    font-weight: 400;
    color: #94a3b8;
    max-width: 580px;
    line-height: 1.55;
    margin-bottom: 30px;
}

/* Video Section */
.video-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 35px;
}

.video-card {
    width: 320px;
    height: 440px;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    background-color: #080d1a;
    border: 1px solid rgba(212, 175, 55, 0.25);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.9),
        0 0 25px rgba(212, 175, 55, 0.12);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-card:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.95),
        0 0 35px rgba(212, 175, 55, 0.2);
}

.video-poster {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Ignored Badge Overlay */
.ignored-badge {
    position: absolute;
    bottom: 110px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #000000;
    color: #eab308;
    font-size: 1.4rem;
    font-weight: 800;
    padding: 10px 44px;
    border-radius: 14px;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.85);
    user-select: none;
    border: 1px solid rgba(234, 179, 8, 0.2);
}

/* Play Button Overlay */
.play-button {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: transparent;
    border: none;
    color: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.9;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.play-button:hover {
    opacity: 1;
    transform: scale(1.1);
}

.audio-notice {
    font-size: 0.85rem;
    font-style: italic;
    color: #94a3b8;
    margin: 16px auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    animation: slowBlink 2.5s ease-in-out infinite;
}

@keyframes slowBlink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.35;
    }
}

.speaker-icon {
    font-style: normal;
    font-size: 14px;
}

/* Copy Section */
.copy-section {
    max-width: 620px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 45px;
    padding: 0 10px;
}

.body-text {
    font-size: 0.95rem;
    line-height: 1.65;
    color: #cbd5e1;
    text-align: center;
}

.gold-text {
    color: #facc15;
    font-weight: 700;
}

/* Testimonials Section */
.testimonials-section {
    width: 100vw;
    background-color: #03050c;
    border-top: 1px solid #101726;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 45px 16px;
}

.section-title {
    font-family: 'Cinzel', serif;
    font-size: 1.35rem;
    font-weight: 800;
    color: #e6c265;
    letter-spacing: 1px;
    margin-bottom: 30px;
    text-align: center;
}

.testimonials-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    max-width: 580px;
}

.testimonial-card {
    background-color: #090e1a;
    border: 1px solid #1a2538;
    border-radius: 8px;
    padding: 22px 26px;
    text-align: left;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.testimonial-quote {
    font-size: 0.9rem;
    font-style: italic;
    line-height: 1.6;
    color: #cbd5e1;
    margin-bottom: 12px;
}

.testimonial-author {
    font-size: 0.85rem;
    font-weight: 700;
    color: #f59e0b;
    font-style: normal;
}

/* Footer Section */
.site-footer {
    width: 100vw;
    background-color: #020308;
    border-top: 1px solid #0c1220;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px 16px 40px;
    text-align: center;
}

.security-notice {
    font-size: 0.85rem;
    font-weight: 700;
    color: #facc15;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.disclaimer-text {
    font-size: 0.7rem;
    line-height: 1.5;
    color: #475569;
    max-width: 720px;
    margin-bottom: 22px;
}

.footer-links {
    font-size: 0.72rem;
    line-height: 1.6;
    color: #64748b;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.footer-links a {
    color: #64748b;
    text-decoration: underline;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #94a3b8;
}

/* Responsive Layout */
@media (max-width: 640px) {
    .main-title {
        font-size: 1.6rem;
        line-height: 1.3;
        padding: 0 10px;
    }

    .banner-text {
        font-size: 11px;
    }

    .top-banner {
        padding: 8px 12px;
    }

    .subtitle {
        font-size: 0.88rem;
        padding: 0 10px;
    }

    .video-card {
        width: 280px;
        height: 390px;
    }

    .ignored-badge {
        bottom: 95px;
        font-size: 1.25rem;
        padding: 8px 36px;
    }

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

    .testimonial-card {
        padding: 18px 20px;
    }
}
