/* GIF-Driven Design - Colors pulled from front page.gif prehistoric atmosphere */

/* CSS Custom Properties - Color Palette */
:root {
    /* Backgrounds — deep cave/night sky tones from the GIF */
    --bg-dark: #0d0a07;
    --bg-secondary: #1a1208;
    --bg-tertiary: #2a1f0e;

    /* Accent Colors — ember fire, warm amber, bone white from the GIF */
    --accent-primary: #e8720c;    /* Ember orange */
    --accent-secondary: #c94a0a;  /* Deep fire red */
    --accent-tertiary: #f5c842;   /* Torch yellow */
    --accent-highlight: #d4956a;  /* Warm sand/skin */

    /* Text Colors */
    --text-primary: #f5ede0;
    --text-secondary: #c9a87a;
    --text-tertiary: #7a5c3a;

    /* Shadows */
    --shadow-sm: 2px 2px 0 #000;
    --shadow-md: 4px 4px 0 #000;
    --shadow-lg: 6px 6px 0 #000;

    /* GIF glow — warm fire light */
    --glow-fire: 0 0 20px rgba(232, 114, 12, 0.6), 0 0 40px rgba(232, 114, 12, 0.2);
    --glow-ember: 0 0 15px rgba(245, 200, 66, 0.4);
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

/* Custom pixel cursor */
*, *::before, *::after {
    cursor: url('Images/01.png'), auto;
}

body.clicking,
body.clicking *,
body.clicking *::before,
body.clicking *::after {
    cursor: url('Images/02.png'), auto;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-dark);
    overflow-x: hidden;
    background-image:
        radial-gradient(ellipse at 50% 0%, rgba(232, 114, 12, 0.06) 0%, transparent 60%);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation - fully transparent, floats over GIF */
.navbar {
    background: transparent;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: none;
    box-shadow: none;
    padding: 10px 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.nav-brand {
    display: flex;
    align-items: center;
}

/* 3-column layout: spacer | logo+menu centered | instagram */
.nav-left {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
    justify-content: center;
}

/* Invisible spacer on the left to balance the instagram icon on the right */
.nav-spacer {
    width: 36px; /* same width as the instagram icon */
    flex-shrink: 0;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 58px;
    width: auto;
    display: block;
}

.nav-menu {
    display: flex;
    gap: 8px;
}

.nav-link {
    color: var(--text-primary);
    text-decoration: none;
    padding: 8px 16px;
    background: transparent;
    border: none;
    border-radius: 0;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    transition: all 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
    background: transparent;
    color: var(--accent-tertiary);
    border: none;
    box-shadow: none;
    transform: translateY(-1px);
    text-shadow: 0 0 10px rgba(245, 200, 66, 0.6);
}

.nav-social {
    display: flex;
    gap: 8px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(13, 10, 7, 0.3);
    color: var(--accent-primary);
    border: 1px solid rgba(232, 114, 12, 0.2);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.2s ease;
    backdrop-filter: blur(6px);
}

.social-link:hover {
    background: var(--accent-primary);
    color: #0d0a07;
    box-shadow: var(--glow-fire);
    transform: translateY(-2px);
}

.mobile-toggle {
    display: none;
    background: rgba(42, 31, 14, 0.8);
    border: 1px solid var(--accent-primary);
    color: var(--accent-primary);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 10px;
    border-radius: 3px;
}

/* Hero Section — GIF IS the hero, everything blends into it */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    background: url('Images/web-homepage.gif') center center / cover no-repeat;
    margin-top: 0;
    overflow: hidden;
}

/* Subtle bottom fade to blend into next section */
.hero::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 120px;
    background: linear-gradient(to bottom, transparent, var(--bg-dark));
    z-index: 1;
}

/* Store buttons — aligned under "BEATING THE PETTY PERSON" text */
.hero-store-btns {
    position: absolute;
    bottom: 5%;
    left: 5%;
    display: flex;
    gap: 16px;
    z-index: 3;
    align-items: center;
    justify-content: flex-start;
}

