:root {
    --primary-color: #1a1a2e;
    --secondary-color: #16213e;
    --accent-color: #ffd700;
    --text-light: #ffffff;
    --text-muted: #b8b8b8;
    --gradient-primary: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    --gradient-gold: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    --shadow-light: 0 2px 10px rgba(0,0,0,0.1);
    --shadow-heavy: 0 10px 30px rgba(0,0,0,0.3);
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--primary-color);
    color: var(--text-light);
    line-height: 1.6;
}

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

.header {
    background: var(--primary-color);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
}

.logo {
    height: 40px;
    width: auto;
}

.nav-menu {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--accent-color);
}

.nav-link:hover::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--accent-color);
}

.nav-actions {
    display: flex;
    gap: 15px;
    align-items: center;
}

.btn-primary, .btn-secondary, .btn-cta {
    padding: 12px 24px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background: var(--gradient-gold);
    color: var(--primary-color);
    box-shadow: var(--shadow-light);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-heavy);
}

.btn-secondary {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--accent-color);
}

.btn-secondary:hover {
    background: var(--accent-color);
    color: var(--primary-color);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-light);
    transition: all 0.3s ease;
}

.hero {
    background: var(--primary-color);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26,26,46,0.9) 0%, rgba(22,33,62,0.8) 100%);
}

.hero .container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.hero-content {
    flex: 1;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.welcome-badge {
    background: rgba(255,215,0,0.2);
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    display: inline-block;
}

.bonus-amount {
    font-size: 4rem;
    font-weight: 900;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
    text-shadow: 0 0 30px rgba(255,215,0,0.5);
}

.free-spins {
    font-size: 1.2rem;
    color: var(--accent-color);
    margin-bottom: 30px;
    font-weight: 600;
}

.btn-cta {
    background: var(--gradient-gold);
    color: var(--primary-color);
    font-size: 1.1rem;
    padding: 18px 35px;
    border-radius: 30px;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: 0 10px 30px rgba(255,215,0,0.3);
    position: relative;
    overflow: hidden;
    flex-direction: column;
    gap: 5px;
}

.btn-cta small {
    font-size: 0.8rem;
    font-weight: 400;
    text-transform: none;
    opacity: 0.8;
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255,215,0,0.4);
}

.btn-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.btn-cta:hover::before {
    left: 100%;
}

.hero-characters {
    position: relative;
    width: 300px;
    height: 300px;
    display: none;
}

.floating-coins {
    position: absolute;
    width: 100%;
    height: 100%;
}

.floating-coins::before,
.floating-coins::after {
    content: '🪙';
    position: absolute;
    font-size: 2rem;
    animation: float 3s ease-in-out infinite;
}

.floating-coins::before {
    top: 20%;
    left: 10%;
    animation-delay: -1s;
}

.floating-coins::after {
    top: 60%;
    right: 10%;
    animation-delay: -2s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.payout-info {
    background: rgba(0,0,0,0.3);
    padding: 15px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.payout-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--accent-color);
    font-weight: 600;
}

.crown-icon {
    width: 24px;
    height: 24px;
    fill: var(--accent-color);
}

.payment-methods {
    background: rgba(0,0,0,0.2);
    padding: 30px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.payment-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.payment-logo {
    height: 40px;
    width: auto;
    opacity: 0.7;
    transition: opacity 0.3s ease;
    filter: brightness(0) invert(1);
}

.payment-logo:hover {
    opacity: 1;
}

.popular-games {
    padding: 80px 0;
    background: var(--secondary-color);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 50px;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.game-card {
    background: var(--primary-color);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
}

.game-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.game-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.game-card:hover .game-image {
    transform: scale(1.05);
}

.game-info {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.game-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-light);
}

.game-heart {
    color: #ff6b6b;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.game-card:hover .game-heart {
    transform: scale(1.2);
}

.content-section {
    background: #f8f9fa;
    color: #333;
    padding: 60px 0;
}

.content-article {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow-light);
}

.content-article h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-align: center;
}

.content-article h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin: 40px 0 20px;
    border-bottom: 3px solid var(--accent-color);
    padding-bottom: 10px;
}

.content-article h3 {
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin: 30px 0 15px;
}

.content-article p {
    margin-bottom: 20px;
    line-height: 1.8;
    text-align: justify;
}

.content-article strong {
    color: var(--primary-color);
    font-weight: 700;
}

.bonus-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    box-shadow: var(--shadow-light);
    border-radius: 10px;
    overflow: hidden;
}

.bonus-table th {
    background: var(--primary-color);
    color: white;
    padding: 15px;
    text-align: left;
    font-weight: 600;
}

.bonus-table td {
    padding: 15px;
    border-bottom: 1px solid #eee;
    background: white;
}

.bonus-table tr:nth-child(even) td {
    background: #f8f9fa;
}

.bonus-table tr:hover td {
    background: #e9ecef;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    color: white;
    padding: 20px;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.cookie-banner.show {
    transform: translateY(0);
}

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

.cookie-accept {
    background: var(--accent-color);
    color: var(--primary-color);
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.cookie-accept:hover {
    opacity: 0.9;
}

.footer {
    background: var(--primary-color);
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 60px 0 30px;
}

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

.footer-logo {
    height: 40px;
    margin-bottom: 20px;
}

.footer-section p {
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.6;
}

.footer-title {
    color: var(--accent-color);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-color);
}

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

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--accent-color);
    color: var(--primary-color);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-licenses {
    display: flex;
    gap: 15px;
    align-items: center;
}

.license-logo {
    height: 30px;
    opacity: 0.7;
}

.footer-disclaimer {
    color: var(--text-muted);
    font-size: 0.9rem;
    text-align: center;
    flex: 1;
}

@media (max-width: 768px) {
    .nav-menu, .nav-actions {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero .container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-characters {
        display: none;
    }
    
    .bonus-amount {
        font-size: 2.5rem;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .content-article {
        padding: 20px;
        margin: 20px;
    }
    
    .content-article h1 {
        font-size: 1.8rem;
    }
    
    .bonus-table {
        font-size: 0.8rem;
    }
    
    .bonus-table th,
    .bonus-table td {
        padding: 8px;
    }
}

@media (max-width: 480px) {
    .payment-logos {
        gap: 15px;
    }
    
    .payment-logo {
        height: 30px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .hero {
        min-height: 60vh;
        padding: 40px 0;
    }
}