/*
Theme Name: Unlimit Casino
Theme URI: https://unlimitcasinos.se
Author: Unlimit Casino
Author URI: https://unlimitcasinos.se
Description: Modern dark-themed casino and sportsbook landing page with vibrant green accents
Version: 1.0.0
Text Domain: unlimit-casino
*/

/* ============================================
   RESET & BASE STYLES
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Montserrat', 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #FFFFFF;
    background: #0A0E27;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

/* Dark blue/purple background with particles */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0A0E27 0%, #1A1F3A 50%, #0F1429 100%);
    z-index: -2;
    pointer-events: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

/* ============================================
   HEADER
   ============================================ */
.uc-header {
    background: rgba(10, 14, 39, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 255, 136, 0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

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

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

.uc-logo-img {
    height: 45px;
    width: auto;
    display: block;
}

.uc-logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: #00FF88;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.5);
    text-decoration: none;
}

.uc-nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.uc-nav-menu a {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.uc-nav-menu a:hover {
    color: #00FF88;
}

.uc-header-cta {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.uc-mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.uc-mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #FFFFFF;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.uc-mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.uc-mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.uc-mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.uc-btn {
    padding: 10px 24px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.uc-btn-primary {
    background: #00FF88;
    color: #0A0E27;
}

.uc-btn-primary:hover {
    background: #00E67A;
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.5);
    transform: translateY(-2px);
}

.uc-btn-secondary {
    background: transparent;
    color: #FFFFFF;
    border: 2px solid #FFFFFF;
}

.uc-btn-secondary:hover {
    background: #FFFFFF;
    color: #0A0E27;
}

/* ============================================
   HERO SECTION
   ============================================ */
.uc-hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 20px 80px;
    overflow: hidden;
    background: 
        /* Green light beam from left */
        linear-gradient(135deg, transparent 0%, rgba(0, 255, 136, 0.15) 20%, transparent 40%),
        /* Purple light beam from right */
        linear-gradient(225deg, transparent 0%, rgba(138, 43, 226, 0.1) 20%, transparent 40%),
        /* Base gradient overlay */
        linear-gradient(180deg, rgba(10, 14, 39, 0.7) 0%, rgba(10, 14, 39, 0.85) 100%);
    background-size: 100% 100%, 100% 100%, 100% 100%;
    background-position: 0 0, 100% 100%, center;
}

/* Animated particles overlay */
.uc-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        /* Green particles */
        radial-gradient(circle at 20% 30%, rgba(0, 255, 136, 0.4) 1px, transparent 1px),
        radial-gradient(circle at 40% 20%, rgba(0, 255, 136, 0.3) 1px, transparent 1px),
        radial-gradient(circle at 60% 40%, rgba(0, 255, 136, 0.35) 1px, transparent 1px),
        radial-gradient(circle at 30% 60%, rgba(0, 255, 136, 0.25) 1px, transparent 1px),
        /* Purple/white particles */
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.3) 1px, transparent 1px),
        radial-gradient(circle at 70% 50%, rgba(138, 43, 226, 0.25) 1px, transparent 1px),
        radial-gradient(circle at 90% 30%, rgba(255, 255, 255, 0.2) 1px, transparent 1px);
    background-size: 150px 150px, 200px 200px, 180px 180px, 160px 160px, 170px 170px, 190px 190px, 210px 210px;
    background-position: 0 0, 50px 30px, 100px 80px, 30px 120px, 200px 150px, 250px 100px, 300px 50px;
    opacity: 0.6;
    pointer-events: none;
    z-index: 0;
    animation: particle-drift 20s ease-in-out infinite;
}

@keyframes particle-drift {
    0%, 100% { 
        background-position: 0 0, 50px 30px, 100px 80px, 30px 120px, 200px 150px, 250px 100px, 300px 50px;
    }
    50% { 
        background-position: 20px 20px, 70px 50px, 120px 100px, 50px 140px, 220px 170px, 270px 120px, 320px 70px;
    }
}