.store-img {
    height: 68px;
    width: auto;
    border-radius: 8px;
    transition: all 0.2s ease;
    filter: drop-shadow(0 4px 10px rgba(0,0,0,0.5));
}

.store-img:hover {
    transform: translateY(-3px);
    filter: drop-shadow(0 8px 16px rgba(0,0,0,0.6));
}
/* Inner pages — padding for fixed navbar */
.page-content {
    padding-top: 80px;
    min-height: 100vh;
    background: var(--bg-dark);
}

section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--accent-tertiary);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    filter: drop-shadow(0 0 8px rgba(245, 200, 66, 0.4));
    background: rgba(13, 10, 7, 0.6);
    padding: 12px 28px;
    border: 1px solid rgba(232, 114, 12, 0.5);
    border-radius: 3px;
    display: inline-block;
}

.section-subtitle {
    font-size: 0.95rem;
    color: var(--text-tertiary);
    max-width: 600px;
    margin: 10px auto 0;
}

/* Features Section — warm cave-wall texture bleeding from GIF */
.features {
    background:
        linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-secondary) 50%, var(--bg-tertiary) 100%);
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-primary), transparent);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.feature-card {
    background: rgba(26, 18, 8, 0.8);
    padding: 28px 22px;
    text-align: center;
    border: 1px solid rgba(232, 114, 12, 0.3);
    border-radius: 4px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-primary), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover {
    background: rgba(42, 31, 14, 0.9);
    border-color: var(--accent-primary);
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(232, 114, 12, 0.2);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--accent-primary);
    margin-bottom: 15px;
    filter: drop-shadow(0 0 8px rgba(232, 114, 12, 0.5));
}

.feature-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.feature-desc {
    color: var(--text-tertiary);
    line-height: 1.6;
    font-size: 0.9rem;
}

/* Character intro images */
.characters-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.character-intro-item {
    border: 1px solid rgba(232, 114, 12, 0.35);
    border-radius: 4px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.character-intro-item:hover {
    border-color: var(--accent-primary);
    box-shadow: 0 8px 30px rgba(232, 114, 12, 0.2);
    transform: translateY(-4px);
}

.character-intro-item img {
    width: 100%;
    height: auto;
    display: block;
}
.characters {
    background: var(--bg-dark);
    border-top: 1px solid rgba(232, 114, 12, 0.3);
    border-bottom: 1px solid rgba(232, 114, 12, 0.3);
    position: relative;
}

.characters::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 100%, rgba(232, 114, 12, 0.07) 0%, transparent 60%);
    pointer-events: none;
}

.characters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.character-card {
    background: linear-gradient(160deg, var(--bg-secondary), var(--bg-tertiary));
    overflow: hidden;
    border: 1px solid rgba(232, 114, 12, 0.4);
    border-radius: 4px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
}

.character-card:hover {
    transform: translateY(-6px);
    border-color: var(--accent-primary);
    box-shadow: 0 12px 30px rgba(232, 114, 12, 0.25), 0 0 0 1px rgba(245, 200, 66, 0.1);
}

.character-image {
    height: 250px;
    overflow: hidden;
    position: relative;
    border-bottom: 1px solid rgba(232, 114, 12, 0.4);
}

.character-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    filter: contrast(1.1) brightness(0.85) saturate(1.1);
}

.character-card:hover .character-image img {
    transform: scale(1.08);
    filter: contrast(1.2) brightness(1) saturate(1.2);
}

.character-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(13, 10, 7, 0.9), transparent);
    padding: 15px;
    display: flex;
    justify-content: center;
}

.character-role {
    background: var(--accent-primary);
    color: var(--bg-dark);
    padding: 4px 14px;
    border-radius: 2px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.character-info {
    padding: 20px;
}

.character-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.character-desc {
    color: var(--text-tertiary);
    margin-bottom: 15px;
    line-height: 1.5;
    font-size: 0.88rem;
}

.character-stats {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.stat-item .stat-label {
    font-size: 0.75rem;
    color: var(--text-tertiary);
    min-width: 65px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-bar {
    flex: 1;
    height: 6px;
    background: rgba(42, 31, 14, 0.8);
    border-radius: 2px;
    overflow: hidden;
}

.stat-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-secondary), var(--accent-primary), var(--accent-tertiary));
    transition: width 0.5s ease;
    box-shadow: 0 0 6px rgba(232, 114, 12, 0.4);
}

