@import url('https://fonts.googleapis.com/css2?family=Delius&family=Princess+Sofia&display=swap');

:where([class^="ri-"])::before {
    content: "\f3c2";
}

body {
    background-color: #1A1A1A;
    color: #ffffff;
    font-family: 'Delius', cursive;
}

.logo {
    font-family: 'Princess Sofia', cursive;
}

.forest-gradient {
    background: linear-gradient(135deg, #1E4D2B 0%, #2C5A34 50%, #1A1A1A 100%);
}

.gold-glow {
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.particle-effect {
    position: relative;
    overflow: hidden;
}

.particle-effect::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(2px 2px at 20px 30px, rgba(255, 215, 0, 0.3), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(255, 215, 0, 0.2), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(255, 215, 0, 0.4), transparent);
    background-repeat: repeat;
    background-size: 100px 100px;
    animation: float 20s infinite linear;
    pointer-events: none;
}

@keyframes float {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(-100px, -100px);
    }
}

.slot-reel {
    background: linear-gradient(45deg, #2C5A34, #1E4D2B);
    border: 2px solid #FFD700;
    animation: spin 3s infinite linear;
}

@keyframes spin {
    0% {
        transform: rotateY(0deg);
    }

    100% {
        transform: rotateY(360deg);
    }
}

.mobile-menu {
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out;
    backdrop-filter: blur(10px);
}

.mobile-menu.active {
    transform: translateX(0);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    padding: 20px;
    transition: max-height 0.3s ease-in-out;
    display: none;
}

.accordion-content.active {
    max-height: 200px;
    display: block;
}