.uc-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* Green glow from left */
    background: 
        radial-gradient(ellipse at 20% 40%, rgba(0, 255, 136, 0.3) 0%, transparent 50%),
        /* Purple glow from right */
        radial-gradient(ellipse at 80% 60%, rgba(138, 43, 226, 0.2) 0%, transparent 50%),
        /* Central glow */
        radial-gradient(circle at 50% 50%, rgba(0, 255, 136, 0.1) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
    animation: glow-pulse 4s ease-in-out infinite;
}

@keyframes glow-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

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

/* Floating Casino Elements */
.uc-hero-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.uc-floating-element {
    position: absolute;
    opacity: 0.3;
    animation: float-element 15s ease-in-out infinite;
}

.uc-floating-element svg {
    width: 60px;
    height: 60px;
    fill: rgba(0, 255, 136, 0.4);
    filter: drop-shadow(0 0 10px rgba(0, 255, 136, 0.5));
}

.uc-floating-element {
    opacity: 0.5;
    z-index: 2;
}

@keyframes float-element {
    0%, 100% { 
        transform: translateY(0) translateX(0) rotate(0deg) scale(1); 
        opacity: 0.3;
    }
    25% { 
        transform: translateY(-30px) translateX(20px) rotate(90deg) scale(1.1); 
        opacity: 0.5;
    }
    50% { 
        transform: translateY(-60px) translateX(-10px) rotate(180deg) scale(0.9); 
        opacity: 0.4;
    }
    75% { 
        transform: translateY(-30px) translateX(-20px) rotate(270deg) scale(1.05); 
        opacity: 0.5;
    }
}

/* Additional light streaks */
.uc-hero-elements::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(135deg, transparent 0%, rgba(0, 255, 136, 0.1) 50%, transparent 100%),
        linear-gradient(45deg, transparent 0%, rgba(138, 43, 226, 0.08) 50%, transparent 100%);
    background-size: 200% 2px, 200% 2px;
    background-position: -100% 20%, 200% 60%;
    animation: light-streaks 8s linear infinite;
    pointer-events: none;
    z-index: 1;
}

@keyframes light-streaks {
    0% {
        background-position: -100% 20%, 200% 60%;
    }
    100% {
        background-position: 200% 20%, -100% 60%;
    }
}

.uc-hero-content {
    text-align: center;
    z-index: 3;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.uc-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-shadow: 0 0 30px rgba(0, 255, 136, 0.3);
    letter-spacing: -0.5px;
}

.uc-hero h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #00FF88;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.5);
    letter-spacing: -0.5px;
}

.uc-hero-subtext {
    color: #FFFFFF;
    font-size: 0.9rem;
    margin: 0.5rem 0;
    font-weight: 500;
    text-align: center;
}

.uc-hero .uc-btn {
    font-size: 1.1rem;
    padding: 16px 48px;
    margin-bottom: 1rem;
}

.uc-btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    position: relative;
}

.uc-btn-checkmark {
    width: 20px;
    height: 20px;
    fill: #0A0E27;
}

.uc-checkmark-icon {
    width: 20px;
    height: 20px;
    fill: #00FF88;
    flex-shrink: 0;
}

.uc-hero-features {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.uc-hero-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #FFFFFF;
    font-size: 0.95rem;
}

.uc-hero-disclaimer {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 2rem;
    line-height: 1.6;
}

/* ============================================
   SECTIONS
   ============================================ */
.uc-section {
    padding: 80px 20px;
    position: relative;
}

.uc-section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.uc-section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 0.5rem;
    position: relative;
    text-shadow: 
        2px 2px 0 rgba(0, 200, 255, 0.3),
        -2px -2px 0 rgba(255, 0, 150, 0.3);
    letter-spacing: 1px;
}