/* Gallery Section — earthy, warm, blending with GIF palette */
.gallery {
    background: linear-gradient(180deg, var(--bg-tertiary) 0%, var(--bg-secondary) 100%);
    position: relative;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 12px;
    grid-template-areas:
        "large large large"
        "small1 small2 small3";
}

.gallery-item {
    position: relative;
    overflow: hidden;
    height: 240px;
    border: 1px solid rgba(232, 114, 12, 0.35);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.gallery-item.large {
    grid-area: large;
    height: 420px;
}

.gallery-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(232, 114, 12, 0.25);
    border-color: var(--accent-primary);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    filter: contrast(1.1) brightness(0.85) saturate(1.1);
}

.gallery-item:hover img {
    transform: scale(1.06);
    filter: contrast(1.2) brightness(1) saturate(1.2);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(13, 10, 7, 0.85));
    padding: 14px;
    color: var(--text-secondary);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    z-index: 2;
    letter-spacing: 0.5px;
}

/* Download Section — fire/ember CTA */
.download {
    background:
        linear-gradient(135deg, var(--accent-secondary) 0%, var(--accent-primary) 50%, #b85a08 100%);
    text-align: center;
    color: var(--bg-dark);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.download::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 50%, rgba(245, 200, 66, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.download-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.4rem;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--bg-dark);
}

.download-subtitle {
    font-size: 1rem;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    background: rgba(13, 10, 7, 0.25);
    padding: 14px 20px;
    border: 1px solid rgba(13, 10, 7, 0.3);
    border-radius: 3px;
    color: rgba(13, 10, 7, 0.85);
}

.download-platforms {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.platform-btn {
    background: rgba(13, 10, 7, 0.25);
    border: 1px solid rgba(13, 10, 7, 0.5);
    color: var(--bg-dark);
    padding: 14px 28px;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.2s ease;
    border-radius: 3px;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.platform-btn:hover {
    background: var(--bg-dark);
    color: var(--accent-primary);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(13, 10, 7, 0.4);
}

.download-info {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.download-info p {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    background: rgba(13, 10, 7, 0.2);
    padding: 8px 16px;
    border: 1px solid rgba(13, 10, 7, 0.25);
    border-radius: 3px;
    color: rgba(13, 10, 7, 0.85);
}

.download-info i {
    color: var(--accent-tertiary);
}

/* Newsletter Section */
.newsletter {
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-dark) 100%);
    padding: 80px 0;
    border-top: 1px solid rgba(232, 114, 12, 0.3);
    position: relative;
}

.newsletter::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-primary), transparent);
}

.newsletter-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--accent-tertiary);
    margin-bottom: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    filter: drop-shadow(0 0 8px rgba(245, 200, 66, 0.3));
}

.newsletter-subtitle {
    font-size: 0.95rem;
    color: var(--text-tertiary);
    margin-bottom: 30px;
}

.newsletter-form {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}

.newsletter-input {
    flex: 1;
    padding: 14px 16px;
    background: rgba(13, 10, 7, 0.8);
    border: 1px solid rgba(232, 114, 12, 0.4);
    border-radius: 3px;
    color: var(--text-primary);
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.newsletter-input:focus {
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 3px rgba(232, 114, 12, 0.15);
    outline: none;
}

.newsletter-btn {
    background: linear-gradient(135deg, var(--accent-secondary), var(--accent-primary));
    color: var(--text-primary);
    border: 1px solid var(--accent-tertiary);
    padding: 14px 28px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    border-radius: 3px;
    transition: all 0.3s ease;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.newsletter-btn:hover {
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-tertiary));
    transform: translateY(-2px);
    box-shadow: var(--glow-fire);
}

