/* styles.css */
:root {
    --bg-color: #000000;
    --text-main: #FFFFFF;
    --text-muted: #A0A0A0;
    --border-color: rgba(255, 255, 255, 0.15);
    --glass-bg: rgba(20, 20, 20, 0.6);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.8);
    
    /* Font 'The Seasons' is a serif font. We use Playfair Display as fallback */
    --font-serif: "The Seasons", "Playfair Display", "Cormorant Garamond", "Times New Roman", serif;
    --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: var(--font-sans);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
    display: flex;
    justify-content: center;
    position: relative;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Elegant Glow Background */
.glow-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: -1;
    background: radial-gradient(circle at 50% -20%, rgba(255, 255, 255, 0.08) 0%, transparent 60%);
}

.page-wrapper {
    width: 100%;
    max-width: 1200px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 10;
}

header {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
    margin-top: 2rem;
}

.logo-container {
    text-align: center;
}

.logo-img {
    max-width: 200px;
    height: auto;
    filter: invert(1) brightness(2); /* Assuming logo might be black text on white, this makes it white. If transparent white png, remove this or adjust */
    display: block;
    margin: 0 auto;
}

.logo-text {
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.main-content {
    width: 100%;
    max-width: 900px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
}

/* Glass & Premium Effects */
.gloss-effect {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    box-shadow: var(--glass-shadow);
}

/* Info Box (Above Video - Date Disclaimer) */
.info-box {
    width: 100%;
    padding: 1.25rem 2rem;
    display: flex;
    align-items: center; /* Centered vertically */
    gap: 1.5rem;
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
}

.info-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-main);
    opacity: 0.8;
}

.info-text p {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    letter-spacing: 0.02em;
}

.info-text strong {
    color: var(--text-main);
    font-weight: 500;
}

.pt-br {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 400;
    letter-spacing: 0.02em;
    color: var(--text-main);
}

.en-us {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 300;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    font-style: italic;
}

/* Video Section */
.video-section {
    width: 100%;
}

.video-container {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #000;
}

.custom-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    outline: none;
}

.play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    cursor: pointer;
    transition: all 0.4s ease;
    z-index: 10;
}

.play-overlay:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translate(-50%, -50%) scale(1.05);
    border-color: rgba(255, 255, 255, 0.4);
}

.play-overlay.hidden {
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, -50%) scale(0.9);
}

/* Description & Subtitle */
.description {
    text-align: center;
    margin-top: 0.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.description h1 {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    margin-bottom: 0;
    text-shadow: 0 4px 20px rgba(255, 255, 255, 0.1);
}

/* Geo Warning (Below Video - Region/Niche) */
.geo-warning {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 2rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, transparent 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    max-width: 90%;
}

.geo-icon {
    color: rgba(255, 255, 255, 0.6);
}

.geo-text {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
}



/* Extra Actions */
.header-actions {
    margin-top: 1.5rem;
    display: flex;
    justify-content: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.75rem;
    border-radius: 50px;
    text-decoration: none;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: all 0.3s ease;
    color: var(--text-main);
}

.btn-discord {
    background: rgba(255, 255, 255, 0.05); /* very subtle dark glass */
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-discord:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
}

/* Creator Credits */
.creator-credits {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    width: 60%;
}

.created-by {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    color: var(--text-muted);
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.btn-instagram {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-main);
    text-decoration: none;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 400;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.btn-instagram:hover {
    opacity: 1;
    transform: translateY(-1px);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

/* Animations */
.fade-in {
    opacity: 0;
    animation: fadeIn 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.slide-up {
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.3s; /* Slight delay for the content after header */
}

.delay-1 { animation-delay: 0.3s; }
.delay-2 { animation-delay: 0.6s; }
.delay-3 { animation-delay: 0.9s; }

@keyframes fadeIn {
    to { opacity: 1; }
}

@keyframes slideUp {
    to { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

/* Responsive */
@media (max-width: 768px) {
    .page-wrapper {
        padding: 1.5rem 1rem;
    }
    
    .logo-text {
        font-size: 2.2rem;
    }

    .info-box {
        flex-direction: column;
        text-align: center;
        padding: 1.25rem;
        gap: 1rem;
    }
    
    .geo-warning {
        padding: 1.25rem 1rem;
        max-width: 100%;
    }

    .pt-br {
        font-size: 1.05rem;
    }

    .en-us {
        font-size: 0.8rem;
    }
    
    .description h1 {
        font-size: 1.5rem;
    }
}
