* {
    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;
}

/* Sidebar */
.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 320px;
    background-color: rgba(15, 15, 15, 0.95);
    backdrop-filter: blur(16px);
    border-right: 1px solid rgba(38, 38, 38, 0.3);
    z-index: 40;
    transform: translateX(-100%);
    transition: transform 0.3s;
    overflow-y: auto;
}

.sidebar.open {
    transform: translateX(0);
}

.sidebar-content {
    padding: 1.5rem;
}

.sidebar-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.sidebar-header img {
    /* width: 40px; */
    height: 40px;
}

.sidebar-title {
    font-size: 1.5rem;
    font-weight: bold;
}

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

.sidebar-casino {
    color: #ffd700;
}

.sidebar-nav {
    margin-bottom: 2rem;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    border-radius: 0.5rem;
    color: #a3a3a3;
    text-decoration: none;
    transition: all 0.3s;
    margin-bottom: 0.5rem;
}

.nav-item:hover {
    color: #ffd700;
    background-color: rgba(255, 215, 0, 0.1);
}

.nav-item .icon {
    font-size: 1.25rem;
}

.sidebar-buttons {
    margin-bottom: 2rem;
}

.sidebar-buttons .btn {
    width: 100%;
    margin-bottom: 0.75rem;
    justify-content: flex-start;
}

.sidebar-bonus {
    padding: 1rem;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 165, 0, 0.2));
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 0.5rem;
}

.sidebar-bonus h4 {
    font-weight: 600;
    color: #fafafa;
    margin-bottom: 0.5rem;
}

.sidebar-bonus p {
    font-size: 0.875rem;
    color: #a3a3a3;
    margin-bottom: 0.75rem;
}

/* Mobile menu button */
.mobile-menu-btn {
    position: fixed;
    top: 1rem;
    left: 1rem;
    z-index: 50;
    background-color: rgba(15, 15, 15, 0.9);
    backdrop-filter: blur(8px);
    padding: 0.75rem;
    border-radius: 0.5rem;
    border: 1px solid rgba(38, 38, 38, 0.3);
    color: #fafafa;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Main content */
.main-content {
    margin-left: 0;
    transition: margin-left 0.3s;
}

.overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 30;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.overlay.show {
    opacity: 1;
    visibility: visible;
}

/* Button styles */
.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;
}

.btn-sm {
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.8)), url('/assets/img/bg.webp');
    background-size: cover;
    background-position: center;
}

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

.hero-sparkle {
    width: 4rem;
    height: 4rem;
    color: #ffd700;
    margin: 0 auto 2rem;
    animation: pulse 2s infinite;
    font-size: 4rem;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }
}

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

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

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
    color: #ffd700;
    letter-spacing: 0.1em;
}

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

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

/* Sections */
.section {
    padding: 6rem 1.5rem;
}

.section-container {
    max-width: 96rem;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-icon {
    width: 5rem;
    height: 5rem;
    color: #ffd700;
    margin: 0 auto 1.5rem;
    font-size: 5rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 2rem;
    color: #fafafa;
}

.section-description {
    font-size: 1.25rem;
    color: #a3a3a3;
    max-width: 48rem;
    margin: 0 auto;
}

/* About section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
}

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

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.advantage-card {
    padding: 1.5rem;
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 0.5rem;
    text-align: center;
    background: rgba(15, 15, 15, 0.8);
    transition: border-color 0.3s;
}

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

.advantage-icon {
    width: 3rem;
    height: 3rem;
    color: #ffd700;
    margin: 0 auto 1rem;
    font-size: 3rem;
    transition: transform 0.3s;
}

.advantage-card:hover .advantage-icon {
    transform: scale(1.1);
}

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

.advantage-description {
    font-size: 0.875rem;
    color: #a3a3a3;
}

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

.game-card {
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 0.5rem;
    overflow: hidden;
    background: rgba(15, 15, 15, 0.8);
    transition: all 0.3s;
    position: relative;
    group: true;
}

.game-card:hover {
    border-color: rgba(255, 215, 0, 0.6);
    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-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.game-card:hover .game-overlay {
    opacity: 1;
}

.game-play-btn {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.3s;
}

.game-card:hover .game-play-btn {
    opacity: 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: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.stat-card {
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 0.5rem;
    padding: 2rem;
    text-align: center;
    background: rgba(15, 15, 15, 0.8);
    transition: all 0.3s;
}

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

.stat-icon {
    width: 4rem;
    height: 4rem;
    color: #ffd700;
    margin: 0 auto 1rem;
    font-size: 4rem;
    transition: transform 0.3s;
}

.stat-card:hover .stat-icon {
    transform: scale(1.1);
}

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

.stat-label {
    color: #a3a3a3;
}

/* Bonuses */
.bonus-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
}

.bonus-card {
    padding: 3rem;
    border: 1px solid rgba(255, 215, 0, 0.5);
    border-radius: 0.5rem;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 165, 0, 0.1));
    text-align: center;
    transition: border-color 0.3s;
}

.bonus-card:hover {
    border-color: #ffd700;
}

.bonus-icon {
    width: 5rem;
    height: 5rem;
    color: #ffd700;
    margin: 0 auto 1.5rem;
    font-size: 5rem;
    transition: transform 0.3s;
}

.bonus-card:hover .bonus-icon {
    transform: scale(1.1);
}

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

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

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

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

.cta-icon {
    width: 6rem;
    height: 6rem;
    color: #ffd700;
    margin: 0 auto 2rem;
    font-size: 6rem;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 2rem;
    color: #fafafa;
}

.cta-description {
    font-size: 1.5rem;
    color: #a3a3a3;
    margin-bottom: 3rem;
    line-height: 1.6;
}

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

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
    max-width: 96rem;
    margin-left: auto;
    margin-right: auto;
}

.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;
    max-width: 96rem;
    margin: 0 auto;
}

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

/* Responsive */
@media (min-width: 768px) {
    .sidebar {
        transform: translateX(0);
    }

    .main-content {
        margin-left: 320px;
    }

    .footer {
        margin-left: 320px;
    }

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

    .hero-title {
        font-size: 4rem;
        line-height: 1.5;
    }

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

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

    .about-grid {
        grid-template-columns: 1fr 1fr;
    }

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

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

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

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

    .section-title {
        font-size: 3.75rem;
    }

    .cta-title {
        font-size: 4.375rem;
    }
}