/* ========================
   Font Import
   ======================== */
@font-face {
    font-family: 'Poppins';
    src: url('/assets/fonts/Poppins-VariableFont_wght.otf') format('opentype');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

/* ========================
   CSS Variables - Root Colors
   ======================== */
:root {
    /* Background Colors */
    --bg-primary: #1F1D2B;
    --bg-secondary: #252836;
    --bg-card: #1F1D2B;

    /* Purple Shades */
    --purple-primary: #8B5CF6;
    --purple-bright: #A78BFA;
    --purple-dark: #4C1D95;

    /* Pink/Magenta */
    --pink-primary: #D946EF;
    --pink-secondary: #EC4899;

    /* Accent Colors */
    --green-success: #22C55E;
    --red-danger: #EF4444;

    /* Neutral Colors */
    --white: #FFFFFF;
    --gray-light: #9CA3AF;
    --gray-medium: #6B7280;
    --gray-dark: #374151;

    /* Text Colors */
    --text-primary: #FFFFFF;
    --text-secondary: #9CA3AF;
    --text-muted: #6B7280;

    /* Gradients */
    --gradient-purple: linear-gradient(135deg, #A78BFA 0%, #8B5CF6 100%);
    --gradient-pink: linear-gradient(135deg, #EC4899 0%, #D946EF 100%);

    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.2);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.3);
    --shadow-button: 0 4px 12px rgba(139, 92, 246, 0.3);

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;

    /* Border Radius */
    --radius-sm: 0.5rem;
    --radius-md: 1rem;
    --radius-lg: 1.5rem;
    --radius-xl: 2rem;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ========================
   CSS Reset & Base Styles
   ======================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    font-weight: 400;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

body.loaded {
    opacity: 1;
}

/* ========================
   Typography
   ======================== */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-primary);
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
}

h2 {
    font-size: clamp(1.75rem, 4vw, 3rem);
    font-weight: 700;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 600;
}

h4 {
    font-size: clamp(1.25rem, 2.5vw, 2rem);
    font-weight: 600;
}

h5 {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    font-weight: 600;
}

h6 {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    font-weight: 600;
}

p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

a {
    color: var(--purple-primary);
    text-decoration: none;
    transition: var(--transition-fast);
}

a:hover {
    color: var(--purple-bright);
}

/* ========================
   Container & Layout
   ======================== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.container-fluid {
    width: 100%;
    padding: 0 var(--spacing-md);
}

.container-wide {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.container-narrow {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* ========================
   Buttons
   ======================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition-normal);
    text-decoration: none;
    white-space: nowrap;
    outline: none;
}

.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Primary Button - Purple Gradient */
.btn-primary {
    background: var(--gradient-purple);
    color: var(--white);
    box-shadow: var(--shadow-button);
}

.btn-primary:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.4);
}

.btn-primary:active:not(:disabled) {
    transform: translateY(0);
}

/* Secondary Button - Outlined */
.btn-secondary {
    background: transparent;
    color: var(--purple-primary);
    border: 2px solid var(--purple-primary);
}

.btn-secondary:hover:not(:disabled) {
    background: var(--purple-primary);
    color: var(--white);
}

