/* Custom styles for Galactic Wins Casino template */
body {
    background: linear-gradient(180deg, #0a1628 0%, #1a2942 100%);
    font-family: 'Open Sans', 'Roboto', sans-serif;
}

.hero-bg {
    background: linear-gradient(135deg, #1a2942 0%, #0f1d36 100%);
}

.bonus-card {
    background: linear-gradient(135deg, #2a3f5f 0%, #1a2942 100%);
}

.gold-text {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.game-card {
    transition: transform 0.3s ease;
}

.game-card:hover {
    transform: translateY(-5px);
}

h1, h2, h3, h4, h5, h6 {
    font-weight: bold;
}

/* Custom scrollbar for webkit browsers */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #0a1628;
}

::-webkit-scrollbar-thumb {
    background: #ffd700;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #ffed4e;
}

/* Mobile Burger Menu */
.burger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
}

.burger-menu span {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.burger-menu.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
}

.burger-menu.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
}

.mobile-menu.active {
    display: block;
}

.mobile-menu nav {
    padding: 1rem;
}

.mobile-menu nav a {
    display: block;
    padding: 0.75rem 1rem;
    color: white;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: background-color 0.3s, color 0.3s;
}

.mobile-menu nav a:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffd700;
}

.mobile-menu .mobile-buttons {
    padding: 1rem;
    display: flex;
    gap: 0.5rem;
    flex-direction: column;
}

.mobile-menu .mobile-buttons button,
.mobile-menu .mobile-buttons a {
    flex: 1;
}

@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }
    
    header .hidden.md\:flex {
        display: none !important;
    }
    
    header > .container > .flex > .flex.items-center.space-x-3 {
        display: none !important;
    }
}

