/* Base Styles & Variables */
:root {
    /* Colors */
    --primary-color: #0a1a35;      /* Dark blue */
    --secondary-color: #d4af37;    /* Gold */
    --accent-color: #1e2a4a;       /* Lighter blue */
    --text-color: #ffffff;         /* White */
    --text-secondary: #b3b9c5;     /* Light gray */
    --dark-overlay: rgba(0, 0, 0, 0.7);
    --success-color: #28a745;
    --danger-color: #dc3545;
    --warning-color: #ffc107;
    --info-color: #17a2b8;
    
    /* Typography */
    --font-primary: 'Poppins', sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    
    /* Border Radius */
    --border-radius-sm: 4px;
    --border-radius: 8px;
    --border-radius-lg: 12px;
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-gold: 0 0 15px rgba(212, 175, 55, 0.5);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    color: var(--text-color);
    background-color: var(--primary-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
}

a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: #f0c14b;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.75rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    min-width: 180px;
    text-decoration: none !important;
}

/* Primary Button - Gold */
.btn-primary {
    background: linear-gradient(135deg, #d4af37 0%, #b08d26 100%);
    color: #0a1a35 !important;
    border: none;
    box-shadow: 0 4px 15px rgba(176, 141, 38, 0.3);
    position: relative;
    z-index: 1;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #e6c05e 0%, #c9a42b 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(176, 141, 38, 0.5);
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(176, 141, 38, 0.3);
}

/* Secondary Button - Dark Blue */
.btn-secondary {
    background: linear-gradient(135deg, #1e2a4a 0%, #0a1a35 100%);
    color: #ffffff !important;
    border: 2px solid #2a3a5f;
    box-shadow: 0 4px 15px rgba(10, 26, 53, 0.2);
    position: relative;
    z-index: 1;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #2a3a5f 0%, #1a2a55 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(10, 26, 53, 0.3);
    border-color: #3a4a7f;
}

.btn-secondary:hover::before {
    opacity: 1;
}

.btn-secondary:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(10, 26, 53, 0.2);
}

/* Outline Button - Gold Outline */
.btn-outline {
    background: transparent;
    color: #ffffff !important;
    border: 2px solid #d4af37;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.btn-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.btn-outline:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: #e6c05e;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.2);
}

.btn-outline:hover::before {
    opacity: 1;
}

.btn-outline:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(212, 175, 55, 0.1);
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    min-width: 220px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--primary-color);
    box-shadow: var(--shadow);
    z-index: 1000;
    padding: 1rem 0;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 50px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-color);
    font-weight: 500;
    position: relative;
}

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

.nav-links a:hover::after,
.nav-links a:focus::after {
    width: 100%;
}

