/* ==========================================
   FONT IMPORT - Plus Jakarta Sans
   ========================================== */
@font-face {
    font-family: 'Plus Jakarta Sans';
    src: url('../fonts/PlusJakartaSans-VariableFont_wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

/* ==========================================
   ROOT VARIABLES - Colors & Global Settings
   ========================================== */
:root {
    /* Primary Colors from Screenshot */
    --color-white: #FFFFFF;
    --color-green: #7ED957;
    --color-cyan: #2BA4A4;
    --color-dark-gray: #3A3A3A;
    --color-light-cyan: #C4ECEC;
    --color-pink: #E9328E;
    --color-lime: #C4F52E;
    --color-lime-alt: #D4F542;

    /* Background Colors */
    --color-bg-dark: #1E1E1E;
    --color-bg-darker: #0F0F0F;
    --color-bg-card: #2A2A2A;

    /* Text Colors */
    --color-text-primary: #FFFFFF;
    --color-text-secondary: #B0B0B0;
    --color-text-dark: #1E1E1E;

    /* Button Colors */
    --color-btn-primary: #7ED957;
    --color-btn-primary-hover: #6BC847;
    --color-btn-secondary: #505050;
    --color-btn-secondary-hover: #606060;

    /* Spacing */
    --container-max-width: 1200px;
    --container-padding: 20px;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.2);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.3);

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: var(--color-bg-dark);
    color: var(--color-text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

body.no-scroll {
    overflow: hidden;
}

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

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
}

h2 {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
}

h4 {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
}

p {
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

/* ==========================================
   CONTAINER & LAYOUT
   ========================================== */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.container-fluid {
    width: 100%;
    padding: 0 var(--container-padding);
}

.section {
    padding: 60px 0;
}

.section-lg {
    padding: 100px 0;
}

/* ==========================================
   BUTTONS
   ========================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: var(--radius-xl);
    cursor: pointer;
    transition: all var(--transition-normal);
    text-align: center;
    white-space: nowrap;
    outline: none;
    user-select: none;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

/* Primary Button - Green */
.btn-primary {
    background-color: var(--color-btn-primary);
    color: var(--color-text-dark);
    box-shadow: 0 4px 16px rgba(126, 217, 87, 0.3);
}

.btn-primary:hover {
    background-color: var(--color-btn-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(126, 217, 87, 0.4);
}

.btn-primary:active {
    transform: translateY(0);
}

/* Secondary Button - Gray */
.btn-secondary {
    background-color: var(--color-btn-secondary);
    color: var(--color-text-primary);
}

.btn-secondary:hover {
    background-color: var(--color-btn-secondary-hover);
    transform: translateY(-2px);
}

/* Button with Arrow */
.btn-arrow::after {
    content: '→';
    font-size: 1.2rem;
    transition: transform var(--transition-fast);
}

.btn-arrow:hover::after {
    transform: translateX(4px);
}

/* Button Sizes */
.btn-sm {
    padding: 10px 24px;
    font-size: 0.875rem;
}

.btn-lg {
    padding: 18px 40px;
    font-size: 1.125rem;
}

/* Button Group */
.btn-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* ==========================================
   CARDS & BOXES
   ========================================== */
.card {
    background-color: var(--color-bg-card);
    border-radius: var(--radius-lg);
    padding: 24px;
    transition: var(--transition-normal);
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.card-dashed {
    border: 2px dashed rgba(255, 255, 255, 0.2);
    background-color: transparent;
    border-radius: var(--radius-lg);
    padding: 24px;
}

/* ==========================================
   UTILITIES
   ========================================== */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.mt-1 {
    margin-top: 0.5rem;
}

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

.mt-3 {
    margin-top: 1.5rem;
}

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

.mt-5 {
    margin-top: 3rem;
}

.mb-1 {
    margin-bottom: 0.5rem;
}

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

.mb-3 {
    margin-bottom: 1.5rem;
}

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

.mb-5 {
    margin-bottom: 3rem;
}

.d-flex {
    display: flex;
}

.flex-column {
    flex-direction: column;
}

.align-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.gap-1 {
    gap: 0.5rem;
}

.gap-2 {
    gap: 1rem;
}

.gap-3 {
    gap: 1.5rem;
}

.gap-4 {
    gap: 2rem;
}

/* ==========================================
   AGE VERIFICATION POPUP
   ========================================== */
.age-verification-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
}

.age-verification-overlay.active {
    opacity: 1;
    visibility: visible;
}

.age-verification-modal {
    background: linear-gradient(135deg, #2BA4A4 0%, #34B5B5 100%);
    border-radius: var(--radius-xl);
    max-width: 900px;
    width: 100%;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    transform: scale(0.9);
    transition: transform var(--transition-normal);
}

.age-verification-overlay.active .age-verification-modal {
    transform: scale(1);
}

/* Close Button */
.age-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all var(--transition-fast);
}

.age-close-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

/* Content Layout */
.age-content {
    display: grid;
    grid-template-columns: 45% 55%;
    align-items: center;
    min-height: 400px;
}

/* Left Side - Image with Decoration */
.age-image-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    height: 100%;
}

.age-decoration-circle {
    position: absolute;
    width: 320px;
    height: 320px;
    background: linear-gradient(135deg, #C4F52E 0%, #7ED957 100%);
    border-radius: 50%;
    opacity: 0.3;
    z-index: 0;
    animation: pulse-circle 3s ease-in-out infinite;
}

.age-image {
    position: relative;
    z-index: 1;
    width: 280px;
    height: 280px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    border: 4px solid rgba(255, 255, 255, 0.2);
}

.age-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Right Side - Text Content */
.age-text-content {
    padding: 50px 50px 50px 30px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.age-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--color-white);
    line-height: 1.2;
    margin: 0;
}

.age-description {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

/* Buttons */
.age-buttons {
    display: flex;
    gap: 16px;
    margin-top: 8px;
}

.age-btn-no,
.age-btn-yes {
    flex: 1;
    padding: 16px 32px;
    font-size: 1.0625rem;
    font-weight: 600;
}

.age-btn-no {
    background-color: #505050;
}

.age-btn-no:hover {
    background-color: #606060;
}

/* Pulse Animation */
@keyframes pulse-circle {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.3;
    }

    50% {
        transform: scale(1.05);
        opacity: 0.4;
    }
}

/* ==========================================
   HEADER
   ========================================== */
.header {
    background: linear-gradient(135deg, #2BA4A4 0%, #34B5B5 100%);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

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

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-white);
    transition: var(--transition-fast);
}

.logo:hover {
    transform: scale(1.05);
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #7ED957 0%, #C4F52E 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(126, 217, 87, 0.3);
}

.logo-icon img {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
}

.logo-text {
    font-size: 1.5rem;
    letter-spacing: -0.5px;
}

/* Navigation */
.nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    color: var(--color-white);
    font-size: 1rem;
    font-weight: 500;
    position: relative;
    padding: 8px 0;
    transition: var(--transition-fast);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-white);
    transition: width var(--transition-fast);
}

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

