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

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #0a0a2e 0%, #16213e 50%, #1a1a3a 100%);
    color: #ffffff;
    overflow-x: hidden;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 46, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.nav-logo h2 {
    background: linear-gradient(45deg, #ffd700, #ff6b6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 1.5rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s;
    padding: 0.5rem 1rem;
}

.nav-menu a:hover {
    color: #ffd700;
}

.merch-btn {
    background: linear-gradient(45deg, #ff6b6b, #ffd700);
    border-radius: 25px;
    padding: 0.5rem 1.5rem !important;
    font-weight: bold;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: radial-gradient(ellipse at center, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><circle cx="15" cy="25" r="0.5" fill="white" opacity="0.9"/><circle cx="45" cy="15" r="0.3" fill="white" opacity="0.7"/><circle cx="85" cy="35" r="0.4" fill="white" opacity="0.8"/><circle cx="125" cy="20" r="0.2" fill="white" opacity="0.6"/><circle cx="165" cy="40" r="0.6" fill="white" opacity="0.9"/><circle cx="25" cy="65" r="0.3" fill="white" opacity="0.5"/><circle cx="75" cy="75" r="0.5" fill="white" opacity="0.8"/><circle cx="135" cy="60" r="0.4" fill="white" opacity="0.7"/><circle cx="185" cy="80" r="0.3" fill="white" opacity="0.6"/><circle cx="35" cy="105" r="0.4" fill="white" opacity="0.8"/><circle cx="95" cy="115" r="0.2" fill="white" opacity="0.5"/><circle cx="155" cy="100" r="0.5" fill="white" opacity="0.9"/><circle cx="10" cy="145" r="0.3" fill="white" opacity="0.6"/><circle cx="65" cy="155" r="0.6" fill="white" opacity="0.8"/><circle cx="115" cy="140" r="0.4" fill="white" opacity="0.7"/><circle cx="175" cy="160" r="0.3" fill="white" opacity="0.5"/><circle cx="50" cy="185" r="0.5" fill="white" opacity="0.9"/><circle cx="120" cy="190" r="0.2" fill="white" opacity="0.6"/><circle cx="190" cy="175" r="0.4" fill="white" opacity="0.8"/><circle cx="30" cy="5" r="0.2" fill="white" opacity="0.4"/><circle cx="60" cy="30" r="0.15" fill="white" opacity="0.3"/><circle cx="100" cy="8" r="0.25" fill="white" opacity="0.5"/><circle cx="140" cy="45" r="0.2" fill="white" opacity="0.4"/><circle cx="180" cy="25" r="0.15" fill="white" opacity="0.3"/><circle cx="5" cy="85" r="0.2" fill="white" opacity="0.4"/><circle cx="55" cy="95" r="0.15" fill="white" opacity="0.3"/><circle cx="105" cy="85" r="0.25" fill="white" opacity="0.5"/><circle cx="145" cy="125" r="0.2" fill="white" opacity="0.4"/><circle cx="195" cy="110" r="0.15" fill="white" opacity="0.3"/><circle cx="20" cy="170" r="0.2" fill="white" opacity="0.4"/><circle cx="80" cy="180" r="0.15" fill="white" opacity="0.3"/><circle cx="160" cy="185" r="0.25" fill="white" opacity="0.5"/></svg>') repeat;
    animation: twinkle 3s infinite;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 15%;
    left: -80px;
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8));
    animation: shootingStar 20s linear infinite;
    z-index: 1;
}

@keyframes shootingStar {
    0% {
        transform: translateX(-80px) translateY(20px) rotate(-15deg);
        opacity: 0;
    }
    10% {
        opacity: 0.8;
    }
    50% {
        opacity: 0.8;
    }
    60% {
        transform: translateX(calc(100vw + 80px)) translateY(-80px) rotate(-15deg);
        opacity: 0;
    }
    100% {
        transform: translateX(-80px) translateY(20px) rotate(-15deg);
        opacity: 0;
    }
}

@keyframes twinkle {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    padding: 0 2rem;
    align-items: center;
}

.hero-text h1 {
    font-size: 4rem;
    background: linear-gradient(45deg, #ffd700, #ff6b6b, #4ecdc4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
    user-select: none;
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: nowrap;
    align-items: center;
    height: 80px;
}

@media (max-width: 768px) {
    .hero-buttons {
        flex-direction: row;
        align-items: center;
        flex-wrap: nowrap;
        gap: 0.5rem;
    }
}

.play-store-btn {
    display: inline-block;
    transition: transform 0.3s;
    height: 80px !important;
}

.play-store-btn:hover {
    transform: translateY(-3px);
}

.play-store-btn img {
    height: 80px !important;
    width: auto;
    max-width: 250px;
}

@media (max-width: 768px) {
    .play-store-btn img {
        height: 60px;
        max-width: 180px;
    }
    
    .btn-primary {
        height: 60px !important;
        width: 180px;
    }
    
    .btn-secondary {
        height: 60px;
        width: 180px;
        font-size: 0.9rem;
        padding: 0.5rem;
    }
}

.btn-primary, .btn-secondary {
    padding: 1rem 2rem;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    cursor: pointer;
    transition: transform 0.3s;
    display: flex;
    align-items: center;
}

.btn-primary {
    background: transparent;
    color: white;
    height: 80px !important;
    width: 250px;
    padding: 0;
    cursor: pointer;
    position: relative;
    z-index: 10;
    flex-shrink: 0;
}

.btn-primary img {
    height: 100%;
    width: auto;
    display: block;
}

.btn-secondary {
    background: #000000;
    color: white;
    border: 1px solid #ffffff;
    width: 185px;
    border-radius: 10px;
    flex-shrink: 0;
    gap: 0.5rem;
    padding: 1rem 1rem;
    font-size: 1.1rem;
}

.btn-primary:hover, .btn-secondary:hover {
    transform: translateY(-3px);
}

.game-showcase {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 107, 107, 0.2));
    border-radius: 20px;
    border: 2px solid rgba(255, 215, 0, 0.3);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.game-showcase img {
    width: 112%;
    height: 113%;
    /* object-fit: cover; */
    /* object-position: center 60%; */
}

.game-showcase::before {
    display: none;
}

/* Features Section */
.features-section {
    padding: 5rem 0;
    background: rgba(0, 0, 0, 0.2);
}

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

.features-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    background: linear-gradient(45deg, #ffd700, #4ecdc4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 215, 0, 0.5);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    margin-bottom: 1rem;
    color: #ffd700;
}

/* News Section */
.news-section {
    padding: 5rem 0;
}

.news-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    background: linear-gradient(45deg, #ff6b6b, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.news-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: transform 0.3s;
}

.news-card:hover {
    transform: translateY(-5px);
}

.news-image {
    height: 200px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.3), rgba(78, 205, 196, 0.3));
    position: relative;
}

