/* Custom styles for ZetCasino Norway */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;700&family=Roboto:wght@400;500;700&display=swap');

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

/* Gradient backgrounds for game cards */
.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 hover effects */
.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);
}

/* Bold headings */
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: 5px;
}

.burger-menu span {
    transition: all 0.3s ease;
}

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

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

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

@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }
}

/* Mobile menu transition */
.mobile-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.mobile-menu.active {
    max-height: 500px;
}

/* FAQ details styling */
details summary {
    list-style: none;
    cursor: pointer;
}

details summary::-webkit-details-marker {
    display: none;
}

details summary::before {
    content: '+';
    display: inline-block;
    width: 20px;
    font-weight: bold;
    color: #06b6d4;
    margin-right: 10px;
}

details[open] summary::before {
    content: '−';
}

/* Button hover effects */
button {
    transition: all 0.3s ease;
}

/* Table responsive */
@media (max-width: 640px) {
    table {
        font-size: 14px;
    }
    
    table td, table th {
        padding: 8px !important;
    }
}

/* Link transitions */
a {
    transition: color 0.3s ease;
}

/* Image loading optimization */
img {
    max-width: 100%;
    height: auto;
}

/* Progress bar animations */
.progress-bar {
    animation: progressFill 1s ease-out;
}

@keyframes progressFill {
    from {
        width: 0;
    }
}

/* Card shadows */
.card-shadow {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

/* Selection color */
::selection {
    background: #06b6d4;
    color: white;
}

/* Focus styles for accessibility */
a:focus, button:focus, input:focus, select:focus {
    outline: 2px solid #06b6d4;
    outline-offset: 2px;
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Print styles */
@media print {
    header, footer, aside, .burger-menu, button {
        display: none !important;
    }
    
    body {
        background: white;
        color: black;
    }
}