.uc-section-title h2 span,
.uc-text-green {
    color: #00FF88;
    text-shadow: 
        2px 2px 0 rgba(0, 200, 255, 0.2),
        -2px -2px 0 rgba(255, 0, 150, 0.2),
        0 0 20px rgba(0, 255, 136, 0.5);
}

.uc-section-title p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 700px;
    margin: 0 auto;
}

/* Payment Providers */
.uc-payment-providers {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    margin-top: 3rem;
}

.uc-payment-card {
    background: transparent;
    border-radius: 6px;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 103px;
    height: 44px;
    min-width: 103px;
    min-height: 44px;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    border: none;
    overflow: hidden;
    flex-shrink: 0;
}

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

/* Все карточки имеют одинаковый размер */
.uc-payment-card img {
    width: 103px !important;
    height: 44px !important;
    min-width: 103px !important;
    min-height: 44px !important;
    max-width: 103px !important;
    max-height: 44px !important;
    display: block;
    border-radius: 6px;
    object-fit: fill;
}

/* Instant Bank - Purple with NEW badge (background in SVG) */
.uc-payment-instant {
    background: transparent;
}

/* Mastercard - White background wrapper */
.uc-payment-mastercard {
    background: #FFFFFF;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 103px;
    height: 44px;
    min-width: 103px;
    min-height: 44px;
}

.uc-payment-mastercard img {
    width: auto;
    height: 30px;
    max-height: 30px;
    padding: 7px;
}

/* Visa - Blue (background in SVG) */
.uc-payment-visa {
    background: transparent;
}

/* Apple Pay - White background wrapper */
.uc-payment-apple {
    background: #FFFFFF;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 103px;
    height: 44px;
    min-width: 103px;
    min-height: 44px;
}

.uc-payment-apple img {
    width: auto;
    height: 30px;
    max-height: 30px;
    padding: 7px;
}

/* Jetonbank - Dark Blue (background in SVG) */
.uc-payment-jetonbank {
    background: transparent;
}

/* Neosurf - Pink (background in SVG) */
.uc-payment-neosurf {
    background: transparent;
}

.uc-payment-description {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    max-width: 800px;
    margin: 2rem auto 0;
    line-height: 1.8;
    font-size: 1rem;
}

/* Two Column Layout */
.uc-two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.uc-column-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    display: block;
    object-fit: cover;
}

.uc-column-image {
    position: relative;
    overflow: hidden;
}

.uc-column-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.uc-section-title-left {
    font-size: 2.5rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 1.5rem;
    text-align: left;
    line-height: 1.2;
}

.uc-section-title-left .uc-text-green {
    color: #00FF88;
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.5);
}

/* Sports Section Background */
.uc-section-sports {
    position: relative;
    overflow: hidden;
    background: 
        /* Green light beam from left */
        linear-gradient(135deg, transparent 0%, rgba(0, 255, 136, 0.15) 20%, transparent 40%),
        /* Purple light beam from right */
        linear-gradient(225deg, transparent 0%, rgba(138, 43, 226, 0.1) 20%, transparent 40%),
        /* Base gradient */
        linear-gradient(135deg, #0A0E27 0%, #1A1F3A 30%, #0F1429 100%);
    background-size: 100% 100%, 100% 100%, 100% 100%;
    background-position: 0 0, 100% 100%, center;
}

.uc-section-sports::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        /* Green particles */
        radial-gradient(circle at 20% 30%, rgba(0, 255, 136, 0.4) 1px, transparent 1px),
        radial-gradient(circle at 40% 20%, rgba(0, 255, 136, 0.3) 1px, transparent 1px),
        radial-gradient(circle at 60% 40%, rgba(0, 255, 136, 0.35) 1px, transparent 1px),
        radial-gradient(circle at 30% 60%, rgba(0, 255, 136, 0.25) 1px, transparent 1px),
        /* Purple/white particles */
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.3) 1px, transparent 1px),
        radial-gradient(circle at 70% 50%, rgba(138, 43, 226, 0.25) 1px, transparent 1px);
    background-size: 150px 150px, 200px 200px, 180px 180px, 160px 160px, 170px 170px, 190px 190px;
    background-position: 0 0, 50px 30px, 100px 80px, 30px 120px, 200px 150px, 250px 100px;
    opacity: 0.6;
    pointer-events: none;
    z-index: 0;
    animation: particle-drift 20s ease-in-out infinite;
}