.news-image::before {
    content: '🚀';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 4rem;
    opacity: 0.5;
}

.news-content {
    padding: 1.5rem;
}

.news-content h3 {
    margin-bottom: 0.5rem;
    color: #ffd700;
}

.news-date {
    color: #4ecdc4;
    font-size: 0.9rem;
}

/* Merch Section */
.merch-section {
    padding: 5rem 0;
    background: rgba(0, 0, 0, 0.1);
}

.merch-header {
    text-align: center;
    margin-bottom: 3rem;
}

.merch-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #ffd700, #ff6b6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.badge {
    background: rgba(255, 215, 0, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    color: #ffd700;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.product-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: transform 0.3s;
}

.product-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 215, 0, 0.5);
}

.product-image {
    height: 200px;
    background: radial-gradient(ellipse at center, #1a1a3a 0%, #0a0a2e 70%), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><circle cx="15" cy="25" r="0.8" fill="white" opacity="0.9"/><circle cx="45" cy="15" r="0.5" fill="white" opacity="0.7"/><circle cx="85" cy="35" r="0.6" fill="white" opacity="0.8"/><circle cx="125" cy="20" r="0.4" fill="white" opacity="0.6"/><circle cx="165" cy="40" r="0.9" fill="white" opacity="0.9"/><circle cx="25" cy="65" r="0.5" fill="white" opacity="0.5"/><circle cx="75" cy="75" r="0.7" fill="white" opacity="0.8"/><circle cx="135" cy="60" r="0.6" fill="white" opacity="0.7"/><circle cx="185" cy="80" r="0.5" fill="white" opacity="0.6"/><circle cx="35" cy="105" r="0.6" fill="white" opacity="0.8"/><circle cx="95" cy="115" r="0.4" fill="white" opacity="0.5"/><circle cx="155" cy="100" r="0.7" fill="white" opacity="0.9"/><circle cx="10" cy="145" r="0.5" fill="white" opacity="0.6"/><circle cx="65" cy="155" r="0.8" fill="white" opacity="0.8"/><circle cx="115" cy="140" r="0.6" fill="white" opacity="0.7"/><circle cx="175" cy="160" r="0.5" fill="white" opacity="0.5"/><circle cx="50" cy="185" r="0.7" fill="white" opacity="0.9"/><circle cx="120" cy="190" r="0.4" fill="white" opacity="0.6"/><circle cx="190" cy="175" r="0.6" fill="white" opacity="0.8"/></svg>');
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.placeholder-img {
    font-size: 4rem;
    opacity: 0.8;
}

.product-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #ff6b6b;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: bold;
}

.product-badge.limited {
    background: #4ecdc4;
}

.product-info {
    padding: 1.5rem;
}

.product-info h3 {
    margin-bottom: 0.5rem;
    color: #ffd700;
}

.price {
    margin-bottom: 0.5rem;
}

.original-price {
    text-decoration: line-through;
    color: #999;
    margin-right: 0.5rem;
}

.sale-price {
    color: #ff6b6b;
    font-weight: bold;
    font-size: 1.2rem;
}

.rating {
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #ccc;
}

.add-to-cart {
    width: 100%;
    background: linear-gradient(45deg, #ffd700, #ff6b6b);
    color: white;
    border: none;
    padding: 0.8rem;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s;
    text-decoration: none;
    text-align: center;
    display: block;
}

.add-to-cart:hover {
    transform: translateY(-2px);
}

.merch-cta {
    text-align: center;
    background: rgba(255, 215, 0, 0.1);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.view-all-btn {
    background: transparent;
    color: #ffd700;
    border: 2px solid #ffd700;
    padding: 1rem 2rem;
    border-radius: 30px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 1rem;
}

.view-all-btn:hover {
    background: #ffd700;
    color: #0a0a2e;
}

/* Community Section */
.community-section {
    padding: 5rem 0;
    background: rgba(0, 0, 0, 0.2);
}

.community-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #4ecdc4, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.community-subtitle {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.community-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    background: linear-gradient(45deg, #ffd700, #ff6b6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #4ecdc4;
    font-size: 1.1rem;
}

.community-platforms {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.platform-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: transform 0.3s;
}

.platform-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 215, 0, 0.5);
}