.header-cta {
    display: flex;
    gap: 1rem;
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    margin: 5px 0;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    text-align: center;
    padding: 4rem 0 2rem;
    position: relative;
    overflow: hidden;
    margin-top: 0;
    background: linear-gradient(135deg, #0a1a35 0%, #1e2a4a 100%);
    color: #ffffff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.15) 0%, transparent 25%),
        radial-gradient(circle at 80% 70%, rgba(212, 175, 55, 0.15) 0%, transparent 25%);
    z-index: 1;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 30%;
    background: linear-gradient(to top, rgba(10, 26, 53, 0.9) 0%, rgba(10, 26, 53, 0) 100%);
    z-index: 1;
    pointer-events: none;
}

/* Hero section animation removed for stability */

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
    text-align: center;
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1 {
    font-size: 3rem;
    margin: 0 0 1.5rem 0;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: -0.5px;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero p {
    font-size: 1.4rem;
    margin: 0 0 2.5rem 0;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
    line-height: 1.6;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin: 2.5rem 0 1rem 0;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

/* Games Section */
.games-section {
    position: relative;
    overflow: hidden;
    padding: 3rem 0;
    background: linear-gradient(180deg, #0a1a35 0%, #0f2547 100%);
}

.games-section h2 {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.games-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--secondary-color);
    border-radius: 2px;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 15px;
    margin: 30px 0;
}

.game-card {
    display: block;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    aspect-ratio: 1/1;
}

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.game-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}

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

.games-cta {
    margin-top: 3rem;
    text-align: center;
}

/* Responsive grid */
@media (max-width: 1200px) {
    .games-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .games-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .games-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Promo Banners */
.promo-banner {
    padding: 3.5rem 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    color: var(--text-color);
    text-align: center;
    margin: 2rem 0;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.promo-banner:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.promo-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(10, 15, 25, 0.85) 0%, rgba(10, 15, 25, 0.7) 100%);
}

.banner-1 {
    background-image: url('../assets/banners/banner-1.jpeg');
    background-position: center 30%;
}

.banner-2 {
    background-image: url('../assets/banners/banner-2.jpeg');
    background-position: center 40%;
}

.banner-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    padding: 2.5rem var(--spacing-md);
}

.banner-badge {
    display: inline-block;
    background-color: var(--secondary-color);
    color: #000;
    font-weight: 800;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.2rem;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.banner-content h2 {
    font-size: 2.5rem;
    margin: 0.5rem 0 1rem;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
    font-weight: 700;
}

.banner-subtitle {
    font-size: 1.3rem;
    margin: 0 auto 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    max-width: 600px;
    line-height: 1.5;
}

.banner-features {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    margin: 2.5rem 0;
    flex-wrap: wrap;
}

.banner-features span {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-weight: 500;
    color: #fff;
    font-size: 0.95rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.banner-features span:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.banner-features i {
    color: var(--secondary-color);
    font-size: 1.1rem;
}

.banner-features i {
    color: var(--secondary-color);
}

.banner-terms {
    font-size: 0.8rem;
    opacity: 0.8;
    margin-top: 1.5rem;
}

.jackpot-amount {
    margin: 2rem 0;
}

.jackpot-amount .amount {
    display: block;
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--secondary-color);
    line-height: 1;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.jackpot-amount .amount-label {
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.9;
}

/* Bonuses Section */
.bonuses-section {
    padding: 5rem 0;
    background-color: var(--primary-color);
}

.bonuses-section {
    padding: 5rem 0;
    position: relative;
}

.bonuses-section h2 {
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.section-subtitle {
    text-align: center;
    color: #a0a8b8;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.bonus-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.bonus-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.bonus-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(212, 175, 55, 0.3);
}

.bonus-card i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.bonus-card h3 {
    margin: 0 0 1rem 0;
    color: var(--secondary-color);
    font-size: 1.5rem;
}

.bonus-card p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #fff;
    font-weight: 500;
}



.bonus-card .btn {
    margin-top: auto;
    width: 100%;
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
}

/* Featured Card */
.bonus-card.featured {
    border: 1px solid var(--secondary-color);
    transform: translateY(-10px);
}

.bonus-card.featured .popular-tag {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--secondary-color);
    color: #000;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 1rem;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.bonus-card.featured .btn {
    background: var(--secondary-color);
    color: #000;
    font-weight: 600;
}

.bonus-card.featured .btn:hover {
    transform: none;
}

/* FAQ Section */
.faq-section {
    padding: 6rem 0;
    background-color: var(--accent-color);
    position: relative;
    overflow: hidden;
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-color);
    font-size: 2.25rem;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.faq-section h2:after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background: var(--secondary-color);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.faq-section .section-subtitle {
    margin-bottom: 4rem;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.faq-item {
    margin-bottom: 1.25rem;
    border-radius: var(--border-radius);
    overflow: hidden;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(212, 175, 55, 0.2);
}

.faq-item.active {
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-color: rgba(212, 175, 55, 0.3);
}

.faq-question {
    width: 100%;
    padding: 1.75rem 2rem;
    text-align: left;
    background: transparent;
    border: none;
    color: var(--text-color);
    font-family: var(--font-primary);
    font-size: 1.15rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    position: relative;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.03);
}

.faq-question h3 {
    margin: 0;
    font-size: 1.15rem;
    font-weight: 500;
    color: #fff;
    transition: color 0.3s ease;
}

.faq-item.active .faq-question h3 {
    color: var(--secondary-color);
}

.faq-toggle {
    font-size: 1.5rem;
    color: var(--secondary-color);
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-left: 1.5rem;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
}

.faq-answer {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    color: #c9d1e0;
    line-height: 1.7;
    font-size: 1.05rem;
}

.faq-answer p {
    margin-bottom: 1.25rem;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-item.active .faq-answer {
    padding: 0 2rem 2rem;
    max-height: 1000px;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
    background: var(--secondary-color);
    color: #000;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .faq-section {
        padding: 4rem 0;
    }
    
    .faq-question {
        padding: 1.5rem 1.25rem;
        font-size: 1.05rem;
    }
    
    .faq-answer {
        padding: 0 1.25rem !important;
        font-size: 1rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 1.25rem 1.5rem !important;
    }
}

/* SEO Section */
.seo-section {
    padding: 4rem 0;
    background-color: var(--primary-color);
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
}

.seo-section h1,
.seo-section h2,
.seo-section h3,
.seo-section h4,
.seo-section h5,
.seo-section h6 {
    color: var(--text-color);
    margin: 1.5rem 0 1rem;
}

.seo-section p {
    margin-bottom: 1.2rem;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--secondary-color);
    color: #0a1a35;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background-color: #e6c04d;
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* Other Casinos Section */
.other-casinos {
    background-color: #0f1f3d;
    padding: 3rem 0;
    color: #ffffff;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.other-casinos h3 {
    color: #d4af37;
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.other-casinos p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.casino-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.8rem;
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(10, 26, 53, 0.5);
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.casino-links a {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    background: rgba(212, 175, 55, 0.1);
    color: #d4af37;
    text-decoration: none;
    font-weight: 500;
    border-radius: 50px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
    white-space: nowrap;
    font-size: 0.9rem;
}

.casino-links a:hover {
    background: rgba(212, 175, 55, 0.2);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.15);
    border-color: rgba(212, 175, 55, 0.5);
    text-decoration: none;
}

/* Footer */
.footer {
    background: #0a0f1a;
    color: #a0a8b8;
    padding: 4rem 0 2rem;
    position: relative;
    z-index: 1;
    margin-top: 3rem;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--primary-color));
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2rem;
    text-align: center;
}

