/* Custom styles for Duelz Casino Suomi template */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

body {
    font-family: 'Inter', 'Open Sans', 'Roboto', sans-serif;
    background: #0a0e1a;
}

.gradient-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.gradient-pink {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.gradient-orange {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.gradient-blue {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.gradient-green {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

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

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

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

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

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

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

::-webkit-scrollbar-thumb:hover {
    background: #0891b2;
}

/* 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: #111827;
    border-top: 1px solid #374151;
    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 #374151;
    transition: background-color 0.3s;
}

.mobile-menu nav a:hover {
    background-color: #1f2937;
    color: #06b6d4;
}

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

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

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

