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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #0a0a0a;
}

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

/* Navbar */
.navbar {
    background: linear-gradient(135deg, #10b981 0%, #047857 100%);
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(16,185,129,0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: 1.5rem;
    font-weight: bold;
}

.logo img {
    height: 50px;
    width: 50px;
    border-radius: 8px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    flex-wrap: wrap;
}

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

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

.cta-button {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #047857;
    padding: 0.7rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 15px rgba(255,215,0,0.4);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255,215,0,0.6);
}

.cta-button-large {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #047857;
    padding: 1rem 2.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: bold;
    display: inline-block;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 6px 25px rgba(255,215,0,0.5);
}

.cta-button-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255,215,0,0.7);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #065f46 0%, #047857 50%, #10b981 100%);
}

.hero-image {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    padding: 2rem;
    max-width: 800px;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    color: #ffd700;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

/* Sections */
section {
    padding: 4rem 0;
}

.about {
    background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 100%);
    color: #e0e0e0;
}

.about h2 {
    color: #10b981;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.about p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    text-align: justify;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid #10b981;
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(16,185,129,0.3);
}

.feature-card h3 {
    color: #ffd700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #d0d0d0;
}

/* Games Section */
.games {
    background: #1a1a1a;
    color: #e0e0e0;
}

.games h2 {
    color: #10b981;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
}

.game-card {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid #10b981;
    align-items: center;
}

.game-card.reverse {
    flex-direction: row-reverse;
}

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

.game-info {
    padding: 2rem;
    flex: 1;
}

.game-info h3 {
    color: #ffd700;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.game-info p {
    margin-bottom: 1rem;
    font-size: 1.05rem;
    text-align: justify;
}

.game-link {
    color: #10b981;
    text-decoration: none;
    font-weight: bold;
    margin-right: 1rem;
    transition: color 0.3s;
}

.game-link:hover {
    color: #ffd700;
}

/* Bonuses Section */
.bonuses {
    background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 100%);
    color: #e0e0e0;
}

.bonuses h2 {
    color: #10b981;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.bonus-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid #10b981;
    margin-bottom: 2rem;
}

.bonus-card.featured {
    border: 3px solid #ffd700;
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
}

.bonus-card h3 {
    color: #ffd700;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.bonus-amount {
    color: #10b981;
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

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

/* Payment Section */
.payment {
    background: #1a1a1a;
    color: #e0e0e0;
}

.payment h2 {
    color: #10b981;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.payment-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 15px;
    margin: 2rem auto;
    display: block;
    border: 2px solid #10b981;
}

.payment-info h3 {
    color: #ffd700;
    font-size: 1.8rem;
    margin: 2rem 0 1rem;
}

.payment-info p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    text-align: justify;
}

/* Testimonials */
.testimonials {
    background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 100%);
    color: #e0e0e0;
}

.testimonials h2 {
    color: #10b981;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
}

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

.testimonial-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid #10b981;
}

.rating {
    color: #ffd700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1rem;
    color: #d0d0d0;
}

.testimonial-author {
    color: #10b981;
    font-weight: bold;
}

/* FAQ Section */
.faq {
    background: #1a1a1a;
    color: #e0e0e0;
}

.faq h2 {
    color: #10b981;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.faq-item {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid #10b981;
    margin-bottom: 1.5rem;
}

.faq-item h3 {
    color: #ffd700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.faq-item p {
    font-size: 1.05rem;
    text-align: justify;
}

/* License Section */
.license {
    background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 100%);
    color: #e0e0e0;
    text-align: center;
}

.license h2 {
    color: #10b981;
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.license-badge {
    width: 200px;
    height: 200px;
    margin: 2rem auto;
    display: block;
}

.license p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-align: justify;
}

.disclaimer {
    background: #2a2a2a;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #ffd700;
    margin-top: 2rem;
    font-weight: bold;
    color: #ffd700;
}

/* CTA Final */
.cta-final {
    background: linear-gradient(135deg, #10b981 0%, #047857 100%);
    color: #fff;
    text-align: center;
    padding: 5rem 0;
}

.cta-final h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #ffd700;
}

.cta-final p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
}

/* Footer */
footer {
    background: #0a0a0a;
    color: #e0e0e0;
    padding: 3rem 0 1rem;
    border-top: 3px solid #10b981;
}

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

.footer-section h3 {
    color: #10b981;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #d0d0d0;
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #2a2a2a;
    color: #888;
}

/* Game Pages */
.game-hero {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.game-hero img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

.game-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    padding: 2rem;
}

.game-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
    color: #ffd700;
}

.game-hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.7);
}

.game-content {
    background: #1a1a1a;
    color: #e0e0e0;
    padding: 4rem 0;
}

.game-content h2 {
    color: #10b981;
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.game-content h3 {
    color: #ffd700;
    font-size: 1.8rem;
    margin: 2rem 0 1rem;
}

.game-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.game-content ul {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.game-content ul li {
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .game-card {
        flex-direction: column;
    }
    
    .game-card.reverse {
        flex-direction: column;
    }
    
    .game-card img {
        width: 100%;
        height: 300px;
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .navbar .container {
        flex-direction: column;
        gap: 1rem;
    }
}
