:root {
    --primary: #ff6b00;
    --primary-dark: #e55d00;
    --secondary: #1a1a2e;
    --accent: #ffd700;
    --dark: #0f0f1a;
    --darker: #0a0a12;
    --light: #f8f9fa;
    --gray: #6c757d;
    --success: #28a745;
    --text: #e0e0e0;
    --text-muted: #9a9ab0;
    --card-bg: #1e1e32;
    --border: #2a2a40;
    --gradient: linear-gradient(135deg, #ff6b00 0%, #ffd700 100%);
    --shadow: 0 4px 20px rgba(0,0,0,0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

img {
    max-width: 100%;
    height: auto;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--dark);
    color: var(--text);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

h1, h2, h3, h4, h5 {
    font-family: 'Poppins', sans-serif;
    color: #fff;
    line-height: 1.3;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
}

.btn-primary {
    background: var(--gradient);
    color: #fff;
    box-shadow: 0 4px 15px rgba(255,107,0,0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255,107,0,0.6);
}

.btn-secondary {
    background: transparent;
    color: var(--accent);
    border: 2px solid var(--accent);
}

.btn-secondary:hover {
    background: var(--accent);
    color: var(--dark);
}

.btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.3);
}

.btn-outline:hover {
    border-color: #fff;
    background: rgba(255,255,255,0.1);
}

.btn-large {
    padding: 16px 40px;
    font-size: 16px;
}

/* Header */
.header {
    background: var(--darker);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo a {
    display: flex;
    align-items: center;
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
}

.logo a span {
    color: var(--accent);
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 8px;
}

.nav-list a {
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
    transition: all 0.3s;
}

.nav-list a:hover,
.nav-list a.active {
    color: #fff;
    background: rgba(255,107,0,0.15);
}

.header-actions {
    display: flex;
    gap: 10px;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #fff;
    border-radius: 2px;
    transition: 0.3s;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--darker);
    z-index: 999;
    padding: 30px 20px;
}

.mobile-menu.active {
    display: block;
}

.mobile-nav ul {
    list-style: none;
}

.mobile-nav a {
    display: block;
    padding: 15px 0;
    font-size: 18px;
    border-bottom: 1px solid var(--border);
    color: var(--text);
}

.mobile-actions {
    margin-top: 20px;
    display: flex;
    gap: 10px;
}

/* Breadcrumb */
.breadcrumb {
    padding: 15px 0;
    background: var(--darker);
}

.breadcrumb-list {
    display: flex;
    list-style: none;
    gap: 10px;
    font-size: 14px;
}

.breadcrumb-list li:not(:last-child)::after {
    content: '>';
    margin-left: 10px;
    color: var(--text-muted);
}

.breadcrumb-list a {
    color: var(--primary);
}

.breadcrumb-list .current {
    color: var(--text-muted);
}

/* Hero */
.hero {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--darker) 0%, var(--secondary) 100%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero h1 {
    font-size: 42px;
    margin-bottom: 20px;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 30px;
    line-height: 1.7;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.hero-features .feature {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    background: rgba(255,107,0,0.08);
    border-radius: 8px;
    font-size: 14px;
}

.hero-features .icon {
    font-size: 20px;
}

.hero-actions {
    display: flex;
    gap: 15px;
}

.hero-image {
    text-align: center;
}

.hero-image img {
    border-radius: 16px;
    box-shadow: var(--shadow);
}

/* Page Hero */
.page-hero {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--darker) 0%, var(--secondary) 100%);
    text-align: center;
}

.page-hero h1 {
    font-size: 38px;
    margin-bottom: 15px;
}

.page-hero .subtitle {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 30px;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 30px;
}

.stat-item {
    text-align: center;
}

.stat-value {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: var(--accent);
    font-family: 'Poppins', sans-serif;
}

.stat-label {
    font-size: 13px;
    color: var(--text-muted);
}

.cta-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* Features */
.features {
    padding: 80px 0;
}

.features h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 50px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background: var(--card-bg);
    padding: 35px 25px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid var(--border);
    transition: all 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(255,107,0,0.15);
}

