/* Custom styles for Rocket Casino Suomi template */
@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: linear-gradient(180deg, #0a0a1f 0%, #1a0a2e 50%, #0f0f2a 100%);
    min-height: 100vh;
}

/* Header Background */
.header-bg {
    background: rgba(10, 10, 31, 0.95);
    backdrop-filter: blur(10px);
}

/* Sidebar Background */
.sidebar-bg {
    background: linear-gradient(180deg, rgba(88, 28, 135, 0.3) 0%, rgba(30, 10, 60, 0.5) 100%);
    border: 1px solid rgba(147, 51, 234, 0.2);
}

/* Card Background */
.card-bg {
    background: linear-gradient(135deg, rgba(88, 28, 135, 0.2) 0%, rgba(30, 10, 60, 0.4) 100%);
    border: 1px solid rgba(147, 51, 234, 0.2);
}

/* Hero Gradient */
.hero-gradient {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 50%, #c2410c 100%);
}

/* Bonus Card */
.bonus-card {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.2) 0%, rgba(147, 51, 234, 0.3) 100%);
    border: 1px solid rgba(249, 115, 22, 0.3);
}

/* Footer Background */
.footer-bg {
    background: rgba(10, 10, 31, 0.95);
}

/* Gold Text Gradient */
.gold-text {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 50%, #d97706 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Game Card Gradients */
.gradient-purple {
    background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
}

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

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

.gradient-blue {
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
}

.gradient-green {
    background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
}

/* Game Card Hover Effect */
.game-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(249, 115, 22, 0.3);
}

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

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

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

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #f97316 0%, #ea580c 100%);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #fb923c 0%, #f97316 100%);
}

/* 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 */
.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(10, 10, 31, 0.98);
    border-top: 1px solid rgba(147, 51, 234, 0.3);
    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(147, 51, 234, 0.2);
    transition: background-color 0.3s, color 0.3s;
}

.mobile-menu nav a:hover {
    background-color: rgba(147, 51, 234, 0.2);
    color: #f97316;
}

.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;
    }
}

/* Pulse Animation */
.animate-pulse {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

/* 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: #f97316;
    transition: transform 0.3s;
}

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

/* Table Styling */
table {
    border-collapse: collapse;
}

table tr:hover {
    background-color: rgba(147, 51, 234, 0.1);
}

/* Button Hover Effects */
button {
    transition: all 0.3s ease;
}

button:hover {
    transform: translateY(-2px);
}

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

/* Image Lazy Loading Placeholder */
img {
    background-color: rgba(147, 51, 234, 0.1);
}

/* Selection Color */
::selection {
    background-color: #f97316;
    color: white;
}

