/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-orange: #fed700;
    --primary-gold: #fec76f;
    --bright-yellow: #ffee00;
    --light-yellow: #fffe4a;
    --deep-gold: #fed700;
    --light-bg: #f8f9fa;
    --gray: #d3d3d3;
    --dark: #1e1d1b;
    --white: #ffffff;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--white);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

/* Typography */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

.section-title {
    margin-bottom: 2rem;
    color: var(--dark);
}

.section-title.center {
    text-align: center;
}

.section-description {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    color: #555;
}

.section-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 20px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--deep-gold), var(--bright-yellow));
    color: var(--dark);
    box-shadow: 0 4px 15px rgba(245, 148, 92, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 148, 92, 0.6);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--deep-gold), var(--bright-yellow));
    color: var(--dark);
    border: 2px solid var(--deep-gold);
    font-weight: 700;
}

.btn-secondary:hover {
    background: linear-gradient(135deg, var(--bright-yellow), var(--light-yellow));
    color: var(--dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 238, 0, 0.4);
}

.btn-dark {
    background: var(--dark);
    color: var(--white);
}

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

.btn-lg {
    padding: 16px 40px;
    font-size: 1.1rem;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--dark);
    color: var(--white);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

.logo img {
    height: 50px;
    filter: brightness(0) invert(1);
}

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

.nav-link {
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--primary-orange);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-orange);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background: var(--white);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--deep-gold);
    color: var(--dark);
    text-align: center;
    margin-top: 80px;
}




.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* About Section */
.about {
    padding: 80px 0;
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-content p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
}

.about-image {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about-image img {
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.about-image .hero-cta {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 25px;
}

.hero .hero-cta .btn-primary {
    border: 1px solid var(--dark);
}

.hero .hero-cta .btn-primary:hover {
    border: 1px solid var(--dark);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Advantages Section */
.advantages {
    padding: 80px 0;
    background: var(--light-bg);
}

.advantages-intro {
    max-width: 1200px;
    margin: 0 auto 50px;
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.advantages-intro p {
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
}

.advantages-intro p:last-child {
    margin-bottom: 0;
}

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

.advantage-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.advantage-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-orange), var(--bright-yellow));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
}

.advantage-card h3 {
    margin-bottom: 15px;
    color: var(--dark);
}

.advantage-card p {
    color: #666;
    line-height: 1.7;
}

/* Bonus Section */
.bonus {
    padding: 80px 0;
    background: var(--white);
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 2rem;
}

.bonus-card {
    background: linear-gradient(135deg, #fff, #f9f9f9);
    padding: 40px 30px;
    border-radius: 15px;
    border: 2px solid var(--gray);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.bonus-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-orange), var(--deep-gold));
}

.bonus-card.featured {
    border-color: var(--primary-orange);
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(245, 148, 92, 0.3);
}