.uc-section-sports .container {
    position: relative;
    z-index: 1;
}

.uc-sports-image-glow {
    filter: drop-shadow(0 0 30px rgba(0, 255, 136, 0.6));
    border-radius: 15px;
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    z-index: 1;
}

/* Free Spins Section Background */
.uc-section-free-spins {
    position: relative;
    overflow: hidden;
    background: 
        /* Green light beam from right */
        linear-gradient(315deg, transparent 0%, rgba(0, 255, 136, 0.12) 20%, transparent 40%),
        /* Purple light beam from left */
        linear-gradient(45deg, transparent 0%, rgba(138, 43, 226, 0.08) 20%, transparent 40%),
        /* Base gradient */
        linear-gradient(135deg, #0A0E27 0%, #1A1F3A 30%, #0F1429 100%);
    background-size: 100% 100%, 100% 100%, 100% 100%;
    background-position: 100% 0, 0 100%, center;
}

.uc-section-free-spins::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        /* Green particles */
        radial-gradient(circle at 80% 30%, rgba(0, 255, 136, 0.35) 1px, transparent 1px),
        radial-gradient(circle at 60% 50%, rgba(0, 255, 136, 0.3) 1px, transparent 1px),
        radial-gradient(circle at 70% 70%, rgba(0, 255, 136, 0.25) 1px, transparent 1px),
        /* White/purple particles */
        radial-gradient(circle at 20% 60%, rgba(255, 255, 255, 0.25) 1px, transparent 1px),
        radial-gradient(circle at 30% 40%, rgba(138, 43, 226, 0.2) 1px, transparent 1px);
    background-size: 150px 150px, 200px 200px, 180px 180px, 160px 160px, 170px 170px;
    background-position: 200px 50px, 150px 100px, 250px 150px, 50px 120px, 80px 80px;
    opacity: 0.5;
    pointer-events: none;
    z-index: 0;
    animation: particle-drift 25s ease-in-out infinite;
}

.uc-section-free-spins::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(90deg, transparent 0%, rgba(0, 255, 136, 0.05) 50%, transparent 100%);
    background-size: 200% 2px;
    background-position: -100% 60%;
    animation: light-streaks 8s linear infinite;
    pointer-events: none;
    z-index: 0;
}

.uc-section-free-spins .container {
    position: relative;
    z-index: 1;
}

/* Cashback Section Background */
.uc-section-cashback {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #0A4A5A 0%, #1A1F3A 50%, #0F1429 100%);
}

.uc-section-cashback::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        /* White stars */
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.6) 1px, transparent 1px),
        radial-gradient(circle at 40% 30%, rgba(255, 255, 255, 0.5) 1px, transparent 1px),
        radial-gradient(circle at 60% 15%, rgba(255, 255, 255, 0.4) 1px, transparent 1px),
        radial-gradient(circle at 80% 25%, rgba(255, 255, 255, 0.5) 1px, transparent 1px),
        radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.4) 1px, transparent 1px),
        radial-gradient(circle at 70% 60%, rgba(255, 255, 255, 0.5) 1px, transparent 1px),
        radial-gradient(circle at 10% 70%, rgba(255, 255, 255, 0.4) 1px, transparent 1px),
        radial-gradient(circle at 90% 80%, rgba(255, 255, 255, 0.5) 1px, transparent 1px),
        /* Smaller stars */
        radial-gradient(circle at 25% 40%, rgba(255, 255, 255, 0.3) 0.5px, transparent 0.5px),
        radial-gradient(circle at 75% 45%, rgba(255, 255, 255, 0.3) 0.5px, transparent 0.5px);
    background-size: 
        200px 200px, 180px 180px, 220px 220px, 190px 190px,
        210px 210px, 200px 200px, 180px 180px, 220px 220px,
        150px 150px, 160px 160px;
    background-position: 
        0 0, 100px 50px, 200px 30px, 300px 100px,
        50px 150px, 250px 200px, 20px 250px, 350px 300px,
        80px 120px, 280px 180px;
    opacity: 0.8;
    pointer-events: none;
    z-index: 0;
    animation: twinkle-stars 4s ease-in-out infinite;
}