.nav-link:hover {
    opacity: 0.9;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 3px;
    background: var(--color-white);
    border-radius: 2px;
    transition: all var(--transition-normal);
}

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

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

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

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
    background: linear-gradient(135deg, #2BA4A4 0%, #34B5B5 50%, #2BA4A4 100%);
    padding: 30px 0 20px;
    position: relative;
    overflow: hidden;
    min-height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-wrapper {
    display: flex;
    justify-content: center;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Hero Content */
.hero-content {
    animation: fadeInLeft 0.8s ease-out;
}

.hero-subtitle {
    color: var(--color-lime);
    font-size: 0.9375rem;
    font-weight: 500;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
    animation: fadeIn 1s ease-out 0.2s both;
}

.hero-title {
    font-size: clamp(2rem, 4.5vw, 3.25rem);
    font-weight: 800;
    line-height: 1.1;
    color: var(--color-white);
    margin-bottom: 0;
    animation: fadeIn 1s ease-out 0.4s both;
    text-align: center;
}

.gradient-text {
    background: linear-gradient(135deg, #C4F52E 0%, #7ED957 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    text-shadow: 0 4px 20px rgba(196, 245, 46, 0.3);

}

/* Hero Image */
.hero-image {
    position: relative;
    animation: fadeInRight 0.8s ease-out 0.3s both;
}

.hero-image img {
    width: 100%;
    height: auto;
    max-width: 450px;
    filter: drop-shadow(0 10px 40px rgba(0, 0, 0, 0.3));
    animation: float 3s ease-in-out infinite;
}

/* ==========================================
   HERO PARTICLES
   ========================================== */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.particle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.6;
    animation: float-particle 8s infinite ease-in-out;
}

/* Geometric Particles */
.particle-1 {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #C4F52E 0%, rgba(196, 245, 46, 0.3) 100%);
    top: 10%;
    left: 5%;
    animation-delay: 0s;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

.particle-2 {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #7ED957 0%, rgba(126, 217, 87, 0.3) 100%);
    top: 60%;
    left: 10%;
    animation-delay: 2s;
}

.particle-3 {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #E9328E 0%, rgba(233, 50, 142, 0.3) 100%);
    top: 30%;
    right: 15%;
    animation-delay: 1s;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

.particle-4 {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #C4F52E 0%, rgba(196, 245, 46, 0.3) 100%);
    top: 80%;
    right: 25%;
    animation-delay: 3s;
}

.particle-5 {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #7ED957 0%, rgba(126, 217, 87, 0.3) 100%);
    top: 20%;
    left: 30%;
    animation-delay: 1.5s;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

.particle-6 {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    top: 50%;
    right: 5%;
    animation-delay: 2.5s;
}

/* Star Particles */
.particle-star {
    font-size: 24px;
    color: #FFD700;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.8);
    animation: star-glow 2s infinite ease-in-out, float-particle 6s infinite ease-in-out;
    border-radius: 0;
    opacity: 0.8;
}

.star-1 {
    top: 15%;
    left: 20%;
    animation-delay: 0s;
}

.star-2 {
    top: 70%;
    left: 15%;
    animation-delay: 1s;
    font-size: 18px;
}

.star-3 {
    top: 25%;
    right: 20%;
    animation-delay: 0.5s;
    font-size: 20px;
}

.star-4 {
    top: 85%;
    right: 30%;
    animation-delay: 1.5s;
    font-size: 22px;
}

/* ==========================================
   OFFERS SECTION
   ========================================== */
.offers-section {
    background: linear-gradient(180deg, #2BA4A4 0%, #1E8F8F 100%);
    padding: 20px 0;
    position: relative;
}

.offers-wrapper {
    display: flex;
    justify-content: center;
    gap: 60px;

}

/* Left Side - Image */
.offers-image {
    position: relative;
    animation: fadeInLeft 0.8s ease-out;
}

.offers-image img {
    width: 100%;
    height: auto;
    border-radius: 50%;
    max-width: 400px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    border: 8px solid rgba(255, 255, 255, 0.1);
}

/* Right Side - Offers Content */
.offers-content {
    animation: fadeInRight 0.8s ease-out;
}

.offers-title {
    color: var(--color-white);
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 800;
    margin-bottom: 20px;
    text-align: center;
}

.offers-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Offer Card - Glassmorphism Design */
.offer-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-lg);
    padding: 28px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 24px;
    align-items: center;
    position: relative;
    transition: all var(--transition-normal);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.offer-card:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.25);
}

/* Badge (Top/Fire Icon) */
.offer-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.badge-top {
    background: linear-gradient(135deg, #C4F52E 0%, #7ED957 100%);
    box-shadow: 0 4px 12px rgba(196, 245, 46, 0.4);
}

.badge-fire {
    background: linear-gradient(135deg, #FF1744 0%, #E9328E 100%);
    box-shadow: 0 4px 12px rgba(255, 23, 68, 0.4);
}

/* Offer Logo with Glow Effect */
.offer-logo-wrapper {
    position: relative;
    width: 160px;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.offer-glow {
    position: absolute;
    width: 130px;
    height: 130px;
    background: radial-gradient(circle, rgba(196, 245, 46, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(20px);
    z-index: 0;
}

.offer-logo {
    position: relative;
    z-index: 1;
    width: 160px;
    height: 110px;
    background: linear-gradient(135deg, #001A4D 0%, #002366 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.offer-logo img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

/* Offer Details */
.offer-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.offer-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.offer-money,
.offer-welcome {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-lime);
}

.offer-spins {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-white);
}

.offer-amount {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-white);
}

/* Offer Button */
.offer-btn {
    padding: 12px 28px;
    font-size: 1rem;
    white-space: nowrap;
    min-width: 160px;
}

/* Offer Rating */
.offer-rating {
    position: absolute;
    bottom: 12px;
    right: 12px;
    display: flex;
    gap: 16px;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
}

.offer-rating strong {
    color: var(--color-white);
}

/* ==========================================
   POLICY PAGES
   ========================================== */
.policy-section {
    background: var(--color-bg-dark);
    padding: 80px 0 100px;
    min-height: calc(100vh - 80px);
}

.policy-content {
    max-width: 900px;
    margin: 0 auto;
}

.policy-main-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--color-white);
    margin-bottom: 16px;
    text-align: center;
    background: linear-gradient(135deg, #7ED957 0%, #C4F52E 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.policy-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    margin-bottom: 48px;
    font-weight: 400;
}

.policy-text {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: 48px;
    backdrop-filter: blur(10px);
}

.policy-text h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--color-white);
    margin-top: 40px;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--color-green);
}

.policy-text h2:first-child {
    margin-top: 0;
}

.policy-text h3 {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    font-weight: 600;
    color: var(--color-lime);
    margin-top: 28px;
    margin-bottom: 16px;
}

.policy-text p {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 16px;
}

.policy-text ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 24px;
}

.policy-text ul li {
    position: relative;
    padding-left: 32px;
    margin-bottom: 12px;
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
}

.policy-text ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-green);
    font-weight: 700;
    font-size: 1.2rem;
}