.feature-icon {
    font-size: 40px;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* Games Grid */
.popular-games {
    padding: 80px 0;
    background: var(--darker);
}

.popular-games h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 50px;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.game-card {
    background: var(--card-bg);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all 0.3s;
}

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.game-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.game-card h3 {
    padding: 15px 15px 5px;
    font-size: 16px;
}

.game-card p {
    padding: 0 15px;
    font-size: 13px;
    color: var(--text-muted);
}

.game-card .btn {
    margin: 15px;
    display: block;
    text-align: center;
}

.game-info {
    padding: 15px;
}

.game-info h3 {
    padding: 0;
    margin-bottom: 8px;
}

.game-info p {
    padding: 0;
    margin-bottom: 12px;
}

.game-stats {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: var(--accent);
    margin-bottom: 12px;
}

.game-image {
    position: relative;
}

.game-overlay {
    position: absolute;
    top: 10px;
    right: 10px;
}

.popularity {
    background: rgba(0,0,0,0.7);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
    color: var(--accent);
}

.games-cta {
    text-align: center;
    margin-top: 40px;
}

/* Promotions */
.promotions {
    padding: 80px 0;
}

.promotions h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 50px;
}

.promotions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.promo-card {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid var(--border);
    transition: all 0.3s;
    position: relative;
}

.promo-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.promo-card.featured {
    border-color: var(--primary);
}

.promo-badge {
    display: inline-block;
    background: var(--primary);
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    margin-bottom: 15px;
}

.promo-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.promo-amount {
    font-size: 36px;
    font-weight: 700;
    color: var(--accent);
    font-family: 'Poppins', sans-serif;
    margin-bottom: 10px;
}

.promo-card p {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 20px;
}

.promo-details {
    text-align: left;
    margin-bottom: 20px;
}

.promo-details span {
    display: block;
    font-size: 13px;
    color: var(--text-muted);
    padding: 4px 0;
}

.promo-image img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

/* CTA Section */
.cta-section {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--darker) 100%);
}

.promo-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.promo-content .promo-badge {
    font-size: 14px;
}

.promo-highlight {
    margin: 20px 0;
}

.bonus-amount {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: var(--accent);
    font-family: 'Poppins', sans-serif;
}

.bonus-extras {
    display: block;
    font-size: 18px;
    color: var(--primary);
    margin-top: 5px;
}

.promo-steps {
    display: flex;
    gap: 20px;
    margin: 25px 0;
}

.step {
    display: flex;
    align-items: center;
    gap: 10px;
}

.step-number {
    width: 30px;
    height: 30px;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background: var(--darker);
}

.testimonials h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 50px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid var(--border);
}

.testimonial-card .stars {
    margin-bottom: 15px;
}

.testimonial-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 15px;
}

.testimonial-card .author {
    font-size: 13px;
    color: var(--primary);
    font-weight: 600;
}

.testimonial-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
}

.quote-icon, .tip-icon {
    font-size: 30px;
    margin-bottom: 15px;
}

/* FAQ */
.faq {
    padding: 80px 0;
}

.faq h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 50px;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--card-bg);
    padding: 25px 30px;
    border-radius: 12px;
    margin-bottom: 15px;
    border: 1px solid var(--border);
}

.faq-item h3 {
    font-size: 16px;
    margin-bottom: 10px;
    color: var(--accent);
}

.faq-item p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* Categories */
.slots-categories {
    padding: 80px 0;
    background: var(--darker);
}

.slots-categories h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 50px;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.category-card {
    background: var(--card-bg);
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid var(--border);
    transition: all 0.3s;
}

.category-card:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
}

.category-icon {
    font-size: 40px;
    display: block;
    margin-bottom: 15px;
}

.category-card h3 {
    font-size: 16px;
    margin-bottom: 8px;
}

