/* Custom styles for My Empire Casino App */
body {
    font-family: 'Open Sans', 'Roboto', sans-serif;
}

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

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

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

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

::-webkit-scrollbar-thumb:hover {
    background: #6ee7b7;
}

/* 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: #0f172a;
    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;
}

.mobile-menu nav a:hover {
    background-color: rgba(52, 211, 153, 0.1);
    color: #34d399;
}

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

.mobile-menu .mobile-buttons button {
    width: 100%;
}

@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }
    
    header .hidden.md\:flex {
        display: none !important;
    }
    
    header > div > div:last-child.flex {
        display: none;
    }
}

