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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
    background: #0f0f1a;
    color: #ffffff;
    line-height: 1.6;
}

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

/* Header */
.header {
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.navbar {
    padding: 15px 0;
}

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

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

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

.login-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
}

.login-btn:hover {
    border-color: #ffd700;
    color: #ffd700;
}

.register-btn {
    background: linear-gradient(135deg, #00c851, #007e33);
    border: none;
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.register-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 200, 81, 0.3);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 3px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    border-radius: 2px;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    margin-top: 80px;
    min-height: 500px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-overlay {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.9), rgba(15, 15, 26, 0.7));
    min-height: 500px;
    display: flex;
    align-items: center;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 10px;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #cccccc;
    margin-bottom: 30px;
}

.hero-btn {
    background: linear-gradient(135deg, #ffd700, #ffb000);
    border: none;
    color: #1a1a2e;
    padding: 15px 30px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.3);
}

.hero-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Promotions */
.promotions {
    padding: 40px 0;
    background: rgba(26, 26, 46, 0.3);
}

.promo-cards {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
}

.promo-card {
    background: linear-gradient(135deg, rgba(70, 130, 180, 0.8), rgba(25, 25, 112, 0.8));
    border-radius: 15px;
    padding: 30px;
    position: relative;
    overflow: hidden;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.promo-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
}

.promo-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

.promo-card img {
    position: absolute;
    right: 20px;
    bottom: 20px;
    width: 120px;
    height: 80px;
    object-fit: cover;
    border-radius: 10px;
}

/* Games Sections */
.games-section, .all-games, .popular-games {
    padding: 50px 0;
}

.section-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
}

.view-all {
    margin-left: auto;
    color: #ffd700;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.view-all:hover {
    color: #ffed4a;
}

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

.game-card {
    background: rgba(26, 26, 46, 0.8);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s;
    position: relative;
    cursor: pointer;
}

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 215, 0, 0.2);
}

.game-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.game-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 600;
    z-index: 2;
}

.game-title {
    padding: 15px;
    font-weight: 700;
    color: #ffffff;
    font-size: 0.9rem;
}

.game-provider {
    padding: 0 15px 15px;
    font-size: 0.7rem;
    color: #ffd700;
    text-transform: uppercase;
}

/* Download App */
.download-app {
    padding: 40px 0;
    background: rgba(26, 26, 46, 0.5);
}

.app-promo {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.app-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 5px;
}

.app-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* Content Section */
.content-section {
    padding: 60px 0;
    background: rgba(15, 15, 26, 0.5);
}

.content-section h1 {
    font-size: 2.5rem;
    color: #ffd700;
    margin-bottom: 30px;
    text-align: center;
}

.content-section h2 {
    font-size: 2rem;
    color: #ffffff;
    margin: 40px 0 20px;
    border-left: 4px solid #ffd700;
    padding-left: 20px;
}

.content-section h3 {
    font-size: 1.5rem;
    color: #ffd700;
    margin: 30px 0 15px;
}

.content-section p {
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
}

.content-section ul, .content-section ol {
    margin: 20px 0;
    padding-left: 30px;
    color: rgba(255, 255, 255, 0.9);
}

.content-section li {
    margin-bottom: 8px;
}

.content-section strong {
    color: #ffd700;
}

/* Tables */
.games-comparison, .app-comparison {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    background: rgba(26, 26, 46, 0.8);
    border-radius: 10px;
    overflow: hidden;
}

.games-comparison th, .app-comparison th {
    background: linear-gradient(135deg, #ffd700, #ffb000);
    color: #1a1a2e;
    padding: 15px;
    text-align: left;
    font-weight: 700;
}

.games-comparison td, .app-comparison td {
    padding: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
}

.games-comparison tr:hover, .app-comparison tr:hover {
    background: rgba(255, 215, 0, 0.1);
}

/* Payment Methods */
.payment-methods {
    padding: 50px 0;
    background: rgba(26, 26, 46, 0.3);
}

.payment-title {
    text-align: center;
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 30px;
}

.payment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 20px;
    align-items: center;
    justify-items: center;
}

.payment-grid img {
    height: 40px;
    width: auto;
    filter: brightness(0.8);
    transition: all 0.3s;
}

.payment-grid img:hover {
    filter: brightness(1) drop-shadow(0 5px 15px rgba(255, 215, 0, 0.3));
    transform: scale(1.1);
}

/* Footer */
.footer {
    background: #1a1a2e;
    padding: 50px 0 30px;
    border-top: 1px solid rgba(255, 215, 0, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 30px;
}

.footer-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 15px;
}

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

.footer-section li {
    margin-bottom: 8px;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        display: none;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .promo-cards {
        grid-template-columns: 1fr;
    }
    
    .games-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 15px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .app-promo {
        flex-direction: column;
        text-align: center;
    }
    
    .content-section h1 {
        font-size: 1.8rem;
    }
    
    .content-section h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .games-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .nav-buttons {
        flex-direction: column;
        gap: 8px;
    }
    
    .login-btn, .register-btn {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
}