/* Icon Button */
.btn-icon {
    width: 3rem;
    height: 3rem;
    padding: 0;
    border-radius: var(--radius-md);
    background: var(--gradient-purple);
    color: var(--white);
    box-shadow: var(--shadow-md);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-icon:hover:not(:disabled) {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

/* Button with Arrow Icon */
.btn-arrow {
    position: relative;
}

.btn-arrow::after {
    content: '»';
    font-size: 1.5rem;
    font-weight: 700;
    margin-left: 0.25rem;
    transition: var(--transition-fast);
}

.btn-arrow:hover::after {
    transform: translateX(4px);
}

/* Button Sizes */
.btn-sm {
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
}

.btn-lg {
    padding: 1.125rem 2.5rem;
    font-size: 1.125rem;
}

.btn-xl {
    padding: 1.25rem 3rem;
    font-size: 1.25rem;
}

/* Button Full Width */
.btn-block {
    width: 100%;
    display: flex;
}

/* ========================
   Cards
   ======================== */
.card {
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.card-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    color: var(--text-primary);
}

.card-text {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
}

/* ========================
   Grid System
   ======================== */
.grid {
    display: grid;
    gap: var(--spacing-md);
}

.grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-4 {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

/* ========================
   Flexbox Utilities
   ======================== */
.flex {
    display: flex;
}

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.flex-between {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.flex-column {
    display: flex;
    flex-direction: column;
}

.flex-wrap {
    flex-wrap: wrap;
}

/* ========================
   Spacing Utilities
   ======================== */
.mt-sm {
    margin-top: var(--spacing-sm);
}

.mt-md {
    margin-top: var(--spacing-md);
}

.mt-lg {
    margin-top: var(--spacing-lg);
}

.mt-xl {
    margin-top: var(--spacing-xl);
}

.mb-sm {
    margin-bottom: var(--spacing-sm);
}

.mb-md {
    margin-bottom: var(--spacing-md);
}

.mb-lg {
    margin-bottom: var(--spacing-lg);
}

.mb-xl {
    margin-bottom: var(--spacing-xl);
}

.pt-sm {
    padding-top: var(--spacing-sm);
}

.pt-md {
    padding-top: var(--spacing-md);
}

.pt-lg {
    padding-top: var(--spacing-lg);
}

.pt-xl {
    padding-top: var(--spacing-xl);
}

.pb-sm {
    padding-bottom: var(--spacing-sm);
}

.pb-md {
    padding-bottom: var(--spacing-md);
}

.pb-lg {
    padding-bottom: var(--spacing-lg);
}

.pb-xl {
    padding-bottom: var(--spacing-xl);
}

/* ========================
   Text Utilities
   ======================== */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.text-primary {
    color: var(--text-primary);
}

.text-secondary {
    color: var(--text-secondary);
}

.text-muted {
    color: var(--text-muted);
}

.text-purple {
    color: var(--purple-primary);
}

.text-pink {
    color: var(--pink-primary);
}

.text-green {
    color: var(--green-success);
}

.text-red {
    color: var(--red-danger);
}

/* ========================
   Background Utilities
   ======================== */
.bg-primary {
    background-color: var(--bg-primary);
}

.bg-secondary {
    background-color: var(--bg-secondary);
}

/* ========================
   Scrollbar Styling
   ======================== */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: var(--purple-primary);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--purple-bright);
}

/* ========================
   Responsive Design
   ======================== */
@media (max-width: 1200px) {
    .container {
        max-width: 960px;
    }
}

@media (max-width: 992px) {
    .container {
        max-width: 720px;
    }

    .grid-3,
    .grid-4 {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .container {
        max-width: 540px;
        padding: 0 var(--spacing-sm);
    }

    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }

    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9375rem;
    }
}

@media (max-width: 576px) {
    html {
        font-size: 14px;
    }

    .container {
        padding: 0 1rem;
    }
}

/* ========================
   Animation Utilities
   ======================== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn var(--transition-slow) ease-in-out;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }
}

.pulse {
    animation: pulse 2s ease-in-out infinite;
}

/* ========================
   Selection
   ======================== */
::selection {
    background-color: var(--purple-primary);
    color: var(--white);
}

::-moz-selection {
    background-color: var(--purple-primary);
    color: var(--white);
}

/* ========================
   HEADER & NAVIGATION
   ======================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    background: transparent;
    transition: var(--transition-normal);
}

.header.scrolled {
    background: rgba(31, 29, 43, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo & Brand */
.navbar-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 1001;
}

.logo-wrapper {
    width: 3rem;
    height: 3rem;
    background: var(--gradient-purple);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem;
    box-shadow: var(--shadow-button);
    transition: var(--transition-normal);
}

.logo-wrapper:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.5);
}

.logo-icon {
    width: 100%;
    height: 100%;
    filter: brightness(0) invert(1);
}

.site-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--white);
    letter-spacing: -0.5px;
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-link {
    color: var(--text-secondary);
    font-size: 1rem;
    font-weight: 400;
    text-decoration: none;
    transition: var(--transition-fast);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-purple);
    transition: var(--transition-normal);
}

.nav-link:hover,
.nav-link.active {
    color: var(--white);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Burger Menu */
.burger-menu {
    display: none;
    flex-direction: column;
    gap: 0.35rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.burger-menu span {
    width: 1.75rem;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition-normal);
}

.burger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(0.5rem, 0.5rem);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
}

.burger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(0.5rem, -0.5rem);
}

/* ========================
   HERO SECTION
   ======================== */