@keyframes twinkle-stars {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

.uc-section-cashback .container {
    position: relative;
    z-index: 1;
}

.uc-cashback-text-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 300px;
    border: 3px solid #00FF88;
    border-radius: 15px;
    background: rgba(30, 20, 60, 0.6);
    box-shadow: 
        0 0 30px rgba(0, 255, 136, 0.5),
        inset 0 0 30px rgba(0, 255, 136, 0.1);
    padding: 2rem;
}

.uc-cashback-bonus-text {
    font-size: 4.6rem;
    font-weight: 600;
    color: #00FF88;
    text-transform: uppercase;
    letter-spacing: 7px;
    text-align: center;
    text-shadow: 
        0 0 20px rgba(0, 255, 136, 0.8),
        0 0 40px rgba(0, 255, 136, 0.6),
        0 0 60px rgba(0, 255, 136, 0.4);
    line-height: 1.2;
    margin: 0;
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        text-shadow: 
            0 0 20px rgba(0, 255, 136, 0.8),
            0 0 40px rgba(0, 255, 136, 0.6),
            0 0 60px rgba(0, 255, 136, 0.4);
    }
    50% {
        text-shadow: 
            0 0 30px rgba(0, 255, 136, 1),
            0 0 60px rgba(0, 255, 136, 0.8),
            0 0 90px rgba(0, 255, 136, 0.6);
    }
}

@keyframes swirl-particles {
    0%, 100% {
        transform: rotate(0deg) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: rotate(180deg) scale(1.2);
        opacity: 0.8;
    }
}

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

/* Unlimited Adventures Section Background */
.uc-section-adventures {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #0A4A5A 0%, #1A1F3A 50%, #2D1B4E 100%);
}

.uc-section-adventures::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        /* White stars */
        radial-gradient(circle at 15% 25%, rgba(255, 255, 255, 0.6) 1px, transparent 1px),
        radial-gradient(circle at 35% 15%, rgba(255, 255, 255, 0.5) 1px, transparent 1px),
        radial-gradient(circle at 55% 30%, rgba(255, 255, 255, 0.4) 1px, transparent 1px),
        radial-gradient(circle at 75% 20%, rgba(255, 255, 255, 0.5) 1px, transparent 1px),
        radial-gradient(circle at 25% 55%, rgba(255, 255, 255, 0.4) 1px, transparent 1px),
        radial-gradient(circle at 65% 65%, rgba(255, 255, 255, 0.5) 1px, transparent 1px),
        radial-gradient(circle at 85% 75%, rgba(255, 255, 255, 0.4) 1px, transparent 1px),
        radial-gradient(circle at 45% 80%, rgba(255, 255, 255, 0.5) 1px, transparent 1px),
        /* Smaller stars */
        radial-gradient(circle at 20% 45%, rgba(255, 255, 255, 0.3) 0.5px, transparent 0.5px),
        radial-gradient(circle at 60% 50%, rgba(255, 255, 255, 0.3) 0.5px, transparent 0.5px),
        radial-gradient(circle at 80% 60%, rgba(255, 255, 255, 0.3) 0.5px, transparent 0.5px);
    background-size: 
        200px 200px, 180px 180px, 220px 220px, 190px 190px,
        210px 210px, 200px 200px, 180px 180px, 220px 220px,
        150px 150px, 160px 160px, 170px 170px;
    background-position: 
        0 0, 120px 60px, 240px 120px, 360px 80px,
        60px 200px, 300px 250px, 420px 300px, 180px 320px,
        40px 180px, 320px 200px, 400px 240px;
    opacity: 0.8;
    pointer-events: none;
    z-index: 0;
    animation: twinkle-stars 5s ease-in-out infinite;
}

