/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #ffffff;
    line-height: 1.6;
}

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

/* Header Styles */
.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, 255, 255, 0.1);
}

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

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.brand-text {
    font-weight: bold;
    font-size: 1.2rem;
    color: #FFD700;
}

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

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

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

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #FFD700;
    transition: width 0.3s;
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.btn-secondary {
    background: transparent;
    border: 1px solid #FFD700;
    color: #FFD700;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: #FFD700;
    color: #1a1a2e;
}

.btn-primary {
    background: linear-gradient(45deg, #FF6B35, #FFD700);
    border: none;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    transition: transform 0.3s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

.language-selector {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.1);
    cursor: pointer;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: transparent;
    border: none;
    cursor: pointer;
    gap: 3px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #FFD700;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 100px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.8), rgba(102, 51, 153, 0.6));
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.bonus-card {
    background: linear-gradient(135deg, rgba(102, 51, 153, 0.9), rgba(138, 43, 226, 0.8));
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    border: 2px solid rgba(255, 215, 0, 0.3);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
}

.bonus-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(180deg); }
}

.bonus-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.3);
}

.bonus-icon {
    margin-bottom: 1rem;
}

.bonus-label {
    color: #FFD700;
    font-size: 0.8rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.bonus-title {
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.btn-bonus {
    background: #FFD700;
    color: #1a1a2e;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-bonus:hover {
    background: #FF6B35;
    color: white;
    transform: scale(1.05);
}

/* Game Categories */
.game-categories {
    padding: 2rem 0;
    background: rgba(26, 26, 46, 0.8);
}

.category-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    padding: 1rem 2rem;
    overflow-x: auto;
    max-width: 1200px;
    margin: 0 auto;
}

.filter-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.8rem 1.2rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 500;
    white-space: nowrap;
    transition: all 0.3s;
    font-size: 0.9rem;
}

.filter-btn:hover,
.filter-btn.active {
    background: rgba(255, 215, 0, 0.2);
    border-color: #FFD700;
    color: #FFD700;
}

/* Games Sections */
.top-games,
.new-games {
    padding: 3rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

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

.section-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: bold;
    color: #FFD700;
}

.show-all-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s;
}

.show-all-btn:hover {
    background: #FFD700;
    color: #1a1a2e;
}

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

.game-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

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

.game-image {
    width: 100%;
    height: 150px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.game-info {
    padding: 1rem;
    text-align: center;
}

.game-title {
    font-weight: bold;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    color: white;
}

.game-provider {
    color: #888;
    font-size: 0.8rem;
    text-transform: uppercase;
}

.game-fire-icon {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(255, 107, 53, 0.9);
    border-radius: 50%;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.game-new-badge,
.game-exclusive-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: bold;
    text-transform: uppercase;
}

.game-new-badge {
    background: #00FF7F;
    color: #1a1a2e;
}

.game-exclusive-badge {
    background: #FFD700;
    color: #1a1a2e;
}

/* Winners Sidebar */
.winners-sidebar {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(26, 26, 46, 0.95);
    border-radius: 15px;
    padding: 1rem;
    width: 200px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.3);
    z-index: 100;
}

.winners-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #FFD700;
    font-weight: bold;
    margin-bottom: 1rem;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.winner-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.winner-item:last-child {
    border-bottom: none;
}

.winner-avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: linear-gradient(45deg, #FF6B35, #FFD700);
}

.winner-name {
    font-size: 0.8rem;
    color: white;
}

.winner-amount {
    font-size: 0.8rem;
    color: #FFD700;
    font-weight: bold;
}

/* SEO Content Section */
.seo-content {
    background: rgba(26, 26, 46, 0.9);
    padding: 4rem 2rem;
    margin-top: 3rem;
}

.seo-content h1 {
    font-size: 2.5rem;
    color: #FFD700;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: bold;
}

.seo-content h2 {
    font-size: 1.8rem;
    color: #FF6B35;
    margin: 2rem 0 1rem 0;
    font-weight: bold;
}

.seo-content h3 {
    font-size: 1.4rem;
    color: #FFD700;
    margin: 1.5rem 0 1rem 0;
    font-weight: 600;
}

.seo-content p {
    margin-bottom: 1rem;
    color: #e0e0e0;
    line-height: 1.8;
    font-size: 1rem;
}

.bonus-comparison {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    overflow: hidden;
}

.bonus-comparison th,
.bonus-comparison td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.bonus-comparison th {
    background: rgba(255, 215, 0, 0.1);
    color: #FFD700;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.bonus-comparison td {
    color: #e0e0e0;
}

.bonus-comparison tr:hover {
    background: rgba(255, 255, 255, 0.05);
}

/* Footer */
.footer {
    background: #1a1a2e;
    padding: 3rem 2rem 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-section {
    color: #e0e0e0;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.2rem;
    font-weight: bold;
    color: #FFD700;
    margin-bottom: 1rem;
}

.footer-title {
    color: #FFD700;
    font-weight: bold;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

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

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

.footer-section a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s;
}

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

.payment-methods {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.payment-methods img {
    height: 30px;
    width: auto;
    border-radius: 5px;
    background: white;
    padding: 5px;
}

.footer-bottom {
    text-align: center;
    padding: 2rem 0 0;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #888;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .winners-sidebar {
        display: none;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .navbar {
        padding: 1rem;
    }
    
    .hero {
        padding-top: 80px;
    }
    
    .bonus-cards {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .category-filters {
        padding: 1rem;
        gap: 0.5rem;
    }
    
    .filter-btn {
        font-size: 0.8rem;
        padding: 0.6rem 1rem;
    }
    
    .games-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .section-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .seo-content h1 {
        font-size: 2rem;
    }
    
    .seo-content h2 {
        font-size: 1.5rem;
    }
    
    .bonus-comparison {
        font-size: 0.8rem;
    }
    
    .bonus-comparison th,
    .bonus-comparison td {
        padding: 0.5rem;
    }
}

@media (max-width: 480px) {
    .games-grid {
        grid-template-columns: 1fr;
    }
    
    .nav-actions {
        gap: 0.5rem;
    }
    
    .btn-secondary,
    .btn-primary {
        padding: 0.4rem 0.8rem;
        font-size: 0.9rem;
    }
    
    .bonus-card {
        padding: 1.5rem;
    }
    
    .section-title {
        font-size: 1.3rem;
    }
}