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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Launch Banner */
.launch-banner {
    background: linear-gradient(90deg, #000 0%, #1a1a1a 50%, #000 100%);
    color: #00ff88;
    padding: 8px 0;
    text-align: center;
    font-family: 'Courier New', monospace;
    border-bottom: 1px solid #333;
    position: relative;
    overflow: hidden;
}

.launch-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 136, 0.3), transparent);
    animation: scan 3s infinite;
}

@keyframes scan {
    0% { left: -100%; }
    100% { left: 100%; }
}

.launch-banner-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.launch-code {
    color: #00ff88;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

.launch-text {
    color: #888;
    font-size: 0.75rem;
}

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

/* Trailer Section */
.trailer {
    background: #000;
    padding: 60px 20px;
    text-align: center;
}

.trailer .section-title {
    color: #fff;
    font-size: 2.2rem;
    margin-bottom: 40px;
    font-weight: 700;
}

.trailer-content {
    max-width: 1140px;
    margin: 0 auto;
}

.trailer-wrapper {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    aspect-ratio: 16 / 9;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.trailer-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #4a1966 0%, #7a4cb3 50%, #5a7bd9 100%);
    color: white;
    padding: 40px clamp(24px, 6vw, 80px) 60px;
    text-align: center;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(16px, 3vw, 48px);
    align-items: start;
    max-width: 1140px;
    margin: 0 auto;
}

.hero-left {
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
    max-width: 480px;
}
.release-date {
    font-size: 0.9rem;
    font-weight: 400;
    color: #fff;
    margin-top: 0px;
}

.logo {
    max-width: 380px;
    width: 100%;
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0px;
    margin-top: 10px;
    line-height: 1.2;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-weight: 400;
}

.hero .tagline {
    font-weight: 700;
}

.hero-secondary-text {
    margin-top: 24px;
}

.hero-cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 10px;
}

.hero-right {
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
}

.character-img {
    width: min(100%, 520px);
    max-height: 120vh;
    object-fit: contain;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 28px;
    background: #df3b63;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    transition: background 0.3s;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background: #ac2e4c;
}

.btn-primary {
    background: #5865F2;
}

.btn-primary:hover {
    background: #4752C4;
}

.btn-full {
    width: 100%;
    text-align: center;
}

/* Newsletter Form */
.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 600px;
}

.newsletter-form input {
    padding: 12px 16px;
    border: 1px solid rgba(76, 81, 93, 1);
    border-radius: 4px;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
}

.newsletter-form input:focus {
    outline: none;
    border-color: #df3b63;
    box-shadow: 0 0 0 2px rgba(223, 59, 99, 0.2);
}

/* Platforms Section */
.platforms {
    background: #000;
    padding: 20px 20px;
    text-align: center;
}

.platforms .section-title {
    margin-bottom: 0px;
    color: #fff;
    font-weight: 700;
}

.platform-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px 40px;
    max-width: 1000px;
    margin: 0 auto;
    align-items: center;
}

.platform-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.platform-logo {
    width: 140px;
    height: 140px;
    object-fit: contain;
}

.platform-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
}

/* Planets Section */
.planets {
    background: white;
    padding: 80px 20px;
    text-align: center;
}

.planet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1140px;
    margin: 0 auto;
}

.planet-card {
    background: #f8f8f8;
    padding: 30px;
    border-radius: 12px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.planet-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.planet-card img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 20px;
}

.planet-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #7a4cb3;
}

.planet-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
}

/* Social Icons Section */
.social-icons {
    background: #000;
    padding: 40px 20px;
    text-align: center;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    max-width: 1140px;
    margin: 0 auto;
    align-items: center;
}

.social-link img {
    max-width: 180px;
    width: 92%;
    transition: transform 0.3s;
}

.social-link img:hover {
    transform: scale(1.05);
}

/* Testimonials Section */
.testimonials {
    background: #df3b63;
    color: white;
    padding: 60px 20px;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1140px;
    margin: 0 auto;
}

.testimonial {
    padding: 30px;
}

.testimonial-quote {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.5;
}

.testimonial-author {
    font-size: 1rem;
    opacity: 0.52;
}

/* Publishers Section */
.publishers {
    background: #00bfff;
    padding: 60px 20px;
    text-align: center;
}

.publishers-content {
    max-width: 1140px;
    margin: 0 auto;
}

.publisher-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
}

.publisher-logo {
    height: 60px;
    width: auto;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.publisher-logo:hover {
    opacity: 1;
}

/* Gameplay Section */
.gameplay {
    background: white;
    padding: 80px 20px;
    text-align: center;
}

.gameplay h2 {
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #000;
}

.gameplay-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1140px;
    margin: 0 auto;
}

.gameplay-item video {
    width: 100%;
    border-radius: 8px;
}

/* Final CTA Section */
.final-cta {
    background: #1a1a1a;
    color: white;
    padding: 80px 20px;
    text-align: center;
}

.cta-box {
    background: white;
    color: #000;
    padding: 60px 40px;
    border-radius: 8px;
    max-width: 900px;
    margin: 0 auto 60px;
}

.cta-box h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-box p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.cta-box input {
    padding: 14px 18px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1.1rem;
    width: 100%;
    max-width: 500px;
    margin-bottom: 15px;
    font-family: 'Poppins', sans-serif;
}

.cta-box .btn {
    max-width: 500px;
    width: 100%;
}

/* Footer */
.footer {
    background: #000;
    color: #888;
    text-align: center;
    padding: 20px;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .launch-banner-content {
        flex-direction: column;
        gap: 5px;
        font-size: 0.75rem;
    }
    
    .launch-text {
        font-size: 0.65rem;
    }
    
    .trailer {
        padding: 40px 20px;
    }
    
    .trailer .section-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
    
    .trailer-wrapper {
        max-width: 100%;
        border-radius: 8px;
    }

    .hero {
        padding: 40px 24px 60px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .hero-left {
        text-align: center;
        align-items: center;
        max-width: none;
        gap: 5px;
    }

    .logo {
        margin: 0 auto 30px;
        max-width: 360px;
    }

    .hero-cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-right {
        justify-content: center;
    }

    .character-img {
        max-width: 360px;
        max-height: 60vh;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .gameplay-grid {
        grid-template-columns: 1fr;
    }

    .social-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .gameplay h2,
    .cta-box h2,
    .section-title {
        font-size: 1.8rem;
    }

    .planet-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .platform-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 20px;
    }
}

@media (max-width: 480px) {
    .launch-banner-content {
        font-size: 0.7rem;
    }
    
    .launch-code {
        font-size: 0.7rem;
    }
    
    .launch-text {
        font-size: 0.6rem;
    }

    .social-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .platform-list {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .platform-logo {
        width: 120px;
        height: 120px;
    }

    .publisher-logos {
        gap: 30px;
    }

    .publisher-logo {
        height: 40px;
    }
}
