/* CSS TOOLKIT */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --sensual-pink: #ff1493;
    --sensual-purple: #8b00ff;
    --sensual-red: #c71585;
    --sensual-dark: #1a0a1a;
    --sensual-bg: #2d1b2e;
    --sensual-accent: #ff69b4;
    --text-white: #ffffff;
    --text-gray: #d0a0c0;
}

body {
    font-family: 'Rajdhani', sans-serif;
    background: linear-gradient(180deg, #1a0a1a 0%, #2d1b2e 50%, #1a0a1a 100%);
    color: var(--text-white);
    overflow-x: hidden;
    min-height: 100vh;
}


/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(26, 10, 26, 0.85);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 20, 147, 0.3);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: 2px;
}

.logo-e, .logo-o {
    color: var(--sensual-pink);
    text-shadow: 0 0 10px var(--sensual-pink), 0 0 20px var(--sensual-pink);
}

.logo-x {
    color: var(--sensual-purple);
    text-shadow: 0 0 10px var(--sensual-purple), 0 0 20px var(--sensual-purple);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links {
    display: flex;
    gap: 1rem;
}

.download-btn {
    padding: 1rem 2.5rem;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 900;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.3s ease;
    background: var(--sensual-pink);
    color: var(--text-white);
    border: 2px solid var(--sensual-pink);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}

.download-btn:hover {
    background: var(--sensual-red);
    border-color: var(--sensual-red);
    transform: translateY(-2px);
}

.nav-link {
    padding: 0.75rem 1.5rem;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.nav-link:not(.pre-order) {
    background: rgba(255, 20, 147, 0.15);
    color: var(--sensual-pink);
    border-color: rgba(255, 20, 147, 0.3);
}

.nav-link:not(.pre-order):hover {
    background: rgba(255, 20, 147, 0.25);
    box-shadow: 0 0 15px rgba(255, 20, 147, 0.4);
    transform: translateY(-2px);
}

.nav-link.pre-order {
    background: rgba(139, 0, 255, 0.2);
    color: var(--sensual-purple);
    border-color: rgba(139, 0, 255, 0.4);
}

.nav-link.pre-order:hover {
    background: rgba(139, 0, 255, 0.3);
    box-shadow: 0 0 20px rgba(139, 0, 255, 0.5);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 2rem 4rem;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/preview_3.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(0.5px) brightness(0.7);
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(26, 10, 26, 0.15) 0%,
        rgba(45, 27, 46, 0.2) 50%,
        rgba(26, 10, 26, 0.15) 100%
    );
    z-index: 1;
}

.grid-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 20, 147, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 20, 147, 0.1) 1px, transparent 1px),
        linear-gradient(rgba(139, 0, 255, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(139, 0, 255, 0.1) 1px, transparent 1px);
    background-size: 100px 100px, 100px 100px, 50px 50px, 50px 50px;
    background-position: 0 0, 0 0, 0 0, 0 0;
    opacity: 0.3;
    animation: gridMove 20s linear infinite;
    pointer-events: none;
    z-index: 2;
}

@keyframes gridMove {
    from { transform: translate(0, 0); }
    to { transform: translate(100px, 100px); }
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
}

.hero-logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 8rem;
    font-weight: 900;
    letter-spacing: 10px;
    margin-bottom: 2rem;
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { 
        transform: scale(1);
        filter: brightness(1);
    }
    50% { 
        transform: scale(1.05);
        filter: brightness(1.2);
    }
}

.hero-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 2rem;
    color: var(--text-white);
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.hero-subtitle {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2.5rem;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 2px solid;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: rgba(255, 20, 147, 0.2);
    color: var(--sensual-pink);
    border-color: var(--sensual-pink);
    box-shadow: 0 0 20px rgba(255, 20, 147, 0.3);
}

.btn-primary:hover {
    background: rgba(255, 20, 147, 0.3);
    box-shadow: 0 0 30px rgba(255, 20, 147, 0.6);
    transform: translateY(-3px);
}

.btn-secondary {
    background: rgba(139, 0, 255, 0.2);
    color: var(--sensual-purple);
    border-color: var(--sensual-purple);
    box-shadow: 0 0 20px rgba(139, 0, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(139, 0, 255, 0.3);
    box-shadow: 0 0 30px rgba(139, 0, 255, 0.6);
    transform: translateY(-3px);
}

.btn-outline {
    background: transparent;
    color: var(--sensual-pink);
    border-color: var(--sensual-pink);
}

.btn-outline:hover {
    background: rgba(255, 20, 147, 0.1);
    box-shadow: 0 0 20px rgba(255, 20, 147, 0.4);
}

.frame-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 3px solid var(--sensual-pink);
    border-radius: 20px;
    box-shadow: 
        0 0 20px rgba(255, 20, 147, 0.5),
        inset 0 0 20px rgba(255, 20, 147, 0.2);
    clip-path: polygon(0 10%, 10% 0, 90% 0, 100% 10%, 100% 90%, 90% 100%, 10% 100%, 0 90%);
    animation: glowPulse 2s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; }
}