.uc-section-adventures .container {
    position: relative;
    z-index: 1;
}

/* Jackpot Section */
section#jackpots {
    position: relative;
    overflow: hidden;
    background: #0A0137;
}

.uc-jackpots {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

.uc-jackpot-description {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    max-width: 800px;
    margin: 2rem auto 0;
    line-height: 1.8;
    font-size: 1rem;
}

.uc-jackpot-cta {
    text-align: center;
    margin-top: 2rem;
}

.uc-jackpot-card {
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.4) 0%, rgba(75, 0, 130, 0.4) 100%);
    border: 2px solid #00FF88;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.3), inset 0 0 30px rgba(0, 255, 136, 0.1);
}

.uc-jackpot-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 255, 136, 0.1) 0%, transparent 70%);
    animation: rotate-glow 10s linear infinite;
}

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

.uc-jackpot-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 255, 136, 0.5);
    border-color: #00FF88;
}

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

.uc-jackpot-icon-img {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    display: block;
    filter: drop-shadow(0 0 15px rgba(0, 255, 136, 0.6));
}

.uc-jackpot-card h3 {
    font-size: 1.5rem;
    color: #FFFFFF;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.uc-jackpot-amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: #00FF88;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

.uc-btn-small {
    padding: 8px 20px;
    font-size: 0.85rem;
    position: relative;
    z-index: 1;
}

/* Game Providers Section */
.uc-section-providers {
    background: #1A0F3A;
    position: relative;
}

/* Glitch effect for providers title */
#providers .uc-section-title h2 {
    text-shadow: 
        2px 2px 0 rgba(0, 200, 255, 0.4),
        -2px -2px 0 rgba(255, 0, 150, 0.4),
        0 0 20px rgba(255, 255, 255, 0.1);
    position: relative;
}

/* Game Providers */
.uc-game-providers {
    display: flex;
    flex-wrap: nowrap;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    margin-top: 3rem;
    overflow-x: auto;
    padding: 0.5rem 0;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.2) transparent;
}

.uc-game-providers::-webkit-scrollbar {
    height: 6px;
}

.uc-game-providers::-webkit-scrollbar-track {
    background: transparent;
}

.uc-game-providers::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
}

.uc-game-provider {
    background: rgba(30, 25, 55, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 1.2rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    min-width: 130px;
    flex-shrink: 0;
    box-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.uc-game-provider::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.uc-game-provider:hover {
    background: rgba(35, 30, 60, 1);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.1);
}

.uc-game-provider:hover::before {
    opacity: 1;
}

.uc-game-provider img {
    max-width: 100%;
    height: auto;
    max-height: 45px;
    width: auto;
    opacity: 0.9;
    filter: grayscale(30%) brightness(0.9) contrast(1.1);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.uc-game-provider:hover img {
    opacity: 1;
    filter: grayscale(0%) brightness(1.1) contrast(1.2);
}

.uc-providers-description {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    max-width: 800px;
    margin: 2rem auto 0;
    line-height: 1.8;
    font-size: 1rem;
}

/* Testimonials */
.uc-testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.uc-testimonial {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    border-left: 4px solid #00FF88;
}

.uc-testimonial p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
    font-style: italic;
}

.uc-testimonial-author {
    color: #00FF88;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.uc-testimonial-date {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.uc-stars {
    display: flex;
    gap: 0.25rem;
    margin-top: 0.5rem;
}

.uc-star {
    width: 20px;
    height: 20px;
    fill: #00FF88;
}

/* FAQ Section */
.uc-faq {
    max-width: 900px;
    margin: 0 auto;
}

.uc-faq-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.uc-faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #FFFFFF;
    font-weight: 600;
    transition: background 0.3s ease;
    gap: 1rem;
}

