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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: #000;
    overflow-x: hidden;
}

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

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

.breadcrumb a {
    color: #00ff88;
    text-decoration: none;
    margin-right: 5px;
}

.breadcrumb span {
    color: #ccc;
    margin-left: 5px;
}

.breadcrumb span:before {
    content: '>';
    margin-right: 5px;
    color: #666;
}

.header {
    background: #000;
    padding: 15px 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid #333;
}

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

.logo svg {
    width: 120px;
    height: 40px;
}

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

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

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

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

.btn {
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    transition: all 0.3s;
    display: inline-block;
    text-align: center;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: #00ff88;
    color: #000;
}

.btn-primary:hover {
    background: #00cc6a;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #00ff88;
}

.btn-secondary:hover {
    background: #00ff88;
    color: #000;
}

.hero {
    padding: 120px 0 60px;
    min-height: 600px;
    display: flex;
    align-items: center;
    position: relative;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-content {
    text-align: center;
}

.welcome-text {
    font-size: 18px;
    color: #00ff88;
    margin-bottom: 10px;
    font-style: italic;
}

.promo-title {
    font-size: 48px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

.promo-code {
    font-size: 24px;
    color: #FFD700;
    font-weight: bold;
    margin-bottom: 10px;
}

.disclaimer {
    font-size: 12px;
    color: #ccc;
    margin-bottom: 30px;
}

.btn-hero {
    background: #FFD700;
    color: #000;
    padding: 15px 40px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s;
}

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

.game-characters {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.character-card {
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    border: 2px solid #444;
    transition: transform 0.3s;
}

.character-card:hover {
    transform: translateY(-5px);
    border-color: #FFD700;
}

.character-card img {
    width: 100%;
    max-width: 150px;
    height: 120px;
    object-fit: cover;
    border-radius: 10px;
}

.reviews {
    background: #111;
    padding: 50px 0;
}

.review-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}

.review-card {
    background: #222;
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid #00ff88;
}

.stars {
    font-size: 18px;
    margin-bottom: 10px;
}

.reviewer {
    color: #00ff88;
    font-weight: bold;
    margin-bottom: 10px;
    font-size: 14px;
}

.review-text {
    color: #ccc;
    line-height: 1.5;
}

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

.more-reviews a {
    color: #00ff88;
    text-decoration: none;
    font-weight: bold;
}

.new-games {
    padding: 50px 0;
    background: #000;
}

.section-title {
    font-size: 32px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 40px;
    text-align: left;
}

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

.game-card {
    background: #222;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s;
    cursor: pointer;
}

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

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

.game-title {
    padding: 15px;
    text-align: center;
    font-weight: bold;
    color: #fff;
    font-size: 14px;
}

.weekly-draw {
    padding: 50px 0;
    background: #0a0a0a;
}

.draw-banner {
    border-radius: 20px;
    padding: 40px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.draw-title {
    font-size: 24px;
    color: #fff;
    margin-bottom: 10px;
}

.draw-subtitle {
    font-size: 36px;
    color: #FFD700;
    font-weight: bold;
    margin-bottom: 10px;
    font-style: italic;
}

.draw-prize {
    font-size: 28px;
    color: #fff;
    font-weight: bold;
    margin-bottom: 15px;
}

.draw-details {
    color: #ccc;
    margin-bottom: 25px;
    line-height: 1.5;
}

.time-left {
    color: #fff;
    margin-bottom: 10px;
    font-size: 16px;
}

.timer {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.time-unit {
    background: rgba(0,0,0,0.5);
    padding: 10px;
    border-radius: 8px;
    text-align: center;
    min-width: 60px;
}

.number {
    font-size: 24px;
    font-weight: bold;
    color: #FFD700;
}

.label {
    font-size: 12px;
    color: #ccc;
}

.btn-draw {
    background: #00ff88;
    color: #000;
    padding: 15px 30px;
    border-radius: 25px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-draw:hover {
    background: #00cc6a;
    transform: translateY(-2px);
}

.wizard-character {
    text-align: center;
}

.wizard-character img {
    max-width: 200px;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.3));
}

.faq-section {
    padding: 50px 0;
    background: #111;
}

.faq-items {
    display: grid;
    gap: 1px;
    background: #333;
    border-radius: 10px;
    overflow: hidden;
}

.faq-item {
    background: #222;
    padding: 25px;
    cursor: pointer;
    transition: background 0.3s;
}

.faq-item:hover {
    background: #333;
}

.faq-question {
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question:after {
    content: '▼';
    color: #00ff88;
    font-size: 14px;
}

.faq-answer {
    color: #ccc;
    line-height: 1.5;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

.seo-content {
    padding: 50px 0;
    background: #0a0a0a;
}

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

.seo-content h1 {
    font-size: 42px;
    color: #FFD700;
    margin-bottom: 25px;
    text-align: center;
}

.seo-content h2 {
    font-size: 32px;
    color: #00ff88;
    margin: 40px 0 20px;
    border-left: 4px solid #00ff88;
    padding-left: 15px;
}

.seo-content h3 {
    font-size: 24px;
    color: #fff;
    margin: 30px 0 15px;
}

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

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

.seo-content ol li {
    color: #ccc;
    margin-bottom: 10px;
    line-height: 1.6;
}

.seo-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    background: #222;
    border-radius: 10px;
    overflow: hidden;
}

.seo-content table thead {
    background: #00ff88;
}

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

.seo-content table thead th,
.seo-content table thead td {
    color: #000;
    font-weight: bold;
}

.seo-content table tbody td {
    color: #ccc;
}

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

.footer .container {
    display: grid;
    gap: 30px;
}

.footer-logo {
    justify-self: center;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.link-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

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

.link-group a:hover {
    color: #00ff88;
}

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

.payment-methods img {
    height: 30px;
    width: auto;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.payment-methods img:hover {
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
}

.footer-bottom p {
    color: #666;
    font-size: 12px;
}

@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    
    .games-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .review-cards {
        grid-template-columns: 1fr;
    }
    
    .draw-banner {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        gap: 15px;
    }
    
    .nav-menu {
        gap: 20px;
    }
    
    .promo-title {
        font-size: 32px;
    }
    
    .hero {
        padding: 160px 0 40px;
    }
    
    .games-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .game-characters {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .timer {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .nav-menu {
        display: none;
    }
    
    .header-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .promo-title {
        font-size: 24px;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .draw-banner {
        padding: 25px;
    }
    
    .seo-content h1 {
        font-size: 28px;
    }
    
    .seo-content h2 {
        font-size: 24px;
    }
    
    .seo-content table th,
    .seo-content table td {
        padding: 10px 8px;
        font-size: 12px;
        max-width: 120px;
    }
}