.hero {
    min-height: auto;
    display: flex;
    align-items: center;
    padding-top: 6rem;
    padding-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

/* Hero Text */
.hero-text {
    animation: fadeIn 1s ease-out;
}

.hero-title {
    font-size: clamp(1.5rem, 3.5vw, 2.5rem);
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.02em;
    color: var(--white);
    text-transform: uppercase;
}

.gradient-text {
    font-size: clamp(1.125rem, 2.25vw, 1.5rem);
    background: var(--gradient-pink);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

/* Hero Image Wrapper */
.hero-image-wrapper {
    position: relative;
    animation: fadeIn 1s ease-out 0.3s backwards;
    max-width: 400px;
    margin-left: auto;
}

.hero-image {
    position: relative;
    z-index: 5;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius-lg);
}

/* Image Decorations */
.image-decorations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.decoration-layer {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid rgba(139, 92, 246, 0.3);
    border-radius: var(--radius-lg);
    pointer-events: none;
}

.decoration-layer.layer-1 {
    top: -10px;
    right: -10px;
    opacity: 1;
    border-color: rgba(167, 139, 250, 1);
    border-width: 2px;
}

.decoration-layer.layer-2 {
    top: -20px;
    right: -20px;
    opacity: 0.7;
    border-color: rgba(167, 139, 250, 0.8);
    border-width: 2px;
}

.decoration-layer.layer-3 {
    top: -30px;
    right: -30px;
    opacity: 0.45;
    border-color: rgba(167, 139, 250, 0.6);
    border-width: 2px;
}

.decoration-layer.layer-4 {
    top: -40px;
    right: -40px;
    opacity: 0.2;
    border-color: rgba(167, 139, 250, 0.4);
    border-width: 1px;
}

/* ========================
   OFFERS SECTION
   ======================== */
.offers-section {
    padding: 2rem 0 6rem;
    background: var(--bg-primary);
}

.offers-title {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
    line-height: 1.3;
}

.offers-title .gradient-text {
    background: var(--gradient-pink);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.offers-content {
    display: block;
    width: 100%;
}

/* Featured Image */
.offers-featured-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 3px solid rgba(167, 139, 250, 0.4);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: var(--transition-normal);
}

.offers-featured-image:hover {
    transform: translateY(-5px);
    border-color: rgba(167, 139, 250, 0.6);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.offers-featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Offer Cards Container */
.offers-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .offers-cards {
        gap: 1rem;
    }
}

/* Single Offer Card */
.offer-card {
    background: linear-gradient(135deg, rgba(88, 56, 150, 0.4) 0%, rgba(75, 49, 130, 0.3) 100%);
    border-radius: var(--radius-lg);
    padding: 2rem;
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    gap: 2rem;
    align-items: center;
    border: 2px solid rgba(167, 139, 250, 0.2);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.offer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(167, 139, 250, 0.1) 0%, transparent 100%);
    pointer-events: none;
}

.offer-card:hover {
    transform: translateY(-3px);
    border-color: rgba(167, 139, 250, 0.4);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
}

/* Offer Logo */
.offer-logo {
    width: 220px;
    height: 120px;
    background: linear-gradient(135deg, #0a0040 0%, #1a0a5e 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    border: 2px solid rgba(167, 139, 250, 0.3);
    position: relative;
    z-index: 1;
}

.offer-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Offer Details */
.offer-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    position: relative;
    z-index: 1;
}

