        * {
         margin: 0;
         padding: 0;
         box-sizing: border-box;
         font-family: 'Arial', sans-serif;
        }
        
        body {
            background-color: #1a1a2e;
            color: #e6e6e6;
            overflow-x: hidden;
        }
        
        
        header {
            background-color: #16213e;
            padding: 20px 0;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
            position: relative;
            z-index: 10;
        }
        
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 28px;
            font-weight: bold;
            color: #f1c40f;
            text-decoration: none;
        }
        
        .logo span {
            color: #e74c3c;
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-left: 30px;
        }
        
        nav ul li a {
            color: #e6e6e6;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
        }
        
        nav ul li a:hover {
            color: #f1c40f;
        }
        
       
       .hero {
    height: 500px;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                url('https://via.placeholder.com/1920x1080') no-repeat center center/cover;
    display: flex;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.star {
    position: absolute;
    background-color: white;
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

.spaceship {
    position: absolute;
    width: 40px;
    height: 40px;
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 1;
    opacity: 0.8;
    pointer-events: none;
}


@media (max-width: 768px) {
    .hero {
        height: 400px;
    }
    
    .spaceship {
        width: 30px;
        height: 30px;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 350px;
    }
    
    .spaceship {
        width: 25px;
        height: 25px;
    }
}
        
        .hero-content {
            width: 100%;
            position: relative;
            z-index: 2;
        }
        
        .hero h1 {
            font-size: 48px;
            margin-bottom: 20px;
            color: #f1c40f;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }
        
        .hero p {
            font-size: 20px;
            margin-bottom: 30px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
        }
        
        .btn {
            display: inline-block;
            background-color: #e74c3c;
            color: white;
            padding: 12px 30px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: bold;
            transition: all 0.3s;
            position: relative;
            z-index: 2;
        }
        
        .btn:hover {
            background-color: #c0392b;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }
        
       
        .spaceship {
            position: absolute;
            width: 40px;
            height: 40px;
            background-size: contain;
            background-repeat: no-repeat;
            z-index: 1;
            opacity: 0.8;
        }
        
        .spaceship-1 {
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 40 40"><polygon points="20,5 5,35 35,35" fill="%23f1c40f"/><rect x="18" y="25" width="4" height="10" fill="%23e74c3c"/></svg>');
        }
        
        .spaceship-2 {
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 40 40"><rect x="10" y="15" width="20" height="10" fill="%233498db"/><polygon points="10,15 20,5 30,15" fill="%233498db"/><rect x="18" y="25" width="4" height="10" fill="%23e74c3c"/></svg>');
        }
        
        .spaceship-3 {
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 40 40"><rect x="15" y="10" width="10" height="20" fill="%232ecc71"/><polygon points="15,10 5,20 15,30" fill="%232ecc71"/><polygon points="25,10 35,20 25,30" fill="%232ecc71"/><rect x="18" y="30" width="4" height="10" fill="%23e74c3c"/></svg>');
        }
        
        .star {
            position: absolute;
            background-color: white;
            border-radius: 50%;
            z-index: 0;
        }

        
        .games-section {
            padding: 80px 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 50px;
            font-size: 36px;
            color: #f1c40f;
        }
        
        .games-container {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 30px;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .game-card {
            background-color: #16213e;
            border-radius: 10px;
            overflow: hidden;
            transition: transform 0.3s;
            width: 350px;
        }
        
        .game-card:hover {
            transform: translateY(-10px);
        }
        
        .game-img {
            height: 0px;
            background-size: cover;
            background-position: center;
        }
        
        .game-info {
            padding: 20px;
        }
    
        .game-title1{
           font-size: 22px;
            margin-bottom: 10px;
            color: #f1c40f;
            margin-left: 130px; 
        }
        .game-title {
            font-size: 22px;
            margin-bottom: 10px;
            color: #f1c40f;
            margin-left: 60px;
        }
        
        .game-desc {
            font-size: 16px;
            margin-bottom: 15px;
            color: #b8b8b8;
            margin-left: 25px;
        }
        
        .game-btn {
            display: inline-block;
            background-color: #3498db;
            color: white;
            padding: 10px 20px;
            border-radius: 5px;
            text-decoration: none;
            font-size: 16px;
            transition: background-color 0.3s;
            margin-left: 80px;
        }
        
        .game-btn:hover {
            background-color: #2980b9;
        }
        
        footer {
            background-color: #0f0f1a;
            padding: 40px 0;
            text-align: center;
        }
        
        .footer-links {
            display: flex;
            justify-content: center;
            margin-bottom: 20px;
        }
        
        .footer-links a {
            color: #e6e6e6;
            margin: 0 15px;
            text-decoration: none;
        }
        
        .footer-links a:hover {
            color: #f1c40f;
        }
        
        .copyright {
            color: #777;
            font-size: 14px;
        }

        @media (max-width: 768px) {
    
    .header-content {
        position: relative;
    }
    
    .hamburger {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 21px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 11;
    }
    
    .hamburger span {
        display: block;
        width: 100%;
        height: 3px;
        background: #f1c40f;
        transition: all 0.3s;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: #16213e;
        padding: 80px 20px 20px;
        transition: right 0.3s;
        z-index: 10;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    nav ul {
        flex-direction: column;
    }
    
    nav ul li {
        margin: 15px 0;
    }
    
   
    .hero {
        height: 400px;
    }
    
    .hero h1 {
        font-size: 32px;
    }
    
    .hero p {
        font-size: 16px;
    }
    
   
    .games-container {
        flex-direction: column;
        align-items: center;
    }
    
    .game-card {
        width: 100%;
        max-width: 350px;
    }
    
    .game-title1, .game-title {
        margin-left: 0;
        text-align: center;
    }
    
    .game-desc {
        margin-left: 0;
        text-align: center;
    }
    
    .game-btn {
        margin-left: 0;
        display: block;
        text-align: center;
    }
    
    
    .footer-links {
        flex-direction: column;
    }
    
    .footer-links a {
        margin: 10px 0;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 350px;
    }
    
    .hero h1 {
        font-size: 28px;
    }
    
    .container {
        width: 95%;
    }
}

@media (min-width: 769px) {
    .hamburger {
        display: none;
    }
    
    .nav-menu {
        display: block !important;
    }
}