.newsletter-privacy {
    font-size: 0.82rem;
    color: var(--text-tertiary);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.newsletter-privacy a {
    color: var(--accent-primary);
    text-decoration: none;
}

.newsletter-privacy a:hover {
    color: var(--accent-tertiary);
}

/* Footer — deep cave dark, warm ember accents */
.footer {
    background: var(--bg-dark);
    color: var(--text-tertiary);
    padding: 60px 0 30px;
    border-top: 1px solid rgba(232, 114, 12, 0.3);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-primary), transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-brand .logo {
    margin-bottom: 20px;
}

.footer-desc {
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 0.88rem;
    color: var(--text-tertiary);
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(42, 31, 14, 0.6);
    color: var(--accent-primary);
    text-decoration: none;
    border: 1px solid rgba(232, 114, 12, 0.3);
    border-radius: 50%;
    transition: all 0.2s ease;
}

.social-links a:hover {
    background: var(--accent-primary);
    color: var(--bg-dark);
    box-shadow: var(--glow-fire);
    transform: translateY(-2px);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.link-group h4 {
    color: var(--accent-primary);
    margin-bottom: 16px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.link-group a {
    display: block;
    color: var(--text-tertiary);
    text-decoration: none;
    margin-bottom: 8px;
    transition: color 0.2s ease;
    font-size: 0.88rem;
}

.link-group a:hover {
    color: var(--accent-primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid rgba(42, 31, 14, 0.8);
    color: var(--text-tertiary);
    font-size: 0.8rem;
    opacity: 0.7;
}

@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-areas:
            "large"
            "small1"
            "small2";
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-menu, .nav-social {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }

    .hero-store-btns {
        gap: 10px;
    }

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

    .footer-links {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .navbar .container {
        position: relative;
    }

    .nav-menu {
        flex-direction: column;
        gap: 15px;
    }

    .nav-link {
        width: 100%;
        text-align: center;
        padding: 12px 0;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.2rem;
        padding: 10px 18px;
    }

    .download-title {
        font-size: 1.7rem;
    }

    .download-platforms {
        flex-direction: column;
        align-items: center;
    }

    .platform-btn {
        width: 100%;
        max-width: 260px;
        justify-content: center;
    }

    .gallery-item, .gallery-item.large {
        height: 180px;
    }
}
/* Trailer Section — Video showcase */
.trailer {
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-tertiary) 100%);
    position: relative;
    padding: 80px 0;
    border-top: 1px solid rgba(232, 114, 12, 0.3);
    border-bottom: 1px solid rgba(232, 114, 12, 0.3);
}

.trailer::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 50%, rgba(232, 114, 12, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.trailer-video-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto 30px;
    border: 2px solid rgba(232, 114, 12, 0.4);
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
    background: var(--bg-dark);
}

.trailer-video {
    width: 100%;
    height: auto;
    display: block;
    background: #000;
}

.trailer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent, rgba(13, 10, 7, 0.3));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.trailer-video-container:hover .trailer-overlay {
    opacity: 1;
}

.trailer-play-btn {
    width: 80px;
    height: 80px;
    background: rgba(232, 114, 12, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    font-size: 2rem;
    box-shadow: 0 0 30px rgba(232, 114, 12, 0.6);
    transition: all 0.3s ease;
    transform: scale(0.9);
}

.trailer-video-container:hover .trailer-play-btn {
    transform: scale(1);
}

.trailer-description {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    padding: 20px;
    background: rgba(26, 18, 8, 0.6);
    border: 1px solid rgba(232, 114, 12, 0.3);
    border-radius: 4px;
}

.trailer-description p {
    margin: 0;
}

@media (max-width: 768px) {
    .trailer-video-container {
        margin: 0 20px 20px;
    }
    
    .trailer-play-btn {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .trailer {
        padding: 60px 0;
    }
    
    .trailer-video-container {
        margin: 0 10px 15px;
    }
}