.uc-faq-question span {
    flex: 1;
}

.uc-faq-question:hover {
    background: rgba(0, 255, 136, 0.1);
}

.uc-faq-icon {
    width: 30px;
    height: 30px;
    min-width: 30px;
    min-height: 30px;
    border-radius: 50%;
    background: #00FF88;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0A0E27;
    font-size: 1.2rem;
    font-weight: bold;
    line-height: 1;
    flex-shrink: 0;
    transition: transform 0.3s ease;
    margin-left: 1rem;
    text-align: center;
    padding: 0;
    box-sizing: border-box;
}

.uc-faq-item.active .uc-faq-icon {
    transform: rotate(45deg);
}

.uc-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 1.5rem;
}

.uc-faq-item.active .uc-faq-answer {
    max-height: 500px;
    padding: 0 1.5rem 1.5rem;
}

.uc-faq-answer p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

/* Final CTA Section */
.uc-section-cta {
    background: linear-gradient(180deg, #0A4A5A 0%, #1A3A4A 100%);
    position: relative;
    overflow: hidden;
    border-radius: 0;
}

.uc-section-cta::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, rgba(10, 14, 39, 0.8) 50%, transparent 100%);
    z-index: 1;
}

.uc-section-cta .container {
    position: relative;
    z-index: 1;
}

.uc-section-cta .uc-section-title h2 {
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    color: #FFFFFF;
}

.uc-btn-cta {
    background: #00CED1;
    color: #000000;
    border: none;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0, 206, 209, 0.4);
    transition: all 0.3s ease;
}

.uc-btn-cta:hover {
    background: #00E5E8;
    color: #000000;
    box-shadow: 0 6px 25px rgba(0, 206, 209, 0.6);
    transform: translateY(-2px);
}

/* Footer Top Section */
.uc-footer-top-section {
    background: rgba(10, 14, 39, 0.95);
    border-top: 1px solid rgba(0, 255, 136, 0.1);
    padding: 2.5rem 20px;
    margin-top: 0;
}

.uc-footer-top-section .container {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80px;
}

/* Footer */
.uc-footer {
    background: rgba(10, 14, 39, 0.95);
    border-top: 1px solid rgba(0, 255, 136, 0.1);
    padding: 3rem 20px 2rem;
    margin-top: 0;
}

.uc-footer-top {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
    justify-items: center;
    width: 100%;
    gap: 2rem;
    min-height: 60px;
}

.uc-footer-licenses {
    display: flex;
    justify-content: flex-start;
    gap: 1.5rem;
    align-items: center;
    width: 100%;
    height: 100%;
}

.uc-footer-licenses img {
    height: 45px;
    width: auto;
    opacity: 0.9;
    display: block;
}

.uc-footer-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.uc-footer-logo .uc-logo-text {
    font-size: 1.3rem;
    font-weight: 800;
    color: #00FF88;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.5);
    text-align: center;
    line-height: 1.2;
    display: block;
}

.uc-footer-language {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    height: 100%;
}

.uc-language-selector {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: 6px;
    color: #FFFFFF;
    padding: 10px 35px 10px 15px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    appearance: none;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 12 12"><path fill="%2300FF88" d="M6 9L1 4h10z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 12px;
    min-width: 140px;
}

.uc-language-selector:hover {
    background: rgba(0, 255, 136, 0.1);
    border-color: #00FF88;
}

.uc-language-selector option {
    background: #0A0E27;
    color: #FFFFFF;
}

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

.uc-footer-section {
    display: flex;
    flex-direction: column;
}

.uc-footer-section h3 {
    color: #00FF88;
    margin-bottom: 1.2rem;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.uc-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.uc-footer-links li {
    margin-bottom: 0.5rem;
}

.uc-footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    display: block;
    padding: 0.4rem 0;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.uc-footer-links a:hover {
    color: #00FF88;
}

.uc-footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    line-height: 1.6;
}