.offer-spins {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.offer-spins-label {
    font-size: 1.5rem;
    font-weight: 600;
    background: var(--gradient-pink);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.offer-money-info {
    display: flex;
    gap: 1.5rem;
    margin-top: 0.5rem;
}

.offer-money-info span {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.offer-money-info span strong {
    color: var(--white);
    font-weight: 600;
}

/* Offer Info */
.offer-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    position: relative;
    z-index: 1;
}

.offer-bonus {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.25rem;
}

.offer-bonus-amount {
    font-size: 2rem;
    font-weight: 700;
    background: var(--gradient-pink);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.offer-stats {
    display: flex;
    gap: 1rem;
    font-size: 0.875rem;
}

.offer-stat {
    color: var(--text-secondary);
}

.offer-stat strong {
    color: var(--white);
    font-weight: 600;
}

/* Offer Actions */
.offer-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: flex-end;
    position: relative;
    z-index: 1;
}

.offer-badge {
    padding: 0.375rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.offer-badge.top {
    background: linear-gradient(135deg, #22C55E 0%, #16A34A 100%);
    color: var(--white);
}

.offer-badge.hot {
    background: linear-gradient(135deg, #EF4444 0%, #DC2626 100%);
    color: var(--white);
}

.offer-button {
    width: 60px;
    height: 60px;
    background: var(--gradient-purple);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition-normal);
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.4);
}

.offer-button:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.6);
}

.offer-button svg {
    width: 28px;
    height: 28px;
    fill: none;
    stroke: var(--white);
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* ========================
   POLICY PAGES
   ======================== */
.policy-page {
    min-height: 100vh;
    padding-top: 8rem;
    padding-bottom: 4rem;
}

.policy-header {
    text-align: center;
    margin-bottom: 4rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid rgba(167, 139, 250, 0.2);
}

.policy-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 1rem;
    background: var(--gradient-pink);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.policy-subtitle {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    color: var(--text-secondary);
    font-weight: 400;
}

.policy-content {
    max-width: 900px;
    margin: 0 auto;
}

.policy-section {
    margin-bottom: 3rem;
}

.policy-section h2 {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.policy-section h3 {
    font-size: clamp(1.375rem, 2.5vw, 1.75rem);
    font-weight: 600;
    margin-bottom: 1rem;
    margin-top: 2rem;
    color: var(--purple-bright);
}

.policy-section h4 {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    font-weight: 600;
    margin-bottom: 0.75rem;
    margin-top: 1.5rem;
    color: var(--white);
}

.policy-section p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1.25rem;
}

.policy-section ul,
.policy-section ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.policy-section li {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
}

.policy-section a {
    color: var(--purple-bright);
    text-decoration: none;
    transition: var(--transition-fast);
    border-bottom: 1px solid transparent;
}

.policy-section a:hover {
    color: var(--pink-primary);
    border-bottom-color: var(--pink-primary);
}

.policy-section strong {
    color: var(--white);
    font-weight: 600;
}

.policy-highlight {
    background: rgba(167, 139, 250, 0.1);
    border-left: 4px solid var(--purple-primary);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    margin: 2rem 0;
}

.policy-highlight p {
    margin-bottom: 0;
}

.policy-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.policy-table th,
.policy-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid rgba(167, 139, 250, 0.1);
}

.policy-table th {
    background: rgba(167, 139, 250, 0.2);
    color: var(--white);
    font-weight: 600;
}

.policy-table td {
    color: var(--text-secondary);
}

.policy-table tr:last-child td {
    border-bottom: none;
}

.policy-contact {
    background: var(--bg-secondary);
    padding: 2rem;
    border-radius: var(--radius-lg);
    margin-top: 3rem;
    border: 2px solid rgba(167, 139, 250, 0.2);
}

.policy-contact h3 {
    margin-top: 0;
}

.policy-updated {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.875rem;
    font-style: italic;
    margin-top: 3rem;
}

/* ========================
   AGE VERIFICATION MODAL
   ======================== */
.age-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.age-modal.active {
    opacity: 1;
    visibility: visible;
}

.age-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(31, 29, 43, 0.95);
    backdrop-filter: blur(10px);
}

.age-modal-content {
    position: relative;
    z-index: 10;
    background: linear-gradient(135deg, rgba(88, 56, 150, 0.9) 0%, rgba(75, 49, 130, 0.9) 100%);
    border: 2px solid rgba(167, 139, 250, 0.4);
    border-radius: var(--radius-xl);
    padding: 3rem 3rem 2.5rem;
    max-width: 600px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: modalSlideIn 0.4s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-30px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.age-modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 2.5rem;
    height: 2.5rem;
    background: transparent;
    border: none;
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
    opacity: 0.7;
}

.age-modal-close:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 0.1);
}

.age-modal-close svg {
    width: 24px;
    height: 24px;
}

.age-modal-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.5rem;
    background: var(--gradient-pink);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.age-modal-text {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.age-modal-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.age-modal-btn {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition-normal);
    font-family: 'Poppins', sans-serif;
    border: 2px solid transparent;
    min-width: 180px;
}

.age-modal-btn-no {
    background: transparent;
    color: var(--white);
    border-color: rgba(167, 139, 250, 0.6);
}

.age-modal-btn-no:hover {
    background: rgba(167, 139, 250, 0.2);
    border-color: var(--purple-bright);
}

.age-modal-btn-yes {
    background: var(--gradient-purple);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(139, 92, 246, 0.4);
}

.age-modal-btn-yes:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.6);
}

