:root {
    /* SpinBit Casino Brand Colors - Gold Theme */
    --spinbit-gold: #ffd700;
    --spinbit-gold-light: #ffed4e;
    --spinbit-gold-dark: #ffb800;
    --spinbit-orange: #ff6b35;
    --spinbit-purple: #764ba2;
    
    /* Base Colors - Softer Dark Background */
    --primary: #0f0c29;
    --secondary: #302b63;
    --tertiary: #24243e;
    --accent: #ffd700;
    --accent-light: #ffed4e;
    --text: #ffffff;
    --text-muted: #e0e0e0;
    --text-light: #f5f5f5;
    
    /* Borders and Shadows */
    --border-color: rgba(255, 215, 0, 0.3);
    --border-hover: rgba(255, 215, 0, 0.6);
    
    /* Gradients - SpinBit Style */
    --gradient-hero: linear-gradient(135deg, #0f0c29 0%, #302b63 50%, #24243e 100%);
    --gradient-card: linear-gradient(135deg, rgba(15, 12, 41, 0.95) 0%, rgba(48, 43, 99, 0.9) 100%);
    --gradient-gold: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    --gradient-banner: linear-gradient(135deg, #ff6b35 0%, #764ba2 100%);
    --gradient-gold-text: linear-gradient(135deg, #ffd700, #ffed4e, #ffd700);
    
    /* Shadows - Gold Glow */
    --shadow-glow: 0 0 30px rgba(255, 215, 0, 0.2);
    --shadow-glow-hover: 0 0 40px rgba(255, 215, 0, 0.4);
    --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.5);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #0f0c29 0%, #302b63 50%, #24243e 100%);
    background-attachment: fixed;
    color: var(--text);
    line-height: 1.7;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: rgba(15, 12, 41, 0.98);
    backdrop-filter: blur(12px);
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid var(--border-color);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    text-decoration: none;
}

.nav {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav a {
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav a:hover,
.nav a.active {
    color: var(--accent);
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-gold);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.nav a:hover::after,
.nav a.active::after {
    width: 100%;
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--accent);
    font-size: 2rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.mobile-menu-toggle:hover {
    color: var(--accent-light);
}

.mobile-nav {
    display: none;
    background: rgba(26, 26, 46, 0.98);
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    padding: 1rem 0;
    border-bottom: 2px solid var(--border-color);
}

.mobile-nav.active {
    display: block;
}

.mobile-nav ul {
    list-style: none;
}

.mobile-nav li {
    padding: 0.75rem 1.5rem;
}

.mobile-nav a {
    color: var(--text);
    text-decoration: none;
    font-size: 1.1rem;
    display: block;
}

.mobile-nav a:hover,
.mobile-nav a.active {
    color: var(--accent);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--gradient-gold);
    color: #0f0c29;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
    background: linear-gradient(135deg, #ffed4e 0%, #ffd700 100%);
}

.btn-success {
    background: var(--gradient-gold);
    color: #0f0c29;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
}

.btn-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.5);
    background: linear-gradient(135deg, #ffed4e 0%, #ffd700 100%);
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 80px 0;
}

/* Hero Banner with Background Image */
.hero-banner {
    position: relative;
    width: 100%;
    min-height: 500px;
    background-image: url('/assets/3.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 12, 41, 0.85) 0%, rgba(48, 43, 99, 0.6) 50%, rgba(15, 12, 41, 0.85) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-banner .container {
    position: relative;
    z-index: 2;
}

.hero-banner .hero-content {
    text-align: center;
    padding: 60px 20px;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: var(--gradient-gold-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s infinite;
    font-weight: 800;
    letter-spacing: -0.5px;
}

@keyframes shimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Slots Grid */
.slots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.slot-card {
    background: var(--gradient-card);
    border-radius: 16px;
    padding: 1.5rem;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
    text-align: center;
    box-shadow: var(--shadow-card);
}

.slot-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-glow-hover);
    border-color: var(--accent);
    background: linear-gradient(135deg, rgba(15, 12, 41, 0.98) 0%, rgba(48, 43, 99, 0.95) 100%);
}

.slot-card h3 {
    color: var(--accent);
    margin: 1rem 0 0.5rem;
    font-size: 1.3rem;
    font-weight: 700;
}

.slot-card p {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.slot-image {
    margin-bottom: 1rem;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.slot-card:hover .slot-image {
    transform: scale(1.05);
}

/* Sections */
.section {
    padding: 80px 0;
}

.section h2 {
    font-size: 2.5rem;
    margin-bottom: 2.5rem;
    text-align: center;
    color: var(--text-light);
    font-weight: 700;
    letter-spacing: -0.5px;
}

.section h3 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--accent);
    font-weight: 600;
}

.section p {
    margin-bottom: 1rem;
    line-height: 1.9;
    color: var(--text-light);
    font-size: 1.05rem;
}

.section ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.section li {
    margin-bottom: 0.5rem;
    line-height: 1.8;
}

    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 40px 0;
    }
    
    .hero-content h1 {
        font-size: 1.5rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .section {
        padding: 40px 0;
    }
    
    .slot-card {
        padding: 1rem;
    }
}

/* Additional Casino Styling */
.game-provider-logo {
    max-width: 150px;
    height: auto;
    margin: 1rem;
}

.bonus-badge {
    background: var(--gradient-gold);
    color: #0f0c29;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    display: inline-block;
    margin: 0.5rem 0;
    box-shadow: 0 2px 10px rgba(255, 215, 0, 0.3);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slot-card {
    animation: fadeInUp 0.6s ease-out;
}

.slot-card:nth-child(1) { animation-delay: 0.1s; }
.slot-card:nth-child(2) { animation-delay: 0.2s; }
.slot-card:nth-child(3) { animation-delay: 0.3s; }
.slot-card:nth-child(4) { animation-delay: 0.4s; }
.slot-card:nth-child(5) { animation-delay: 0.5s; }
.slot-card:nth-child(6) { animation-delay: 0.6s; }
.slot-card:nth-child(7) { animation-delay: 0.7s; }
.slot-card:nth-child(8) { animation-delay: 0.8s; }

/* Game Grid Styles */
.game-grid-6 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.game-card {
    background: var(--gradient-card);
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: var(--shadow-card);
}

.game-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-glow-hover);
    border-color: var(--accent);
}

.game-image {
    width: 100%;
    overflow: hidden;
    background: var(--gradient-banner);
}

.game-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.game-card:hover .game-image img {
    transform: scale(1.1);
}

.game-info {
    padding: 1.5rem;
    text-align: center;
}

.game-info h3 {
    color: var(--accent);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    font-weight: 700;
}

.game-info p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Fixed Mobile CTA - Updated */
.mobile-cta-fixed {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: rgba(15, 12, 41, 0.98);
    backdrop-filter: blur(12px);
    padding: 0.75rem 0;
    border-top: 2px solid var(--accent);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
    z-index: 999;
}

  .footer-content {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }

    .footer-bottom {
        text-align: center;
        margin-top: 1rem;
        font-size: 0.9rem;
        color: var(--text-muted);
    }

.mobile-cta-fixed .btn {
    width: calc(100% - 2rem);
    margin: 0 1rem;
    padding: 1rem;
    font-size: 1rem;
    font-weight: 700;
    animation: pulse 2s infinite;
    border-radius: 8px;
    display: block;
    text-align: center;
}

@keyframes pulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
    }
    50% { 
        transform: scale(1.02);
        box-shadow: 0 6px 25px rgba(255, 215, 0, 0.6);
    }
}

/* Responsive Design - Updated */
@media (max-width: 768px) {
    .nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .header-actions {
        display: none;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .slots-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .section h2 {
        font-size: 1.8rem;
    }
    
    .section h3 {
        font-size: 1.4rem;
    }
    
    .mobile-cta-fixed {
        display: block;
    }
    
    main {
        padding-bottom: 80px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }


    
    .game-grid-6 {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 40px 0;
    }
    
    .hero-content h1 {
        font-size: 1.5rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .section {
        padding: 40px 0;
    }
    
    .slot-card {
        padding: 1rem;
    }
    
    .mobile-cta-fixed .btn {
        font-size: 0.95rem;
        padding: 0.9rem;
    }
}

/* Footer Link Color Fix */
.footer-section a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--accent);
}

/* Override any default link styles */
a {
    color: inherit;
    text-decoration: none;
}



.footer-section ul li a {
    color: var(--text-muted);
}

.footer-section ul li a:hover {
    color: var(--accent);
}