.policy-text a {
    color: var(--color-cyan);
    text-decoration: underline;
    transition: var(--transition-fast);
}

.policy-text a:hover {
    color: var(--color-lime);
}

.policy-text strong {
    color: var(--color-white);
    font-weight: 700;
}

.policy-text table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.policy-text table th,
.policy-text table td {
    padding: 16px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.policy-text table th {
    background: rgba(126, 217, 87, 0.1);
    color: var(--color-white);
    font-weight: 700;
}

.policy-text table td {
    color: rgba(255, 255, 255, 0.85);
}

.policy-text table tr:last-child td {
    border-bottom: none;
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
    background: linear-gradient(180deg, #2BA4A4 0%, #238F8F 100%);
    padding: 60px 0 30px;
    color: var(--color-white);
}

.footer-main {
    display: grid;
    grid-template-columns: 60% 35%;
    gap: 5%;
    margin-bottom: 40px;
}

/* Left Column - Disclaimer */
.footer-left {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-logo .logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #7ED957 0%, #C4F52E 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(126, 217, 87, 0.3);
}

.footer-logo .logo-icon img {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
}

.footer-logo .logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-white);
}

/* Partner Logos */
.footer-partners {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.partner-logo {
    height: 40px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.9;
    transition: var(--transition-fast);
}

.partner-logo:hover {
    opacity: 1;
    transform: scale(1.05);
}

/* Disclaimer */
.footer-disclaimer {
    max-width: 100%;
}

.disclaimer-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 12px;
}

