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

body {
    font-family: 'Arial', sans-serif;
    background-color: #0f1419;
    color: #ffffff;
    line-height: 1.6;
}

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

.breadcrumbs {
    background: #1a1a2e;
    padding: 10px 0;
    font-size: 14px;
}

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

.breadcrumbs span {
    color: #666;
    margin: 0 5px;
}

.header {
    background: #1a1a2e;
    padding: 15px 0;
    position: relative;
    z-index: 1000;
}

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

.logo svg {
    width: 180px;
    height: 60px;
}

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

.btn {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-block;
}

.btn-signup {
    background: #c44536;
    color: white;
}

.btn-signup:hover {
    background: #a63429;
}

.btn-login {
    background: #d4a574;
    color: #1a1a2e;
}

.btn-login:hover {
    background: #b8935f;
}

.btn-cta {
    background: #c44536;
    color: white;
    font-size: 18px;
    padding: 15px 30px;
}

.btn-cta:hover {
    background: #a63429;
    transform: translateY(-2px);
}

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

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
}

.hero {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1596838132731-3301c3fd4317?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    z-index: -2;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 20, 25, 0.8);
    z-index: -1;
}

.hero-content {
    text-align: center;
    z-index: 1;
}

.hero-text {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 20px;
}

.hero-bonus {
    font-size: 56px;
    font-weight: bold;
    color: #ffd700;
    margin-bottom: 10px;
}

.hero-subtitle {
    font-size: 32px;
    margin-bottom: 30px;
}

.game-nav {
    background: #1a1a2e;
    padding: 15px 0;
    border-bottom: 2px solid #333;
}

.game-nav.sticky {
    position: sticky;
    top: 0;
    z-index: 999;
}

.nav-items {
    display: flex;
    gap: 30px;
    overflow-x: auto;
}

.nav-item {
    color: #ccc;
    text-decoration: none;
    font-weight: bold;
    white-space: nowrap;
    transition: color 0.3s ease;
}

.nav-item:hover,
.nav-item.active {
    color: #ffd700;
}

.search-section {
    padding: 30px 0;
}

.search-box {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

.search-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}

.search-box input {
    width: 100%;
    padding: 15px 15px 15px 45px;
    background: #1a1a2e;
    border: 2px solid #333;
    border-radius: 8px;
    color: white;
    font-size: 16px;
}

.search-box input::placeholder {
    color: #666;
}

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

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

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

.game-card {
    background: #1a1a2e;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.game-card:hover {
    transform: translateY(-5px);
}

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

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

.seo-content {
    padding: 60px 0;
    background: #0f1419;
}

.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

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

.content-wrapper h2 {
    font-size: 28px;
    color: #ffd700;
    margin: 40px 0 20px 0;
    border-left: 4px solid #ffd700;
    padding-left: 20px;
}

.content-wrapper h3 {
    font-size: 22px;
    color: #d4a574;
    margin: 30px 0 15px 0;
}

.content-wrapper h4 {
    font-size: 18px;
    color: #ccc;
    margin: 25px 0 10px 0;
}

.content-wrapper p {
    margin-bottom: 20px;
    color: #ccc;
    line-height: 1.7;
}

.content-wrapper ul,
.content-wrapper ol {
    margin: 20px 0 20px 30px;
    color: #ccc;
}

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

.content-wrapper table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    background: #1a1a2e;
    border-radius: 8px;
    overflow: hidden;
}

.content-wrapper th,
.content-wrapper td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #333;
    word-wrap: break-word;
}

.content-wrapper th {
    background: #ffd700;
    color: #1a1a2e;
    font-weight: bold;
}

.content-wrapper tr:last-child td {
    border-bottom: none;
}

.content-wrapper blockquote {
    border-left: 4px solid #ffd700;
    padding-left: 20px;
    margin: 20px 0;
    font-style: italic;
    color: #d4a574;
}

.providers {
    padding: 60px 0;
    background: #1a1a2e;
}

.providers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    align-items: center;
}

.providers-grid img {
    max-width: 120px;
    height: auto;
    margin: 0 auto;
    display: block;
    filter: grayscale(100%) brightness(0.7);
    transition: filter 0.3s ease;
}

.providers-grid img:hover {
    filter: none;
}

.footer {
    background: #1a1a2e;
    padding: 40px 0;
    text-align: center;
    position: relative;
}

.footer .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.age-restriction {
    margin-bottom: 20px;
}

.age-badge {
    width: 60px;
    height: 60px;
    border: 3px solid #c44536;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
    color: #c44536;
    margin: 0 auto;
}

.footer-brand {
    text-align: center;
}

.footer-brand div:first-child {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 5px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

.language-selector {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ccc;
}

.support-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1000;
}

.support-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background: #ffd700;
    color: #1a1a2e;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.support-btn:hover {
    background: #d4a574;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .header-actions .btn {
        padding: 8px 16px;
        font-size: 14px;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-text {
        font-size: 32px;
    }
    
    .hero-bonus {
        font-size: 40px;
    }
    
    .hero-subtitle {
        font-size: 24px;
    }
    
    .nav-items {
        gap: 15px;
        padding-bottom: 5px;
    }
    
    .grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 15px;
    }
    
    .content-wrapper h1 {
        font-size: 28px;
    }
    
    .content-wrapper h2 {
        font-size: 24px;
    }
    
    .providers-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 20px;
    }
    
    .footer .container {
        padding: 0 10px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
    
    .support-buttons {
        bottom: 10px;
        right: 10px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-text {
        font-size: 28px;
    }
    
    .hero-bonus {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 20px;
    }
    
    .grid {
        grid-template-columns: 1fr;
    }
    
    .content-wrapper {
        padding: 0 10px;
    }
    
    .content-wrapper h1 {
        font-size: 24px;
    }
    
    .content-wrapper h2 {
        font-size: 20px;
    }
    
    .providers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}