.character-placeholder {
    width: 100%;
    height: 70%;
    background: linear-gradient(180deg, rgba(255, 0, 255, 0.1) 0%, rgba(0, 255, 255, 0.1) 100%);
    border-radius: 15px;
    margin-top: 10%;
}

.cityscape {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
    border-radius: 0 0 15px 15px;
}

.grid-floor {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background-image: 
        linear-gradient(rgba(255, 20, 147, 0.2) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 20, 147, 0.2) 1px, transparent 1px);
    background-size: 50px 50px;
    transform: perspective(500px) rotateX(60deg);
    transform-origin: bottom;
    opacity: 0.5;
    z-index: 2;
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Trailer Section */
.trailer-section {
    position: relative;
    padding: 8rem 0;
    background: rgba(26, 10, 26, 0.5);
    z-index: 10;
}

.trailer-subtitle {
    text-align: center;
    font-size: 1.3rem;
    color: var(--text-gray);
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.trailer-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto 3rem;
    border-radius: 20px;
    overflow: hidden;
    border: 3px solid rgba(255, 20, 147, 0.3);
    box-shadow: 0 0 50px rgba(255, 20, 147, 0.3);
    transition: all 0.3s ease;
}

.trailer-container:hover {
    border-color: var(--sensual-pink);
    box-shadow: 0 0 80px rgba(255, 20, 147, 0.5);
    transform: scale(1.01);
}

.trailer-video {
    width: 100%;
    height: auto;
    display: block;
    background: #000;
}

.trailer-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Gallery Section */
.gallery {
    position: relative;
    padding: 6rem 0;
    background: rgba(10, 10, 26, 0.3);
    z-index: 10;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid rgba(0, 255, 255, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
    aspect-ratio: 16/9;
}

.gallery-item:hover {
    border-color: var(--sensual-pink);
    box-shadow: 0 0 30px rgba(255, 20, 147, 0.5);
    transform: translateY(-5px) scale(1.02);
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(0, 0, 0, 0.3) 50%,
        rgba(0, 0, 0, 0.7) 100%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    border: 2px solid var(--sensual-pink);
    border-radius: 10px;
    box-shadow: 
        0 0 20px rgba(255, 20, 147, 0.5),
        inset 0 0 20px rgba(255, 20, 147, 0.2);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-glow {
    opacity: 1;
    animation: galleryPulse 2s ease-in-out infinite;
}

@keyframes galleryPulse {
    0%, 100% { 
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.8;
    }
    50% { 
        transform: translate(-50%, -50%) scale(1.05);
        opacity: 1;
    }
}

/* Features Section */
.features {
    position: relative;
    padding: 6rem 0;
    z-index: 10;
    background: rgba(26, 10, 26, 0.3);
}

.section-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--text-white);
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.feature-card {
    background: rgba(45, 27, 46, 0.5);
    border: 1px solid rgba(255, 20, 147, 0.2);
    border-radius: 15px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.feature-card:hover {
    border-color: var(--sensual-pink);
    box-shadow: 0 0 30px rgba(255, 20, 147, 0.4);
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.feature-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--sensual-pink);
    text-transform: uppercase;
}

.feature-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-gray);
}

/* Highlight Features Section */
.highlight-features {
    position: relative;
    padding: 8rem 0;
    z-index: 10;
}

.highlight-feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 8rem;
}

.highlight-feature:last-child {
    margin-bottom: 0;
}

.highlight-feature.reverse {
    direction: rtl;
}

.highlight-feature.reverse > * {
    direction: ltr;
}

@media (max-width: 968px) {
    .highlight-feature {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .highlight-feature.reverse {
        direction: ltr;
    }
    
    .highlight-title {
        font-size: 2.5rem;
    }
    
    .highlight-description {
        font-size: 1.1rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-description {
        font-size: 1.1rem;
    }
}

.highlight-content {
    padding: 2rem;
}

.highlight-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 2rem;
    color: var(--sensual-pink);
    text-shadow: 0 0 20px rgba(255, 20, 147, 0.5);
    line-height: 1.2;
}

.highlight-description {
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--text-white);
    margin-bottom: 1.5rem;
}

.highlight-subdescription {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-gray);
}

