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

:root {
    --bg-dark: #0a0a1a;
    --bg-darker: #050510;
    --gold: #D4AF37;
    --gold-dark: #B8860B;
    --gold-light: #F4D03F;
    --text-white: #ffffff;
    --text-gray: #cccccc;
    --accent-purple: #8B4CBF;
    --accent-green: #4CAF50;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--bg-dark);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Header */
header {
    background: var(--bg-darker);
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.logo {
    font-size: 28px;
    font-weight: bold;
    color: var(--gold);
    text-decoration: none;
    letter-spacing: 2px;
    text-transform: uppercase;
}

nav {
    display: flex;
    gap: 20px;
    align-items: center;
}

nav a {
    color: var(--text-white);
    text-decoration: none;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
    position: relative;
}

nav a:not(:last-child)::after {
    content: '/';
    margin-left: 20px;
    color: var(--text-gray);
}

nav a:hover {
    color: var(--gold);
}

.store-buttons-header {
    display: flex;
    gap: 15px;
    align-items: center;
}

.store-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s;
}

.store-btn:hover {
    transform: scale(1.05);
}

.store-btn img {
    height: 40px;
    width: auto;
}

.store-badge {
    font-size: 10px;
    color: var(--text-gray);
    margin-top: 5px;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
    padding: 60px 20px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 1200px;
}

.game-title {
    font-size: 72px;
    font-weight: bold;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 30px;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.game-subtitle {
    font-size: 24px;
    color: var(--text-gray);
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-store-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.hero-store-btn {
    height: 60px;
    transition: transform 0.3s;
}

.hero-store-btn:hover {
    transform: scale(1.1);
}

/* Section Styles */
.section {
    padding: 80px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    font-size: 48px;
    color: var(--gold);
    text-align: center;
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: 3px;
}

/* Video Section */
.video-section {
    background: var(--bg-darker);
    position: relative;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.video-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(2px 2px at 20% 30%, rgba(255,255,255,0.1), transparent),
        radial-gradient(2px 2px at 60% 70%, rgba(255,255,255,0.1), transparent),
        radial-gradient(1px 1px at 50% 50%, rgba(255,255,255,0.1), transparent);
    background-size: 200px 200px, 300px 300px, 150px 150px;
    opacity: 0.5;
}

.video-container {
    position: relative;
    z-index: 1;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    border: 3px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.5);
    cursor: pointer;
    transition: all 0.3s;
}

.video-container:hover {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
}

.play-button {
    width: 0;
    height: 0;
    border-left: 40px solid var(--gold);
    border-top: 25px solid transparent;
    border-bottom: 25px solid transparent;
    margin-left: 10px;
}

/* Gallery Section */
.gallery-section {
    background: var(--bg-dark);
    position: relative;
}

.gallery-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(2px 2px at 20% 30%, rgba(255,255,255,0.1), transparent),
        radial-gradient(2px 2px at 60% 70%, rgba(255,255,255,0.1), transparent);
    background-size: 200px 200px, 300px 300px;
    opacity: 0.5;
}

.gallery-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: center;
}

.gallery-character {
    width: 100%;
    border-radius: 10px;
}

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

.gallery-item {
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
}

/* Features Section */
.features-section {
    background: var(--bg-darker);
    padding: 80px 40px;
}

.features-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.features-frame {
    border: 3px solid var(--accent-purple);
    border-radius: 20px;
    padding: 40px;
    background: rgba(139, 76, 191, 0.1);
    box-shadow: 0 0 40px rgba(139, 76, 191, 0.3);
}

.features-carousel {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 20px 0;
    scrollbar-width: thin;
    scrollbar-color: var(--gold) var(--bg-dark);
}

.features-carousel::-webkit-scrollbar {
    height: 8px;
}

.features-carousel::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

.features-carousel::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 4px;
}

.feature-card {
    min-width: 400px;
    background: var(--bg-dark);
    border-radius: 15px;
    padding: 30px;
    border: 2px solid var(--accent-purple);
    scroll-snap-align: start;
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(139, 76, 191, 0.5);
}

.feature-card h3 {
    font-size: 28px;
    color: var(--gold);
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--text-gray);
    line-height: 1.8;
}

.feature-card img {
    width: 100%;
    border-radius: 10px;
    margin-top: 20px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--text-gray);
    cursor: pointer;
    transition: background 0.3s;
}

.dot.active {
    background: var(--gold);
}

/* Follow Section */
.follow-section {
    background: var(--bg-dark);
    text-align: center;
    padding: 80px 40px;
}

.follow-section h2 {
    font-size: 48px;
    color: var(--text-white);
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.follow-store-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.follow-store-btn {
    height: 60px;
    transition: transform 0.3s;
}

.follow-store-btn:hover {
    transform: scale(1.1);
}

/* Footer */
footer {
    background: var(--bg-darker);
    padding: 40px;
    text-align: center;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--gold);
}

.copyright {
    color: var(--text-gray);
    font-size: 12px;
    margin-top: 20px;
}

/* Cookies Banner */
.cookies-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-darker);
    border-top: 2px solid var(--gold);
    padding: 20px 40px;
    z-index: 10000;
    display: none;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.5);
}

.cookies-banner.show {
    display: block;
}

.cookies-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cookies-text {
    flex: 1;
    color: var(--text-white);
    font-size: 14px;
}

.cookies-text a {
    color: var(--gold);
    text-decoration: none;
}

.cookies-buttons {
    display: flex;
    gap: 15px;
}

.btn-accept {
    background: var(--gold);
    color: var(--bg-dark);
    border: none;
    padding: 12px 30px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 5px;
    transition: background 0.3s;
    text-transform: uppercase;
}

.btn-accept:hover {
    background: var(--gold-light);
}

.btn-decline {
    background: transparent;
    color: var(--text-white);
    border: 2px solid var(--text-gray);
    padding: 12px 30px;
    font-size: 14px;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s;
    text-transform: uppercase;
}

.btn-decline:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* Responsive */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }

    nav {
        flex-wrap: wrap;
        justify-content: center;
    }

    .game-title {
        font-size: 42px;
    }

    .section-title {
        font-size: 32px;
    }

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

    .feature-card {
        min-width: 300px;
    }

    .cookies-content {
        flex-direction: column;
        text-align: center;
    }
}
