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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: linear-gradient(135deg, #2D3A4F 0%, #4A90E2 100%);
    color: white;
    line-height: 1.6;
    min-height: 100vh;
}

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

.header {
    background: rgba(45, 58, 79, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: bold;
    color: white;
}

.auth-buttons {
    display: flex;
    gap: 10px;
}

.btn-login {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 8px 16px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.btn-login:hover {
    background: rgba(255, 255, 255, 0.1);
}

.btn-signup {
    background: #7ED321;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.btn-signup:hover {
    background: #6BC018;
    transform: translateY(-1px);
}

.crypto-banner {
    background: #4A90E2;
    padding: 10px 0;
    margin-top: 80px;
    text-align: center;
}

.crypto-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.crypto-icons {
    display: flex;
    gap: 10px;
    align-items: center;
}

.crypto-icons img {
    width: 24px;
    height: 24px;
    border-radius: 50%;
}

.hero {
    background: linear-gradient(135deg, #2D3A4F 0%, #4A90E2 100%);
    padding: 40px 0;
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    min-height: 300px;
}

.hero-text {
    flex: 1;
    max-width: 400px;
}

.hero-title {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 10px;
    line-height: 1.2;
}

.hero-prize {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 30px;
}

.btn-compete {
    background: #7ED321;
    color: white;
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-compete:hover {
    background: #6BC018;
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(126, 211, 33, 0.3);
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
}

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

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #7ED321;
}

.categories-nav {
    background: rgba(45, 58, 79, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 100;
}

.sticky-nav {
    position: sticky;
    top: 80px;
}

.categories {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding: 0 10px;
}

.category {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 15px;
    border-radius: 20px;
    text-decoration: none;
    color: white;
    white-space: nowrap;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
}

.category.active {
    background: rgba(126, 211, 33, 0.2);
    color: #7ED321;
}

.category:hover {
    background: rgba(255, 255, 255, 0.2);
}

.games-section {
    padding: 40px 0;
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
}

.section-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: bold;
    color: #7ED321;
}

.see-all {
    color: #4A90E2;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.see-all:hover {
    color: #7ED321;
}

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

.game-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

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

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

.exclusive-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: linear-gradient(45deg, #FF6B35, #F7931E);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: bold;
    z-index: 2;
}

.game-info {
    padding: 15px;
    text-align: center;
}

.game-info.red {
    background: linear-gradient(135deg, #FF4500, #FF6347);
}

.game-info.pink {
    background: linear-gradient(135deg, #FFB6C1, #FF69B4);
}

.game-info.blue {
    background: linear-gradient(135deg, #4169E1, #1E90FF);
}

.game-info.dark-red {
    background: linear-gradient(135deg, #8B0000, #DC143C);
}

.game-title {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 2px;
}

.game-subtitle {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 5px;
}

.game-provider {
    font-size: 12px;
    opacity: 0.8;
}

.new-games-section {
    padding: 20px 0;
}

.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: rgba(45, 58, 79, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 1000;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-content {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
}

.cookie-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.main-content {
    padding: 40px 0 120px;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
}

.breadcrumb {
    margin-bottom: 30px;
    font-size: 14px;
    opacity: 0.8;
}

.breadcrumb a {
    color: #4A90E2;
    text-decoration: none;
}

.breadcrumb a:hover {
    color: #7ED321;
}

.content-article {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.content-article h1 {
    font-size: 32px;
    color: #7ED321;
    margin-bottom: 20px;
    line-height: 1.3;
}

.content-article h2 {
    font-size: 24px;
    color: #4A90E2;
    margin: 30px 0 15px;
}

.content-article h3 {
    font-size: 20px;
    color: white;
    margin: 25px 0 12px;
}

.content-article p {
    margin-bottom: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
}

.content-article table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    overflow: hidden;
}

.content-article td {
    padding: 12px 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    word-wrap: break-word;
    max-width: 0;
}

.content-article td:first-child {
    font-weight: 600;
    background: rgba(126, 211, 33, 0.1);
    color: #7ED321;
    width: 30%;
}

.content-article ul, .content-article ol {
    margin: 15px 0;
    padding-left: 25px;
}

.content-article li {
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.9);
}

.footer {
    background: rgba(45, 58, 79, 0.98);
    padding: 40px 0 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

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

.menu-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
}

.menu-title {
    font-weight: 500;
    color: white;
}

.app-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.app-btn {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.app-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.footer-brand {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: bold;
    color: #7ED321;
}

.language-selector {
    position: relative;
}

.language-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(126, 211, 33, 0.3);
    padding: 8px;
    border-radius: 6px;
    cursor: pointer;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-links a {
    transition: transform 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-3px);
}

.footer-badges {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    opacity: 0.7;
}

.footer-badges img {
    height: 40px;
    width: auto;
    filter: grayscale(1) brightness(0.7);
}

.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(45, 58, 79, 0.98);
    backdrop-filter: blur(20px);
    padding: 10px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-around;
    z-index: 1000;
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    color: white;
    text-decoration: none;
    font-size: 12px;
    padding: 5px 10px;
    transition: all 0.3s ease;
}

.nav-item.active {
    color: #7ED321;
}

.nav-item:hover {
    color: #7ED321;
}

.chat-button {
    position: fixed;
    bottom: 100px;
    right: 20px;
    background: #7ED321;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(126, 211, 33, 0.3);
    transition: all 0.3s ease;
    z-index: 1000;
}

.chat-button:hover {
    background: #6BC018;
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(126, 211, 33, 0.4);
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .categories {
        gap: 15px;
        justify-content: flex-start;
    }
    
    .games-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 15px;
    }
    
    .content-article {
        padding: 25px 20px;
    }
    
    .content-article h1 {
        font-size: 24px;
    }
    
    .content-article h2 {
        font-size: 20px;
    }
    
    .footer-menu {
        grid-template-columns: 1fr;
    }
    
    .app-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-brand {
        flex-direction: column;
        gap: 15px;
    }
    
    .crypto-content {
        flex-direction: column;
        gap: 10px;
    }
    
    .auth-buttons {
        gap: 5px;
    }
    
    .btn-login, .btn-signup {
        padding: 6px 12px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .content-article td {
        padding: 8px 10px;
        font-size: 14px;
    }
    
    .game-card img {
        height: 120px;
    }
    
    .hero-title {
        font-size: 24px;
    }
    
    .section-title {
        font-size: 20px;
    }
}