/* Quatro Casino Slovenija - Custom Styles */

body {
    font-family: 'Open Sans', 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', Oxygen, Ubuntu, Cantarell, sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Roboto', 'Open Sans', sans-serif;
    font-weight: 700;
}

/* Gradient Backgrounds */
.gradient-green {
    background: linear-gradient(135deg, #00d68f 0%, #00b377 100%);
}

.gradient-blue {
    background: linear-gradient(135deg, #0066ff 0%, #0047b3 100%);
}

/* Card Hover Effects */
.card-hover {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

::-webkit-scrollbar-track {
    background: #111827;
}

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

::-webkit-scrollbar-thumb:hover {
    background: #00b377;
}

/* Details/Summary Styling */
details summary {
    list-style: none;
}

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

details summary::after {
    content: '▼';
    float: right;
    color: #00d68f;
    transition: transform 0.3s ease;
}

details[open] summary::after {
    transform: rotate(180deg);
}

/* Mobile Menu */
@media (max-width: 768px) {
    .burger-menu {
        display: flex;
        flex-direction: column;
        cursor: pointer;
    }
    
    header .hidden.md\:flex {
        display: none !important;
    }
}

/* Smooth Transitions */
a, button {
    transition: all 0.3s ease;
}

/* Focus States */
a:focus, button:focus {
    outline: 2px solid #00d68f;
    outline-offset: 2px;
}

/* Table Responsive */
@media (max-width: 768px) {
    table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
}

/* Image Lazy Loading Placeholder */
img {
    background-color: #1f2937;
}

/* Selection Color */
::selection {
    background-color: #00d68f;
    color: #111827;
}

/* Print Styles */
@media print {
    nav, footer, .gradient-green button, .gradient-blue button {
        display: none !important;
    }
    
    body {
        background: white;
        color: black;
    }
}