.disclaimer-text {
    font-size: 0.875rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0;
}

/* Right Column - Information Links */
.footer-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 8px;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link {
    font-size: 1rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    transition: var(--transition-fast);
    padding: 4px 0;
}

.footer-link:hover {
    color: var(--color-lime);
    padding-left: 8px;
}

/* Divider */
.footer-divider {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    margin: 40px 0 24px;
}

/* Copyright */
.footer-copyright {
    text-align: center;
}

.footer-copyright p {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* ==========================================
   ANIMATIONS
   ========================================== */
@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes float-particle {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    25% {
        transform: translate(20px, -20px) rotate(90deg);
    }

    50% {
        transform: translate(0, -40px) rotate(180deg);
    }

    75% {
        transform: translate(-20px, -20px) rotate(270deg);
    }
}

@keyframes star-glow {

    0%,
    100% {
        text-shadow: 0 0 20px rgba(255, 215, 0, 0.8), 0 0 40px rgba(255, 215, 0, 0.4);
        transform: scale(1);
    }

    50% {
        text-shadow: 0 0 30px rgba(255, 215, 0, 1), 0 0 60px rgba(255, 215, 0, 0.6);
        transform: scale(1.2);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */
@media (max-width: 1200px) {
    :root {
        --container-padding: 40px;
    }

    /* Offers Tablet */
    .offers-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .offers-image {
        text-align: center;
        order: -1;
    }

    .offers-image img {
        max-width: 400px;
    }

    /* Footer Tablet */
    .footer-main {
        grid-template-columns: 55% 40%;
        gap: 5%;
    }
}

@media (max-width: 992px) {

    /* Offer Card - Tablet Adaptation */
    .offer-card {
        grid-template-columns: auto 1fr;
        grid-template-rows: auto auto;
        gap: 16px;
        padding-bottom: 60px;
    }

    .offer-logo-wrapper {
        grid-row: 1 / 2;
        grid-column: 1;
    }

    .offer-details {
        grid-row: 1 / 2;
        grid-column: 2;
    }

    .offer-btn {
        grid-row: 2 / 3;
        grid-column: 1 / -1;
        justify-self: center;
        max-width: 280px;
    }

    /* Footer Mobile Landscape */
    .footer-main {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    :root {
        --container-padding: 20px;
    }

    .section {
        padding: 40px 0;
    }

    .section-lg {
        padding: 60px 0;
    }

    .btn-group {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    /* Age Verification Mobile */
    .age-content {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .age-image-wrapper {
        padding: 30px 20px;
        order: 2;
    }

    .age-decoration-circle {
        width: 240px;
        height: 240px;
    }

    .age-image {
        width: 200px;
        height: 200px;
    }

    .age-text-content {
        padding: 40px 30px 30px;
        order: 1;
    }

    .age-title {
        font-size: 1.75rem;
    }

    .age-description {
        font-size: 0.9375rem;
    }

    .age-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .age-btn-no,
    .age-btn-yes {
        width: 100%;
        padding: 14px 28px;
    }

    /* Header Mobile */
    .header-wrapper {
        flex-direction: row;
        justify-content: space-between;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: linear-gradient(135deg, #2BA4A4 0%, #238F8F 100%);
        flex-direction: column;
        justify-content: flex-start;
        padding: 80px 30px 30px;
        gap: 20px;
        z-index: 1000;
        transition: right var(--transition-normal);
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.2);
    }

    .nav.active {
        right: 0;
    }

    .nav-link {
        font-size: 1.125rem;
        padding: 12px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-link::after {
        display: none;
    }

    /* Hero Mobile */
    .hero {
        padding: 40px 0 50px;
    }

    .hero-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .hero-image {
        order: -1;
    }

    .hero-image img {
        max-width: 320px;
    }

    .hero-subtitle {
        font-size: 0.875rem;
        margin-bottom: 12px;
    }

    .hero-title {
        font-size: clamp(1.75rem, 4vw, 2.5rem);
    }

    /* Offers Mobile */
    .offers-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .offers-image {
        text-align: center;
    }

    .offers-image img {
        max-width: 350px;
    }

    .offers-title {
        text-align: center;
    }

    /* Mobile Vertical Card Layout */
    .offer-card {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
        text-align: center;
        padding: 24px;
        gap: 16px;
    }

    .offer-badge {
        top: 16px;
        left: 16px;
    }

    .offer-logo-wrapper {
        width: 180px;
        height: 125px;
        margin: 0 auto;
        justify-self: center;
    }

    .offer-logo {
        width: 180px;
        height: 125px;
    }

    .offer-details {
        gap: 12px;
    }

    .offer-info {
        flex-direction: column;
        gap: 4px;
        text-align: center;
    }

    .offer-money,
    .offer-welcome {
        font-size: 0.9rem;
    }

    .offer-spins {
        font-size: 1.5rem;
    }

    .offer-amount {
        font-size: 1.75rem;
    }

    .offer-btn {
        width: 100%;
        justify-self: center;
        max-width: 280px;
        margin: 0 auto;
    }

    .offer-rating {
        position: static;
        justify-content: center;
        margin-top: 12px;
        flex-direction: column;
        gap: 8px;
    }

    /* Footer Mobile */
    .footer {
        padding: 40px 0 24px;
    }

    .footer-main {
        margin-bottom: 32px;
    }

    .footer-left {
        gap: 20px;
    }

    .footer-partners {
        gap: 16px;
    }

    .partner-logo {
        height: 35px;
    }

    .disclaimer-text {
        font-size: 0.8125rem;
    }

    .footer-nav {
        gap: 10px;
    }

    .footer-link {
        font-size: 0.9375rem;
    }

    .footer-divider {
        margin: 32px 0 20px;
    }

    /* Policy Pages Mobile */
    .policy-section {
        padding: 60px 0 80px;
    }

    .policy-text {
        padding: 32px 24px;
    }

    .policy-text h2 {
        font-size: 1.5rem;
        margin-top: 32px;
    }

    .policy-text h3 {
        font-size: 1.25rem;
        margin-top: 24px;
    }

    .policy-text ul li {
        padding-left: 28px;
        font-size: 0.9375rem;
    }
}

@media (max-width: 480px) {
    :root {
        --container-padding: 16px;
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.9375rem;
    }

    /* Age Verification Small Mobile */
    .age-verification-overlay {
        padding: 10px;
    }

    .age-verification-modal {
        border-radius: var(--radius-md);
    }

    .age-close-btn {
        width: 36px;
        height: 36px;
        top: 12px;
        right: 12px;
    }

    .age-image-wrapper {
        padding: 20px;
    }

    .age-decoration-circle {
        width: 180px;
        height: 180px;
    }

    .age-image {
        width: 160px;
        height: 160px;
        border-radius: 16px;
    }

    .age-text-content {
        padding: 30px 20px 24px;
        gap: 16px;
    }

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

    .age-description {
        font-size: 0.875rem;
    }

    .age-btn-no,
    .age-btn-yes {
        padding: 12px 24px;
        font-size: 1rem;
    }

    /* Hero Small Mobile */
    .hero {
        padding: 30px 0 40px;
        min-height: 320px;
    }

    .hero-wrapper {
        gap: 24px;
    }

    .hero-image img {
        max-width: 280px;
    }

    /* Offers Small Mobile */
    .offers-section {
        padding: 20px 0;
    }

    .offers-image img {
        max-width: 280px;
    }

    .offer-card {
        padding: 20px 16px;
    }

    .offer-logo-wrapper {
        width: 150px;
        height: 105px;
    }

    .offer-logo {
        width: 150px;
        height: 105px;
    }

    /* Footer Small Mobile */
    .footer-logo .logo-text {
        font-size: 1.25rem;
    }

    .footer-title {
        font-size: 1.25rem;
    }

    .partner-logo {
        height: 30px;
    }

    .disclaimer-title {
        font-size: 1rem;
    }

    .disclaimer-text {
        font-size: 0.75rem;
        line-height: 1.6;
    }

    .footer-copyright p {
        font-size: 0.875rem;
    }

    /* Policy Pages Small Mobile */
    .policy-section {
        padding: 40px 0 60px;
    }

    .policy-subtitle {
        font-size: 1rem;
        margin-bottom: 32px;
    }

    .policy-text {
        padding: 24px 20px;
    }

    .policy-text h2 {
        font-size: 1.375rem;
        margin-top: 28px;
        margin-bottom: 16px;
    }

    .policy-text h3 {
        font-size: 1.125rem;
        margin-top: 20px;
        margin-bottom: 12px;
    }

    .policy-text p {
        font-size: 0.9375rem;
        line-height: 1.7;
    }

    .policy-text ul li {
        font-size: 0.875rem;
        padding-left: 24px;
        margin-bottom: 10px;
    }

    .policy-text ul li::before {
        font-size: 1rem;
    }

    .policy-text table th,
    .policy-text table td {
        padding: 12px;
        font-size: 0.875rem;
    }
}