:root {
    --primary: #667eea;
    --secondary: #764ba2;
    --accent: #f093fb;
    --dark: #0f0f23;
    --light: #ffffff;
    --card-bg: rgba(255, 255, 255, 0.1);
    --card-border: rgba(255, 255, 255, 0.2);
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.8);
    --text-muted: rgba(255, 255, 255, 0.6);
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-accent: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --shadow-soft: 0 8px 32px rgba(0, 0, 0, 0.3);
    --shadow-hover: 0 16px 48px rgba(0, 0, 0, 0.4);
}

* {
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Loading Screen */
#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease-out;
}

.loading-content {
    text-align: center;
    color: var(--text-primary);
}

.loading-logo {
    margin-bottom: 2rem;
    animation: logoFloat 3s ease-in-out infinite;
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.loading-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top: 4px solid var(--text-primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 2rem;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading-text {
    font-size: 1.2rem;
    font-weight: 500;
    animation: pulse 2s ease-in-out infinite;
}

.loading-screen-hidden {
    opacity: 0;
    pointer-events: none;
}

/* Animated background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(102, 126, 234, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(118, 75, 162, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(240, 147, 251, 0.05) 0%, transparent 50%);
    z-index: -1;
    animation: backgroundShift 20s ease-in-out infinite;
}

@keyframes backgroundShift {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

/* Modal Styles */
.modal-content {
    background: var(--gradient-primary);
    border: none;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(10px);
}

.modal-body {
    color: var(--text-primary);
    padding: 2rem;
}

.age-verify-icon {
    font-size: 2rem;
    animation: pulse 2s infinite;
}

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

#ageVerificationModal .btn,
#ageRestrictionModal .btn {
    min-width: 120px;
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

#ageVerificationModal .btn::before,
#ageRestrictionModal .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

#ageVerificationModal .btn:hover::before,
#ageRestrictionModal .btn:hover::before {
    left: 100%;
}

#ageVerificationModal .btn:hover,
#ageRestrictionModal .btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

#ageVerificationModal .btn-outline-danger {
    background: transparent;
    border-color: var(--text-primary);
    color: var(--text-primary);
}

#ageVerificationModal .btn-outline-danger:hover {
    background: var(--text-primary);
    color: var(--dark);
}

#ageVerificationModal .btn-success {
    background: var(--gradient-accent);
    border-color: transparent;
    color: var(--text-primary);
}

/* Topbar */
.topbar {
    background: rgba(15, 15, 35, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--card-border);
    position: relative;
    z-index: 1000;
}

.topbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gradient-primary);
}

.topbar span {
    display: inline-block;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Navigation */
.navbar {
    background: rgba(15, 15, 35, 0.95);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--card-border);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 999;
}

.navbar-brand img {
    transition: all 0.3s ease;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.navbar-brand img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.4));
}

/* Hero Section */
.hero {
    background: var(--gradient-primary);
    color: var(--text-primary);
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    background: linear-gradient(45deg, var(--text-primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease-out;
}

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

.hero .lead {
    font-size: 1.4rem;
    max-width: 800px;
    margin: 0 auto 2rem;
    color: var(--text-secondary);
    animation: fadeInUp 1s ease-out 0.3s both;
}

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

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    padding: 1.5rem 2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease-out both;
}

.stat-item:nth-child(1) { animation-delay: 0.8s; }
.stat-item:nth-child(2) { animation-delay: 1s; }
.stat-item:nth-child(3) { animation-delay: 1.2s; }

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--accent);
}

.stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.update-date {
    font-size: 1rem;
    color: var(--accent);
    font-weight: 500;
    animation: fadeInUp 1s ease-out 1.4s both;
}

/* Listings Section */
.listings {
    background: var(--dark);
    padding: 6rem 0;
    position: relative;
}

.offer-card {
    background: var(--card-bg);
    backdrop-filter: blur(15px);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.offer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
}

.offer-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-hover);
    border-color: var(--accent);
}

.offer-card:hover::before {
    background: var(--gradient-accent);
}

.bonus-box {
    background: var(--gradient-secondary);
    padding: 2rem;
    border-radius: 15px;
    color: var(--text-primary);
    position: relative;
    overflow: hidden;
}

.bonus-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(180deg); }
}

