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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: #050505;
    color: #fafafa;
    line-height: 1.6;
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background-color: rgba(5, 5, 5, 0.9);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(38, 38, 38, 0.3);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
    padding: 0 1rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo img {
    /* width: 32px; */
    height: 32px;
}

.logo-text {
    font-size: 1.25rem;
    font-weight: bold;
}

.logo-gama {
    background: linear-gradient(90deg, #b347d9, #5b9bd5, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-casino {
    color: #ffd700;
}

.nav-links {
    display: none;
    gap: 2rem;
}

.nav-links a {
    color: #fafafa;
    text-decoration: none;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #ffd700;
}

.nav-buttons {
    display: none;
    gap: 1rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-outline {
    border: 1px solid #262626;
    background: #050505;
    color: #fafafa;
}

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

.btn-gold {
    background: linear-gradient(135deg, #ffd700, #ffa500);
    color: #000;
    font-weight: 600;
    transform: scale(1);
    transition: all 0.3s;
}

.btn-gold:hover {
    transform: scale(1.05);
    box-shadow: 0 0 40px rgba(255, 215, 0, 0.4);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

/* Mobile menu */
.mobile-menu-btn {
    display: block;
    background: none;
    border: none;
    color: #fafafa;
    font-size: 1.5rem;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1596838132731-3301c3fd4317?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    opacity: 0.2;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 1));
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 1rem;
    max-width: 64rem;
}

.hero-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.hero-title .gama {
    background: linear-gradient(90deg, #b347d9, #5b9bd5, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-title .casino {
    color: #ffd700;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #fafafa;
}

.hero-description {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    color: #a3a3a3;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

/* Sections */
.section {
    padding: 5rem 1rem;
}

.section-bg {
    background-color: rgba(15, 15, 15, 0.3);
}

.section-title {
    font-size: 2.25rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 4rem;
    color: #fafafa;
}

.section-content {
    max-width: 64rem;
    margin: 0 auto;
    text-align: center;
}

.section-text {
    font-size: 1.125rem;
    color: #a3a3a3;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.feature-card {
    padding: 2rem;
    border: 1px solid rgba(38, 38, 38, 0.5);
    border-radius: 0.5rem;
    text-align: center;
    background: rgba(15, 15, 15, 0.8);
    transition: border-color 0.3s;
}

.feature-card:hover {
    border-color: rgba(255, 215, 0, 0.3);
}

.feature-icon {
    width: 4rem;
    height: 4rem;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, #ffd700, #ffa500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 2rem;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #fafafa;
}

.feature-description {
    color: #a3a3a3;
}

/* Games Grid */
.games-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.game-card {
    border: 1px solid rgba(38, 38, 38, 0.5);
    border-radius: 0.5rem;
    overflow: hidden;
    background: rgba(15, 15, 15, 0.8);
    transition: all 0.3s;
}

.game-card:hover {
    border-color: rgba(255, 215, 0, 0.5);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
}

.game-image {
    width: 100%;
    height: 12rem;
    object-fit: cover;
    transition: transform 0.3s;
}

.game-card:hover .game-image {
    transform: scale(1.1);
}

.game-content {
    padding: 1rem;
}

.game-title {
    font-weight: 600;
    color: #fafafa;
    margin-bottom: 0.5rem;
}

.game-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.875rem;
    color: #a3a3a3;
}

/* Stats */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: #ffd700;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #a3a3a3;
}

/* Bonuses */
.bonus-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 64rem;
    margin: 0 auto;
}

.bonus-card {
    padding: 2rem;
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 0.5rem;
    background: linear-gradient(135deg, rgba(15, 15, 15, 0.8), rgba(15, 15, 15, 0.5));
    text-align: center;
}

.bonus-icon {
    width: 4rem;
    height: 4rem;
    margin: 0 auto 1rem;
    color: #ffd700;
    font-size: 2rem;
}

.bonus-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #fafafa;
}

.bonus-value {
    font-size: 2.5rem;
    font-weight: bold;
    color: #ffd700;
    margin-bottom: 0.5rem;
}

.bonus-description {
    color: #a3a3a3;
    margin-bottom: 1.5rem;
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 165, 0, 0.1));
}

/* Footer */
.footer {
    background-color: rgba(15, 15, 15, 0.5);
    padding: 3rem 1rem;
    border-top: 1px solid rgba(38, 38, 38, 0.3);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #fafafa;
}

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

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

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

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

.footer-bottom {
    border-top: 1px solid rgba(38, 38, 38, 0.3);
    padding-top: 2rem;
    text-align: center;
    color: #a3a3a3;
}

.footer-bottom p {
    margin-bottom: 0.5rem;
}

/* Responsive */
@media (min-width: 768px) {
    .nav-links {
        display: flex;
    }

    .nav-buttons {
        display: flex;
    }

    .mobile-menu-btn {
        display: none;
    }

    .hero-title {
        font-size: 4.5rem;
    }

    .hero-subtitle {
        font-size: 2.25rem;
    }

    .hero-buttons {
        flex-direction: row;
        justify-content: center;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .games-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .bonus-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}