.category-card p {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.game-count {
    font-size: 12px;
    color: var(--primary);
    font-weight: 600;
}

/* Content Page */
.content-page {
    padding: 60px 0;
}

.content-page article {
    max-width: 900px;
    margin: 0 auto;
}

.content-page h1 {
    font-size: 36px;
    margin-bottom: 20px;
}

.content-page h2 {
    font-size: 24px;
    margin: 35px 0 15px;
    color: var(--accent);
}

.content-page h3 {
    font-size: 20px;
    margin: 25px 0 12px;
}

.content-page p {
    margin-bottom: 18px;
    line-height: 1.8;
    color: var(--text-muted);
}

.content-page ul, .content-page ol {
    margin: 15px 0 25px 25px;
    color: var(--text-muted);
}

.content-page li {
    margin-bottom: 8px;
    line-height: 1.7;
}

.content-page .game-info-box {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 25px;
    margin: 30px 0;
    overflow-x: auto;
}

.content-page .game-info-box table {
    width: 100%;
    border-collapse: collapse;
}

.content-page .game-info-box td {
    padding: 10px 15px;
    border-bottom: 1px solid var(--border);
    font-size: 14px;
}

.content-page .game-info-box td:first-child {
    color: var(--text-muted);
    width: 40%;
}

.content-page .game-info-box td:last-child {
    color: #fff;
    font-weight: 500;
}

.content-cta {
    background: var(--card-bg);
    border: 2px solid var(--primary);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    margin: 40px 0;
}

.content-cta h3 {
    margin-bottom: 10px;
}

.content-cta p {
    margin-bottom: 20px;
}

/* Footer */
.footer {
    background: var(--darker);
    padding: 60px 0 30px;
    border-top: 1px solid var(--border);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    margin-bottom: 15px;
}

.footer-logo a {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
}

.footer-logo a span {
    color: var(--accent);
}

.footer-section p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
}

.footer-section h4 {
    font-size: 16px;
    margin-bottom: 20px;
    color: #fff;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul a {
    font-size: 14px;
    color: var(--text-muted);
    transition: color 0.3s;
}

.footer-section ul a:hover {
    color: var(--primary);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--card-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: all 0.3s;
    border: 1px solid var(--border);
}

.social-links a:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-disclaimer p {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 5px;
}

.footer-payments {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-payments span {
    font-size: 13px;
    color: var(--text-muted);
}

.payment-icons {
    display: flex;
    gap: 10px;
}

.payment-icons span {
    background: var(--card-bg);
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 12px;
    color: var(--text);
    border: 1px solid var(--border);
}

/* Responsive */
@media (max-width: 1024px) {
    .features-grid,
    .testimonials-grid,
    .promotions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .games-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .main-nav,
    .header-actions {
        display: none;
    }
    
    .main-nav.active {
        display: block;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--bg-secondary, #1a1a2e);
        z-index: 999;
        padding: 30px 20px;
        overflow-y: auto;
    }
    
    .main-nav.active .nav-list {
        flex-direction: column;
        gap: 0;
    }
    
    .main-nav.active .nav-list li a {
        display: block;
        padding: 15px 20px;
        font-size: 18px;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero h1 {
        font-size: 30px;
    }
    
    .hero-features {
        grid-template-columns: 1fr;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-image {
        display: none;
    }
    
    .features-grid,
    .testimonials-grid,
    .promotions-grid {
        grid-template-columns: 1fr;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 15px;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .promo-hero {
        grid-template-columns: 1fr;
    }
    
    .promo-steps {
        flex-direction: column;
    }
    
    .category-grid {
        grid-template-columns: 1fr;
    }
    
    .page-hero h1 {
        font-size: 28px;
    }
}

/* Article Images */
.article-hero-img {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 12px;
    margin: 20px 0 30px;
    display: block;
    object-fit: cover;
}

.article-img {
    width: 100%;
    max-width: 700px;
    height: auto;
    border-radius: 10px;
    margin: 15px 0 25px;
    display: block;
    object-fit: cover;
}

.page-hero-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 25px;
}

@media (max-width: 768px) {
    .page-hero-img {
        height: 180px;
    }
    .article-hero-img {
        border-radius: 8px;
        margin: 15px 0 20px;
    }
}