.age-modal-btn:active {
    transform: translateY(0);
}

/* Prevent body scroll when modal is active */
body.modal-open {
    overflow: hidden;
}

/* ========================
   FOOTER
   ======================== */
.footer {
    background: var(--bg-secondary);
    padding: 4rem 0 2rem;
    margin-top: 6rem;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 1fr 1.2fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

/* Footer Column */
.footer-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Footer Brand */
.footer-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.footer-brand .logo-wrapper {
    width: 3rem;
    height: 3rem;
    background: var(--gradient-purple);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem;
    box-shadow: var(--shadow-button);
}

.footer-brand .logo-icon {
    width: 100%;
    height: 100%;
    filter: brightness(0) invert(1);
}

.footer-brand .site-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--white);
}

/* Footer Resources */
.footer-resources {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-heading {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links li {
    margin: 0;
    padding: 0;
}

.footer-links a {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    text-decoration: none;
    transition: var(--transition-fast);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--purple-bright);
    transform: translateX(5px);
}

/* Footer Partners */
.footer-partners {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 1rem;
    flex-wrap: wrap;
}

.partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-normal);
    opacity: 0.85;
}

.partner-logo:hover {
    opacity: 1;
    transform: translateY(-3px);
}

.partner-logo img {
    max-width: 100%;
    height: auto;
    max-height: 50px;
    object-fit: contain;
    filter: brightness(0.9);
    transition: filter 0.3s ease;
}

.partner-logo:hover img {
    filter: brightness(1.1);
}

/* Custom 18+ badge */
.age-badge-custom {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    width: 50px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    border-radius: 50%;
    color: #1a1612;
    font-weight: 700;
    font-size: 16px;
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.age-badge-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(255, 215, 0, 0.6);
}

/* Footer Responsible Gaming Section */
.footer-responsive {
    background: linear-gradient(135deg, rgba(20, 15, 35, 0.9) 0%, rgba(30, 20, 45, 0.9) 100%);
    padding: 2rem;
    border-radius: var(--radius-lg);
    margin: 2rem auto;
    max-width: 1400px;
    border: 2px solid rgba(167, 139, 250, 0.3);
}

.footer-responsive h4 {
    color: #a78bfa;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer-responsive p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    text-align: center;
}

.support-aware {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
    justify-content: center;
}

.support-icon {
    height: 50px;
    width: 50px;
    background: linear-gradient(135deg, #F58220 0%, #FF9500 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 4px 12px rgba(245, 130, 32, 0.4);
    flex-shrink: 0;
}

.support-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.support-title {
    color: #a78bfa;
    font-weight: 700;
    font-size: 0.9375rem;
    letter-spacing: 0.5px;
}

.support-subtitle {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.75rem;
}

.support-btn {
    display: block;
    background: linear-gradient(135deg, #F58220 0%, #FF9500 100%);
    color: #fff;
    text-align: center;
    padding: 0.875rem 1.5rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.support-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(245, 130, 32, 0.5);
}

/* Footer Disclaimer */
.footer-disclaimer {
    gap: 1rem;
}

.disclaimer-text {
    color: var(--text-secondary);
    font-size: 0.8125rem;
    line-height: 1.6;
    text-align: justify;
}

/* Footer Divider */
.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(167, 139, 250, 0.3) 50%, transparent 100%);
    margin: 2rem 0;
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
}

