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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #ffffff;
    line-height: 1.6;
    min-height: 100vh;
}

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

.header {
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid #333;
}

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

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

.crown {
    font-size: 24px;
}

.brand {
    color: #ffd700;
    letter-spacing: 1px;
}

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

.btn-signup {
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-signup:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.4);
}

.btn-login {
    background: transparent;
    color: #ccc;
    padding: 10px 20px;
    border: 1px solid #555;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-login:hover {
    background: #333;
    color: white;
    border-color: #666;
}

.hero {
    background: linear-gradient(135deg, #e53e3e 0%, #c53030 50%, #9b2c2c 100%);
    margin-top: 70px;
    padding: 40px 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1606092195730-5d7b9af1efc5?w=1200&h=600&fit=crop&crop=center') center/cover;
    opacity: 0.2;
    z-index: 0;
}

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

.hero-text {
    flex: 1;
}

.welcome-label {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 15px;
    backdrop-filter: blur(5px);
}

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

.hero-subtitle {
    font-size: 18px;
    margin-bottom: 25px;
    opacity: 0.9;
}

.btn-hero {
    background: linear-gradient(135deg, #4299e1, #3182ce);
    color: white;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(66, 153, 225, 0.4);
}

.hero-image {
    flex: 1;
    text-align: right;
}

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

.game-nav {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 70px;
    z-index: 999;
    border-bottom: 1px solid #333;
    transition: all 0.3s ease;
}

.game-nav.scrolled {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

.nav-items {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 15px 0;
    overflow-x: auto;
}

.nav-item {
    color: #ccc;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.nav-item:hover, .nav-item.active {
    background: linear-gradient(135deg, #ffd700, #ffed4a);
    color: #1a1a1a;
    transform: translateY(-1px);
}

.providers-dropdown {
    color: #ccc;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.providers-dropdown:hover {
    background: #333;
    color: white;
}

.search-box {
    position: relative;
    margin-left: auto;
}

.search-box input {
    background: #333;
    border: 1px solid #555;
    border-radius: 6px;
    padding: 8px 40px 8px 15px;
    color: white;
    font-size: 14px;
    width: 200px;
    transition: all 0.3s ease;
}

.search-box input:focus {
    outline: none;
    border-color: #ffd700;
    background: #444;
}

.search-box svg {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #888;
    stroke: currentColor;
    fill: none;
}

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

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.game-card {
    background: #2d2d2d;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid #444;
}

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    border-color: #ffd700;
}

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

.game-title {
    padding: 15px;
    font-weight: 500;
    color: white;
    text-align: center;
}

.load-more {
    text-align: center;
}

.btn-load-more {
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-load-more:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(76, 175, 80, 0.4);
}

.why-play {
    background: #1a1a1a;
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid #333;
}

.section-title {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #ffd700;
}

.btn-read-more {
    background: transparent;
    color: #ffd700;
    padding: 12px 30px;
    border: 2px solid #ffd700;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-read-more:hover {
    background: #ffd700;
    color: #1a1a1a;
    transform: translateY(-2px);
}

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

.breadcrumbs {
    margin-bottom: 30px;
    color: #666;
}

.breadcrumbs a {
    color: #007bff;
    text-decoration: none;
}

.breadcrumbs a:hover {
    text-decoration: underline;
}

.seo-content {
    max-width: 800px;
}

.seo-content h1 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 25px;
    color: #1a1a1a;
    line-height: 1.3;
}

.seo-content h2 {
    font-size: 28px;
    font-weight: bold;
    margin: 40px 0 20px 0;
    color: #2c3e50;
}

.seo-content h3 {
    font-size: 22px;
    font-weight: 600;
    margin: 30px 0 15px 0;
    color: #34495e;
}

.seo-content p {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.7;
}

.seo-content strong {
    color: #2c3e50;
    font-weight: 600;
}

.casino-overview, .banking-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.casino-overview tr:first-child,
.banking-table tr:first-child {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.casino-overview td,
.banking-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #eee;
    vertical-align: top;
}

.casino-overview tr:nth-child(even),
.banking-table tr:nth-child(even) {
    background: #f8f9fa;
}

.seo-content ol {
    margin: 20px 0;
    padding-left: 25px;
}

.seo-content ol li {
    margin-bottom: 15px;
    line-height: 1.6;
}

.seo-content ul {
    margin: 20px 0;
    padding-left: 25px;
}

.seo-content ul li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.verdict-list {
    background: #e8f4f8;
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid #007bff;
}

.verdict-list li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 25px;
}

.verdict-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
}

.footer {
    background: #1a1a1a;
    border-top: 1px solid #333;
    padding: 40px 0 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.footer-column {
    color: #ccc;
}

.footer-title {
    color: #ffd700;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 16px;
}

.footer-column a {
    color: #aaa;
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    border-top: 1px solid #333;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    font-weight: bold;
}

.age-notice {
    background: #ff6b6b;
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 14px;
}

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

.social-icons a {
    color: #888;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #ffd700;
}

.footer-copyright {
    text-align: center;
    color: #666;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #333;
}

@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .nav-items {
        padding: 10px 0;
        gap: 15px;
    }
    
    .nav-item {
        font-size: 14px;
        padding: 6px 12px;
    }
    
    .search-box input {
        width: 150px;
    }
    
    .grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 15px;
    }
    
    .auth-buttons {
        gap: 10px;
    }
    
    .btn-signup, .btn-login {
        padding: 8px 16px;
        font-size: 14px;
    }
    
    .casino-overview, .banking-table {
        font-size: 14px;
    }
    
    .casino-overview td, .banking-table td {
        padding: 8px 10px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 30px 0;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
    
    .nav-items {
        gap: 10px;
    }
    
    .casino-overview, .banking-table {
        font-size: 12px;
        overflow-x: auto;
        display: block;
        white-space: nowrap;
    }
    
    .casino-overview td, .banking-table td {
        padding: 6px 8px;
        min-width: 100px;
    }
}