.highlight-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 3px solid rgba(255, 20, 147, 0.3);
    box-shadow: 0 0 40px rgba(255, 20, 147, 0.3);
    transition: all 0.3s ease;
}

.highlight-image:hover {
    border-color: var(--sensual-pink);
    box-shadow: 0 0 60px rgba(255, 20, 147, 0.5);
    transform: scale(1.02);
}

.highlight-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* CTA Section */
.cta-section {
    position: relative;
    padding: 8rem 0;
    background: linear-gradient(135deg, rgba(255, 20, 147, 0.1) 0%, rgba(139, 0, 255, 0.1) 100%);
    z-index: 10;
    text-align: center;
}

.cta-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 2rem;
    color: var(--text-white);
    text-shadow: 0 0 30px rgba(255, 20, 147, 0.5);
    line-height: 1.3;
}

.cta-description {
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--text-gray);
    max-width: 900px;
    margin: 0 auto 3rem;
}

.cta-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-large {
    padding: 1.5rem 4rem;
    font-size: 1.2rem;
    font-weight: 700;
}

/* FAQ Section */
.faq {
    position: relative;
    padding: 6rem 0;
    background: rgba(26, 10, 26, 0.5);
    z-index: 10;
}

.faq-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.faq-category-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--sensual-pink);
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.faq-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: rgba(45, 27, 46, 0.5);
    border: 1px solid rgba(255, 20, 147, 0.2);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--sensual-pink);
    box-shadow: 0 0 20px rgba(255, 20, 147, 0.3);
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: transparent;
    border: none;
    color: var(--text-white);
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--sensual-pink);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-gray);
    line-height: 1.6;
}

/* News Section */
.news {
    position: relative;
    padding: 6rem 0;
    z-index: 10;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.news-card {
    background: rgba(45, 27, 46, 0.5);
    border: 1px solid rgba(255, 20, 147, 0.2);
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.news-card:hover {
    border-color: var(--sensual-pink);
    box-shadow: 0 0 30px rgba(255, 20, 147, 0.4);
    transform: translateY(-5px);
}

.news-date {
    color: var(--sensual-pink);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.news-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-white);
}

.news-excerpt {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.news-link {
    color: var(--sensual-pink);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.news-link:hover {
    color: var(--sensual-pink);
    text-shadow: 0 0 10px rgba(255, 20, 147, 0.5);
}

/* Footer */
.footer {
    position: relative;
    padding: 4rem 0 2rem;
    background: rgba(26, 10, 26, 0.8);
    border-top: 1px solid rgba(255, 20, 147, 0.2);
    z-index: 10;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    letter-spacing: 3px;
}

.footer-column h4 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--sensual-pink);
    text-transform: uppercase;
}

.footer-column a {
    display: block;
    color: var(--text-gray);
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.footer-column a:hover {
    color: var(--sensual-pink);
    padding-left: 5px;
}

.footer-newsletter h4 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--sensual-pink);
    text-transform: uppercase;
}

.footer-newsletter p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.newsletter-input {
    flex: 1;
    min-width: 200px;
    padding: 0.75rem 1rem;
    background: rgba(45, 27, 46, 0.5);
    border: 1px solid rgba(255, 20, 147, 0.3);
    border-radius: 8px;
    color: var(--text-white);
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--sensual-pink);
    box-shadow: 0 0 15px rgba(255, 20, 147, 0.3);
}

.newsletter-input::placeholder {
    color: var(--text-gray);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 20, 147, 0.1);
    color: var(--text-gray);
}

.security-badges {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.security-badge {
    padding: 1rem;
    background: rgba(45, 27, 46, 0.5);
    border: 1px solid rgba(255, 20, 147, 0.2);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.security-badge:hover {
    border-color: var(--sensual-pink);
    box-shadow: 0 0 15px rgba(255, 20, 147, 0.3);
}

.security-badge strong {
    display: block;
    color: var(--sensual-pink);
    font-size: 1rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.security-badge span {
    display: block;
    color: var(--text-gray);
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .character-frames {
        display: none;
    }
    
    .hero-logo {
        font-size: 6rem;
    }
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .nav-right {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }
    
    .download-btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
    
    .hero-logo {
        font-size: 4rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .features-grid,
    .news-grid,
    .faq-categories {
        grid-template-columns: 1fr;
    }
    
    .highlight-feature {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .highlight-feature.reverse {
        direction: ltr;
    }
    
    .highlight-title {
        font-size: 2.5rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-description {
        font-size: 1.1rem;
    }
    
    .trailer-section {
        padding: 4rem 0;
    }
    
    .trailer-subtitle {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
    
    .trailer-container {
        margin: 0 1rem 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-logo {
        font-size: 3rem;
        letter-spacing: 5px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .nav-link {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }
}