.footer-logo {
    max-width: 200px;
    margin-bottom: 1.5rem;
}

.footer-logo-img {
    width: 100%;
    height: auto;
    margin-bottom: 1rem;
}

.footer-logo p {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-top: 0.5rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem 2rem;
    margin: 1.5rem 0;
    padding: 0 1rem;
}

.footer-links a {
    color: #a0a8b8;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease;
    white-space: nowrap;
    position: relative;
    padding: 0.25rem 0;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: var(--secondary-color);
}

.footer-links a:hover::after {
    width: 100%;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1.5rem 0;
    text-align: center;
}

.payment-methods {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.payment-methods i {
    font-size: 2rem;
    color: #a0a8b8;
}

.copyright {
    font-size: 0.8rem;
    color: #6b7280;
    line-height: 1.5;
}

.responsible-gaming {
    margin-top: 1.5rem;
}

.responsible-gaming-img,
.age-restriction-img {
    display: inline-block;
    margin: 0 0.5rem;
    height: 40px;
    width: auto;
}

/* Responsive Styles */
@media (max-width: 992px) {
    html {
        font-size: 15px;
    }
    
    .games-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    }
    
    .bonus-cards {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
        position: fixed;
        top: 1.5rem;
        right: 1.5rem;
        z-index: 1001;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: rgba(10, 26, 53, 0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: all 0.4s ease;
        z-index: 1000;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-20px);
        padding: 2rem;
    }
    
    .nav-links a {
        font-size: 1.5rem;
        padding: 1rem 1.5rem;
        margin: 0.5rem 0;
        display: block;
        width: 100%;
        text-align: center;
        position: relative;
    }
    
    .nav-links a::after {
        bottom: 0.5rem;
        height: 3px;
    }
    
    .nav-links.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    
    .nav-links li {
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.4s ease;
    }
    
    .nav-links.active li {
        opacity: 1;
        transform: translateY(0);
        transition-delay: 0.2s;
    }
    
    .nav-links li:nth-child(2) { transition-delay: 0.1s; }
    .nav-links li:nth-child(3) { transition-delay: 0.2s; }
    .nav-links li:nth-child(4) { transition-delay: 0.3s; }
    .nav-links li:nth-child(5) { transition-delay: 0.4s; }
    
    .header-cta {
        display: none;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.25rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .games-grid {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
        gap: 1rem;
    }
    
    .banner-content h2 {
        font-size: 2rem;
    }
    
    .banner-content p {
        font-size: 1.1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-links h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .contact-info {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    html {
        font-size: 14px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .btn {
        padding: 0.6rem 1.2rem;
    }
    
    .btn-lg {
        padding: 0.8rem 1.5rem;
    }
    
    .games-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .bonus-cards {
        grid-template-columns: 1fr;
    }
}
