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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #1a1a1a;
    color: #ffffff;
    line-height: 1.6;
}

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

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

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

.menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    width: 24px;
    height: 18px;
}

.menu-toggle span {
    width: 100%;
    height: 2px;
    background: #FFD700;
    transition: all 0.3s ease;
}

.logo svg {
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.3));
}

.header-actions {
    display: flex;
    gap: 10px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: #FFD700;
    color: #1a1a1a;
}

.btn-primary:hover {
    background: #FFC700;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.btn-secondary {
    background: #8B4513;
    color: #ffffff;
    border: 1px solid #A0522D;
}

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

.btn-cta {
    background: linear-gradient(45deg, #FFD700, #FFA500);
    color: #1a1a1a;
    font-size: 16px;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

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

.btn-cta-small {
    background: linear-gradient(45deg, #FFD700, #FFA500);
    color: #1a1a1a;
    font-size: 12px;
    font-weight: bold;
    padding: 8px 16px;
}

.btn-outline {
    background: transparent;
    color: #FFD700;
    border: 1px solid #FFD700;
    font-size: 12px;
    padding: 8px 16px;
}

.btn-outline:hover {
    background: #FFD700;
    color: #1a1a1a;
}

.nav-categories {
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 70px;
    width: 100%;
    z-index: 999;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
    transition: all 0.3s ease;
}

.nav-categories.sticky {
    top: 0;
    border-bottom: 1px solid rgba(255, 215, 0, 0.3);
}

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

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #999;
    font-size: 12px;
    font-weight: 500;
}

.nav-item.active {
    color: #FFD700;
}

.nav-item.featured {
    background: linear-gradient(45deg, #FFD700, #FFA500);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    justify-content: center;
    color: #1a1a1a;
    font-size: 0;
}

.nav-item:hover {
    color: #FFD700;
    transform: translateY(-2px);
}

.nav-item svg {
    width: 20px;
    height: 20px;
}

main {
    margin-top: 130px;
}

.hero {
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 600px;
    display: flex;
    align-items: center;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(26, 26, 26, 0.8), rgba(139, 69, 19, 0.6));
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

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

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin-bottom: 10px;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #FFD700;
    font-weight: bold;
    margin-bottom: 20px;
}

.hero-subtitle sup {
    font-size: 1rem;
}

.hero-description {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: #ffffff;
}

.highlight {
    color: #FFD700;
    font-style: italic;
}

.hero-note {
    font-size: 1rem;
    color: #cccccc;
    margin-bottom: 30px;
    font-style: italic;
}

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

.hero-image img {
    max-width: 400px;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.5));
}

.payment-methods {
    background: #2a2a2a;
    padding: 20px 0;
    border-top: 1px solid #444;
    border-bottom: 1px solid #444;
}

.payment-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.payment-text {
    font-weight: bold;
    color: #ffffff;
    font-size: 14px;
}

.payment-logos {
    display: flex;
    align-items: center;
    gap: 15px;
}

.payment-logos img {
    height: 30px;
    width: auto;
    filter: brightness(0.8);
    transition: filter 0.3s ease;
}

.payment-logos img:hover {
    filter: brightness(1);
}

.search-section {
    padding: 30px 0;
    background: #1a1a1a;
}

.search-wrapper {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
}

.search-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
}

.search-input {
    width: 100%;
    padding: 15px 15px 15px 50px;
    background: #2a2a2a;
    border: 1px solid #444;
    border-radius: 25px;
    color: #ffffff;
    font-size: 14px;
    outline: none;
    transition: all 0.3s ease;
}

.search-input:focus {
    border-color: #FFD700;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.search-input::placeholder {
    color: #999;
}

.games-section {
    padding: 40px 0;
    background: #1a1a1a;
}

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

.fire-icon {
    margin-right: 10px;
}

.section-title {
    flex: 1;
    font-size: 1.2rem;
    font-weight: bold;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.game-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #2a2a2a;
}

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

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

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

.game-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    padding: 30px 20px 20px;
    color: #ffffff;
}

.game-title {
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 5px;
}

.game-subtitle {
    font-size: 0.9rem;
    color: #FFD700;
    margin-bottom: 3px;
}

.game-tagline {
    font-size: 0.8rem;
    color: #cccccc;
}

.daily-offers {
    background-size: cover;
    background-position: center;
    min-height: 300px;
    display: flex;
    align-items: center;
    position: relative;
}

.daily-offers::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(26, 26, 26, 0.7), rgba(139, 69, 19, 0.5));
}

.offers-content {
    position: relative;
    z-index: 2;
}

.offers-title {
    font-size: 3rem;
    font-weight: 900;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin-bottom: 15px;
}

.offers-description {
    font-size: 1.5rem;
    color: #FFD700;
    font-weight: 600;
}

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

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

.content-wrapper h1 {
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 30px;
    text-align: center;
}

.content-wrapper h2 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin: 40px 0 20px;
    border-left: 4px solid #FFD700;
    padding-left: 20px;
}

.content-wrapper h3 {
    font-size: 1.3rem;
    color: #34495e;
    margin: 30px 0 15px;
}

.content-wrapper p {
    margin-bottom: 20px;
    text-align: justify;
}

.content-wrapper table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.content-wrapper table th {
    background: #FFD700;
    color: #1a1a1a;
    padding: 15px;
    text-align: left;
    font-weight: bold;
}

.content-wrapper table td {
    padding: 12px 15px;
    border-bottom: 1px solid #eee;
}

.content-wrapper table tr:hover {
    background: #f8f9fa;
}

.content-wrapper ol {
    margin: 20px 0;
    padding-left: 30px;
}

.content-wrapper ol li {
    margin-bottom: 10px;
    font-weight: 500;
}

.content-wrapper ul {
    margin: 20px 0;
    padding-left: 30px;
}

.content-wrapper ul li {
    margin-bottom: 10px;
    list-style-type: disc;
}

.content-wrapper ul li strong {
    color: #2c3e50;
}

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

.footer-logo {
    text-align: center;
    margin-bottom: 30px;
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

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

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

.footer-payments {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.footer-payments img {
    height: 25px;
    width: auto;
    filter: brightness(0.6);
    transition: filter 0.3s ease;
}

.footer-payments img:hover {
    filter: brightness(1);
}

.footer-providers {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 12px;
    color: #666;
}

.footer-crypto {
    text-align: center;
    margin-bottom: 20px;
}

.footer-crypto span {
    color: #999;
    font-size: 12px;
    margin-bottom: 10px;
    display: block;
}

.crypto-icons {
    display: flex;
    justify-content: center;
    gap: 10px;
    font-size: 16px;
    color: #666;
}

.footer-age {
    text-align: center;
    margin-bottom: 20px;
}

.age-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border: 2px solid #999;
    border-radius: 50%;
    font-weight: bold;
    color: #999;
}

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

@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .payment-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .section-header {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
    }
    
    .nav-items {
        padding: 10px 0;
    }
    
    .nav-item span {
        font-size: 10px;
    }
    
    .footer-nav {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-payments {
        flex-wrap: wrap;
    }
}