.platform-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.discord-icon {
    background: linear-gradient(45deg, #5865F2, #7289DA);
    color: white;
}

.reddit-icon {
    background: linear-gradient(45deg, #FF4500, #FF6B35);
    color: white;
}

.x-icon {
    background: linear-gradient(45deg, #000000, #333333);
    color: white;
}

.platform-card h3 {
    margin-bottom: 1rem;
    color: #ffd700;
}

.platform-card p {
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.platform-btn {
    background: linear-gradient(45deg, #ffd700, #4ecdc4);
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: transform 0.3s;
    display: inline-block;
}

.platform-btn:hover {
    transform: translateY(-3px);
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.3);
    padding: 3rem 0 1rem;
    margin-top: 5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-section h3, .footer-section h4 {
    margin-bottom: 1rem;
    color: #ffd700;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #ffffff;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-section a:hover {
    opacity: 1;
    color: #ffd700;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section {
        padding-top: 80px;
    }
    
    .hero-section::after {
        top: 30%;
    }
    
    .nav-container {
        flex-direction: row;
        justify-content: space-between;
        padding: 0 1rem;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(10, 10, 46, 0.95);
        flex-direction: column;
        padding: 1rem;
        gap: 0.5rem;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu a {
        padding: 0.8rem 1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .game-showcase {
        height: 250px;
        margin-top: 2rem;
    }
    
    .features-grid, .news-grid {
        grid-template-columns: 1fr;
    }
}