.bonus-box h3 {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.bonus-text {
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0;
    position: relative;
    z-index: 1;
}

.score-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--gradient-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    position: relative;
    box-shadow: var(--shadow-soft);
    animation: rotate 10s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.score-circle::before {
    content: '';
    position: absolute;
    inset: 3px;
    background: var(--dark);
    border-radius: 50%;
}

.score-circle span {
    color: var(--text-primary);
    font-size: 1.8rem;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.btn-visit {
    background: var(--gradient-primary);
    border: none;
    padding: 1rem 2.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.btn-visit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn-visit:hover::before {
    left: 100%;
}

.btn-visit:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.disclaimer-text {
    color: var(--text-muted);
    font-size: 0.9rem;
    text-align: center;
    margin: 1rem 0 0;
    font-style: italic;
}

/* Content Sections */
.content-sections {
    background: var(--dark);
    padding: 6rem 0;
}

.content-block {
    background: var(--card-bg);
    backdrop-filter: blur(15px);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 3rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.content-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.content-block:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-soft);
    border-color: var(--primary);
}

.section-title {
    color: var(--text-primary);
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    background: linear-gradient(45deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.content-block p {
    color: var(--text-secondary);
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.tips-list ul, .responsible-gaming ul {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.tips-list li, .responsible-gaming li {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    padding-left: 2rem;
    position: relative;
    font-size: 1.1rem;
    line-height: 1.6;
}

.tips-list li:before, .responsible-gaming li:before {
    content: "✨";
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.2rem;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #000 0%, #1a1a2e 100%);
    color: var(--text-primary);
    border-top: 1px solid var(--card-border);
    padding: 4rem 0 2rem;
    position: relative;
}

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

.footer img {
    max-height: 50px;
    width: auto;
    opacity: 0.8;
    transition: all 0.3s ease;
    filter: grayscale(100%);
}

.footer a:hover img {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.1);
}

.footer .disclaimer-text {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
    max-width: 1000px;
    margin: 0 auto;
}

.footer-links {
    margin: 2rem 0;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 1rem;
    border-radius: 20px;
}

.footer-links a:hover {
    color: var(--accent);
    background: rgba(255, 255, 255, 0.1);
}

.copyright {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 2rem 0 0;
}

/* Cookie Consent */
#cookie-consent {
    position: fixed;
    bottom: 20px;
    right: 20px;
    max-width: 350px;
    background: var(--card-bg);
    backdrop-filter: blur(15px);
    border: 1px solid var(--card-border);
    color: var(--text-primary);
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow-soft);
    font-size: 0.9rem;
    display: none;
    z-index: 1000;
}

#cookie-consent button {
    margin-top: 10px;
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

#accept-cookies {
    background: var(--gradient-primary);
    color: var(--text-primary);
}

#accept-cookies:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-soft);
}

#reject-cookies {
    background: var(--gradient-secondary);
    color: var(--text-primary);
    margin-left: 10px;
}

#reject-cookies:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-soft);
}

/* Hidden tracking link */
.QmpBJaIGwV {
    position: absolute;
    z-index: -5;
    left: 0;
    top: 0;
    color: transparent;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        padding: 4rem 0;
        min-height: 80vh;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero .lead {
        font-size: 1.2rem;
    }

    .hero-stats {
        gap: 1.5rem;
        margin: 1.5rem 0;
    }

    .stat-item {
        padding: 1rem 1.5rem;
        flex: 1;
        min-width: 120px;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }

    .offer-card {
        padding: 1.5rem;
    }

    .bonus-box {
        padding: 1.5rem;
    }

    .score-circle {
        width: 60px;
        height: 60px;
        margin: 1rem auto;
    }

    .score-circle span {
        font-size: 1.4rem;
    }

    .btn-visit {
        width: 100%;
        margin-top: 1rem;
    }

    .content-block {
        padding: 2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .content-block p {
        font-size: 1.1rem;
    }

    .tips-list li, .responsible-gaming li {
        font-size: 1rem;
    }

    .footer img {
        max-height: 35px;
    }

    .footer-links a {
        display: block;
        margin: 10px 0;
        text-align: center;
    }

    #cookie-consent {
        bottom: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
    }
}

@media (max-width: 576px) {
    .topbar span {
        margin: 0.25rem 0;
        font-size: 0.8rem;
        padding: 0.3rem 0.8rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero .lead {
        font-size: 1rem;
    }

    .hero-stats {
        gap: 1rem;
        flex-direction: column;
        align-items: center;
    }

    .stat-item {
        width: 100%;
        max-width: 200px;
        padding: 1rem;
    }

    .offer-card {
        padding: 1rem;
    }

    .bonus-box {
        padding: 1rem;
    }

    .bonus-text {
        font-size: 1.2rem;
    }

    .content-block {
        padding: 1.5rem;
    }

    .section-title {
        font-size: 1.5rem;
    }
}