.bonus-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.bonus-badge {
    display: inline-block;
    background: var(--deep-gold);
    color: var(--dark);
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.bonus-card h3 {
    margin-bottom: 15px;
    color: var(--dark);
}

.bonus-detail {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
}

.bonus-note {
    text-align: center;
    background: #fff9e6;
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid var(--deep-gold);
    max-width: 1200px;
    margin: 0 auto 2rem;
    font-size: 0.95rem;
    color: #666;
}

.bonus-details {
    max-width: 1200px;
    margin: 2rem auto;
    background: var(--light-bg);
    padding: 30px;
    border-radius: 15px;
    border: 2px solid #e0e0e0;
}

.bonus-details p {
    margin-bottom: 1rem;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
}

.bonus-details p:last-child {
    margin-bottom: 0;
}

/* Games Section */
.games {
    padding: 80px 0;
    background: var(--light-bg);
}

/* Games Tabs */
.games-tabs {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-bottom: 40px;
    border-bottom: 2px solid var(--gray);
}

.tab-btn {
    padding: 15px 30px;
    background: transparent;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
    position: relative;
}

.tab-btn:hover {
    color: var(--primary-orange);
}

.tab-btn.active {
    color: var(--primary-orange);
    border-bottom-color: var(--primary-orange);
}

.games-categories {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.game-category {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.category-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.category-header i {
    font-size: 2.5rem;
    color: var(--primary-orange);
}

.category-header h3 {
    color: var(--dark);
}

.category-description {
    margin-bottom: 20px;
    color: #666;
    line-height: 1.7;
}

.game-examples {
    list-style: none;
}

.game-examples li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    color: #555;
}

.game-examples li:last-child {
    border-bottom: none;
}

.game-examples li::before {
    content: '▸';
    color: var(--primary-orange);
    font-weight: bold;
    margin-right: 10px;
}

.games-note {
    max-width: 1200px;
    margin: 40px auto 0;
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    border-left: 4px solid var(--primary-orange);
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

/* Providers Section */
.providers {
    margin-top: 60px;
    padding-top: 60px;
    border-top: 2px solid #ddd;
}

.providers-title {
    text-align: center;
    margin-bottom: 40px;
    color: var(--dark);
}

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

.provider-logo {
    background: var(--white);
    padding: 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    min-height: 100px;
}

.provider-logo:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.provider-logo img {
    max-width: 120px;
    max-height: 60px;
    object-fit: contain;
    filter: none;
}


/* Payments Section */
.payments {
    padding: 80px 0;
    background: var(--white);
}

.payment-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 3rem;
}

.payment-methods h3,
.payment-notes h3 {
    margin-bottom: 25px;
    color: var(--dark);
}

.payment-list {
    margin-bottom: 30px;
}

.payment-list li {
    padding: 12px 0;
    font-size: 1.05rem;
    color: #555;
    display: flex;
    align-items: center;
    gap: 10px;
}

.payment-list i {
    color: #4CAF50;
    font-size: 1.2rem;
}

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

.payment-logos img {
    height: 40px;
    width: auto;
}

.note-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding: 15px;
    background: var(--light-bg);
    border-radius: 10px;
}

.note-item i {
    color: var(--primary-orange);
    font-size: 1.5rem;
    min-width: 30px;
}

.note-item p {
    margin: 0;
    color: #555;
    line-height: 1.7;
}

/* Signup Section */
.signup {
    padding: 80px 0;
    background: var(--light-bg);
}

.signup-steps-list {
    max-width: 1200px;
    margin: 0 auto 3rem;
    list-style: none;
    counter-reset: step-counter;
}

.signup-steps-list li {
    counter-increment: step-counter;
    padding: 25px;
    margin-bottom: 20px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    color: #555;
    line-height: 1.7;
    font-size: 1.05rem;
    position: relative;
    padding-left: 70px;
    transition: all 0.3s ease;
}

.signup-steps-list li:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.signup-steps-list li::before {
    content: counter(step-counter);
    position: absolute;
    left: 20px;
    top: 25px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-orange), var(--bright-yellow));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

/* CTA Final Section */
.cta-final {
    padding: 80px 0;
    background: var(--deep-gold);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--dark);
}

.cta-content p {
    font-size: 1.1rem;
    max-width: 1200px;
    margin: 0 auto 1.5rem;
    color: #333;
    line-height: 1.8;
}

.cta-content p strong {
    color: var(--dark);
    font-size: 1.15rem;
}

/* Footer */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 60px 0 30px;
}

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

.footer-column h4 {
    margin-bottom: 20px;
    color: var(--primary-orange);
    font-size: 1.2rem;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: #ccc;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: var(--primary-orange);
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-orange);
    transform: translateY(-3px);
}

.footer-badges {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.footer-badges img {
    height: 40px;
    width: auto;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #999;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-toggle {
        display: flex;
    }
    
    .nav {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--dark);
        transition: left 0.3s ease;
    }
    
    .nav.active {
        left: 0;
    }
    
    .nav-list {
        flex-direction: column;
        padding: 40px;
        gap: 20px;
    }
    
    .header-content > .btn {
        display: none;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .payment-content {
        grid-template-columns: 1fr;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.7rem;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
    }
    
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.6rem;
    }
    
    .advantages-grid,
    .games-categories {
        grid-template-columns: 1fr;
    }
    
    .providers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content > * {
    animation: fadeInUp 0.8s ease-out;
}

.hero-title {
    animation-delay: 0.2s;
}

.hero-subtitle {
    animation-delay: 0.4s;
}

.hero-cta {
    animation-delay: 0.6s;
}

