/* Wild Jack Casino NZ - Custom Styles */
body {
    font-family: 'Open Sans', 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', Oxygen, Ubuntu, Cantarell, sans-serif;
}

/* Custom Gradients */
.gradient-gold {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.gradient-crimson {
    background: linear-gradient(135deg, #b91c1c 0%, #991b1b 100%);
}

.gradient-amber {
    background: linear-gradient(135deg, #f59e0b 0%, #b45309 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(245, 158, 11, 0.2);
}

/* Game Card Hover */
.game-card:hover {
    border-color: rgba(245, 158, 11, 0.5);
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
}

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

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

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

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

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

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

details summary::after {
    content: '+';
    float: right;
    font-size: 1.5rem;
    font-weight: bold;
    color: #f59e0b;
    transition: transform 0.3s ease;
}

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

/* Prose Styling for Content */
.prose a {
    color: #f59e0b;
    text-decoration: none;
}

.prose a:hover {
    text-decoration: underline;
}

/* Button Focus States */
button:focus {
    outline: 2px solid #f59e0b;
    outline-offset: 2px;
}

/* Mobile Menu Animation */
#mobileMenu {
    transition: max-height 0.3s ease;
}

/* Image Lazy Load Fade In */
img[loading="lazy"] {
    opacity: 0;
    transition: opacity 0.3s ease;
}

img[loading="lazy"].loaded,
img[loading="lazy"]:not([data-src]) {
    opacity: 1;
}

/* Game Icon Placeholders */
.game-card img {
    opacity: 1;
}

/* Rating Stars */
.rating-stars {
    color: #f59e0b;
    letter-spacing: 2px;
}

/* Footer Links */
footer a {
    transition: color 0.2s ease;
}

/* Responsive Typography */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
}

/* Animation for Hero Elements */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* Pulse Animation for CTA Buttons */
@keyframes pulse-amber {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.4);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(245, 158, 11, 0);
    }
}

.pulse-cta {
    animation: pulse-amber 2s infinite;
}

/* Selection Color */
::selection {
    background: #f59e0b;
    color: #111827;
}

/* Focus Visible for Accessibility */
:focus-visible {
    outline: 2px solid #f59e0b;
    outline-offset: 2px;
}