.uc-footer-legal {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.uc-footer-legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.uc-footer-legal-text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    text-align: left;
}

.uc-footer-legal-text strong {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    display: block;
    margin-bottom: 0.5rem;
}

.uc-footer-legal-copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    text-align: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.uc-footer-partner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.uc-footer-partner-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

.uc-footer-partner-link {
    display: inline-block;
    text-decoration: none;
    transition: all 0.3s ease;
}

.uc-footer-partner-logo {
    max-height: 117px;
    width: auto;
    height: auto;
    opacity: 0.8;
    transition: all 0.3s ease;
    filter: brightness(0.9);
    display: block;
}

.uc-footer-partner-link:hover .uc-footer-partner-logo {
    opacity: 1;
    filter: brightness(1.1);
    transform: translateY(-2px);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    .uc-hero {
        min-height: 70vh;
        padding: 100px 20px 60px;
    }
    
    .uc-hero h1 {
        font-size: 2rem;
    }
    
    .uc-hero h2 {
        font-size: 1.5rem;
    }
    
    .uc-mobile-menu-toggle {
        display: flex;
    }
    
    .uc-nav {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(10, 14, 39, 0.98);
        backdrop-filter: blur(20px);
        border-bottom: 1px solid rgba(0, 255, 136, 0.1);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        z-index: 999;
    }
    
    .uc-nav.active {
        max-height: 300px;
    }
    
    .uc-nav-menu {
        flex-direction: column;
        padding: 1rem 0;
        gap: 0;
    }
    
    .uc-nav-menu li {
        width: 100%;
    }
    
    .uc-nav-menu a {
        display: block;
        padding: 1rem 2rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .uc-header-cta {
        display: none;
    }
    
    .uc-nav.active ~ .uc-header-cta {
        display: flex;
        position: fixed;
        top: 70px;
        right: 20px;
        flex-direction: column;
        gap: 0.5rem;
        z-index: 1000;
    }
    
    .uc-header-cta {
        gap: 0.5rem;
    }
    
    .uc-btn {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
    
    .uc-section {
        padding: 60px 20px;
    }
    
    .uc-section-title h2 {
        font-size: 1.8rem;
    }
    
    .uc-jackpots {
        grid-template-columns: 1fr;
    }
    
    .uc-testimonials {
        grid-template-columns: 1fr;
    }
    
    .uc-game-providers {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 1rem;
    }
    
    .uc-payment-providers {
        gap: 1rem;
    }
    
    .uc-payment-provider img {
        height: 30px;
    }
    
    .uc-two-column {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .uc-column-image {
        order: 2;
    }
    
    .uc-column-content {
        order: 1;
    }
    
    .uc-section-title-left {
        text-align: center;
        font-size: 1.8rem;
    }
    
    .uc-cashback-bonus-text {
        font-size: 2.8rem;
        font-weight: 600;
        letter-spacing: 4px;
        padding: 1.5rem;
    }
    
    .uc-cashback-text-wrapper {
        min-height: 280px;
        padding: 1.5rem;
    }
    
    .uc-footer-top {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
    }
    
    .uc-footer-licenses {
        justify-content: center;
    }
    
    .uc-footer-language {
        justify-content: center;
    }
    
    .uc-footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    @media (max-width: 480px) {
        .uc-footer-content {
            grid-template-columns: 1fr;
        }
    }
    
    .uc-footer-partner {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .uc-footer-partner-logo {
        max-height: 98px;
    }
}

/* ============================================
   UTILITIES
   ============================================ */
.uc-text-green {
    color: #00FF88;
}

.uc-text-center {
    text-align: center;
}

.uc-mt-2 {
    margin-top: 2rem;
}

.uc-mb-2 {
    margin-bottom: 2rem;
}