.footer-copyright {
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin: 0;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    color: var(--text-secondary);
    font-size: 0.875rem;
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-legal a:hover {
    color: var(--purple-bright);
}

/* ========================
   RESPONSIVE - MOBILE
   ======================== */
@media (max-width: 992px) {
    .burger-menu {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: var(--bg-secondary);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: var(--transition-normal);
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-link {
        font-size: 1.25rem;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-text {
        text-align: center;
    }

    .hero-title {
        font-size: clamp(1.5rem, 6vw, 2.5rem);
    }

    .hero-image-wrapper {
        max-width: 100%;
        margin: 0 auto;
    }

    /* Offers Section Mobile */
    .offers-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .offers-featured-image {
        order: -1;
    }

    .offer-card {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1.5rem;
    }

    .offer-logo {
        width: 100%;
        height: auto;
        aspect-ratio: 16/9;
        justify-self: center;
    }

    .offer-actions {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }

    /* Footer Mobile */
    .footer-top {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-partners {
        justify-content: flex-start;
        gap: 1.5rem;
    }

    .partner-logo img {
        max-height: 45px;
    }
    
    .age-badge-custom {
        height: 45px;
        width: 45px;
        font-size: 14px;
    }
    
    .footer-responsive {
        padding: 1.5rem;
    }
    
    .support-icon {
        height: 45px;
        width: 45px;
        font-size: 12px;
    }
    
    .support-title {
        font-size: 0.875rem;
    }
    
    .support-subtitle {
        font-size: 0.6875rem;
    }
    
    .support-btn {
        font-size: 0.8125rem;
        padding: 0.75rem 1.25rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .footer-legal {
        gap: 1.5rem;
    }

    /* Policy Pages Mobile */
    .policy-page {
        padding-top: 6rem;
    }

    .policy-header {
        margin-bottom: 3rem;
    }

    /* Age Modal Mobile */
    .age-modal-content {
        padding: 2.5rem 2rem 2rem;
    }

    .age-modal-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .age-modal-btn {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 1rem 0;
    }

    .site-name {
        font-size: 1.1rem;
    }

    .logo-wrapper {
        width: 2.5rem;
        height: 2.5rem;
    }

    .hero {
        padding-top: 5rem;
        padding-bottom: 1.5rem;
    }

    .hero-content {
        gap: 1.5rem;
    }

    .decoration-layer.layer-1 {
        top: -8px;
        right: -8px;
    }

    .decoration-layer.layer-2 {
        top: -16px;
        right: -16px;
    }

    .decoration-layer.layer-3 {
        top: -24px;
        right: -24px;
    }

    .decoration-layer.layer-4 {
        top: -32px;
        right: -32px;
    }

    /* Offers Section Mobile - Small */
    .offers-section {
        padding: 2rem 0 4rem;
    }

    .offers-title {
        margin-bottom: 2rem;
    }

    .offer-spins {
        font-size: 2rem;
    }

    .offer-spins-label {
        font-size: 1.25rem;
    }

    .offer-bonus-amount {
        font-size: 1.75rem;
    }

    .offer-logo {
        height: 100px;
    }

    /* Footer Mobile - Small */
    .footer {
        padding: 3rem 0 1.5rem;
        margin-top: 4rem;
    }

    .footer-top {
        gap: 2.5rem;
        margin-bottom: 2.5rem;
    }

    .footer-brand .site-name {
        font-size: 1.25rem;
    }

    .footer-brand .logo-wrapper {
        width: 2.5rem;
        height: 2.5rem;
    }

    .disclaimer-text {
        font-size: 0.75rem;
    }
}

@media (max-width: 576px) {
    .nav-menu {
        width: 100%;
        right: -100%;
    }

    .site-name {
        font-size: 1rem;
    }

    /* Offers Section Mobile - Extra Small */
    .offer-card {
        padding: 1.25rem;
        gap: 1rem;
    }

    .offer-details,
    .offer-info {
        gap: 0.375rem;
    }

    .offer-spins {
        font-size: 1.75rem;
    }

    .offer-spins-label {
        font-size: 1.125rem;
    }

    .offer-bonus {
        font-size: 1rem;
    }

    .offer-bonus-amount {
        font-size: 1.5rem;
    }

    .offer-stats {
        flex-direction: column;
        gap: 0.25rem;
    }

    .offer-button {
        width: 50px;
        height: 50px;
    }

    .offer-button svg {
        width: 24px;
        height: 24px;
    }

    /* Footer Mobile - Extra Small */
    .footer {
        padding: 2.5rem 0 1.5rem;
        margin-top: 3rem;
    }

    .footer-top {
        gap: 2rem;
    }

    .footer-brand .site-name {
        font-size: 1.125rem;
    }

    .footer-brand .logo-wrapper {
        width: 2.25rem;
        height: 2.25rem;
    }

    .footer-links a {
        font-size: 0.875rem;
    }

    .footer-legal {
        flex-direction: column;
        gap: 1rem;
    }

    .partner-logo img {
        max-height: 50px;
    }

    /* Age Modal Mobile - Extra Small */
    .age-modal-content {
        padding: 2rem 1.5rem 1.75rem;
    }

    .age-modal-title {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }

    .age-modal-text {
        font-size: 0.9375rem;
        margin-bottom: 2rem;
    }

    .age-modal-btn {
        padding: 0.875rem 2rem;
        font-size: 1rem;
        min-width: auto;
    }
}