/* ===========================================
   ROOT VARIABLES & FONTS
   =========================================== */

@font-face {
    font-family: 'Nunito Sans';
    src: url('../fonts/NunitoSans-VariableFont.ttf') format('truetype-variations');
    font-weight: 200 1000;
    font-style: normal;
    font-display: swap;
}

:root {
    /* Typography */
    --font-primary: 'Nunito Sans', sans-serif;

    /* Colors from design specification */
    --color-white: #FFFFFF;
    --color-pink: #DF45EC;
    --color-peach: #FFB366;
    --color-charcoal-light: #4A4A4A;
    --color-charcoal-dark: #2A2A2A;
    --color-red: #FF0000;
    --color-lime: #00FF00;
    --color-orange: #FF8C00;
    --color-burnt-orange: #CC5500;

    /* Additional gradient colors */
    --color-blue: #3257DA;
    --color-magenta: #DF45EC;

    /* Gradients */
    --gradient-primary: linear-gradient(90deg, var(--color-peach) 0%, var(--color-pink) 100%);
    --gradient-secondary: linear-gradient(90deg, var(--color-blue) 0%, var(--color-magenta) 100%);

    /* Container & Layout */
    --container-max-width: 1200px;
    --container-padding: 0 20px;
    --border-radius: 8px;
    --border-radius-small: 4px;
    --border-radius-large: 12px;

    /* Spacing */
    --spacing-xs: 4px;
    --spacing-sm: 8px;
    --spacing-md: 16px;
    --spacing-lg: 24px;
    --spacing-xl: 32px;
    --spacing-xxl: 48px;

    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.2);

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ===========================================
   RESET & BASE STYLES
   =========================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-weight: 400;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transition: all var(--transition-fast);
}

/* Prevent body scroll when mobile menu is open */
body.nav-open {
    overflow: hidden;
}

/* ===========================================
   CONTAINER & LAYOUT
   =========================================== */

.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: var(--container-padding);
}

.container-fluid {
    width: 100%;
    padding: var(--container-padding);
}

/* ===========================================
   BUTTON STYLES
   =========================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-md) var(--spacing-xl);
    border: none;
    border-radius: var(--border-radius);
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all var(--transition-normal);
    white-space: nowrap;
    min-height: 48px;
}

.btn:focus {
    outline: 2px solid var(--color-white);
    outline-offset: 2px;
}

/* Gradient Button (Primary) */
.btn-gradient {
    background: var(--gradient-primary);
    color: var(--color-white);
    box-shadow: var(--shadow-sm);
}

.btn-gradient:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-gradient:active {
    transform: translateY(0);
    box-shadow: var(--shadow-sm);
}

/* Secondary Gradient Button */
.btn-gradient-secondary {
    background: var(--gradient-secondary);
    color: var(--color-white);
    box-shadow: var(--shadow-sm);
}

.btn-gradient-secondary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-gradient-secondary:active {
    transform: translateY(0);
    box-shadow: var(--shadow-sm);
}

/* Solid Gray Button (Secondary) */
.btn-solid {
    background: var(--color-charcoal-light);
    color: var(--color-white);
    box-shadow: var(--shadow-sm);
}

.btn-solid:hover {
    background: var(--color-charcoal-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-solid:active {
    transform: translateY(0);
    box-shadow: var(--shadow-sm);
}

/* Button Sizes */
.btn-sm {
    padding: var(--spacing-sm) var(--spacing-md);
    font-size: 0.875rem;
    min-height: 36px;
}

.btn-lg {
    padding: var(--spacing-lg) var(--spacing-xxl);
    font-size: 1.125rem;
    min-height: 56px;
}

/* ===========================================
   TYPOGRAPHY
   =========================================== */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-primary);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
}

h1 {
    font-size: 2.5rem;
    font-weight: 800;
}

h2 {
    font-size: 2rem;
    font-weight: 700;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

h4 {
    font-size: 1.25rem;
    font-weight: 600;
}

h5 {
    font-size: 1.125rem;
    font-weight: 600;
}

h6 {
    font-size: 1rem;
    font-weight: 600;
}

p {
    margin-bottom: var(--spacing-md);
}

a {
    color: var(--color-pink);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--color-peach);
}

/* ===========================================
   UTILITY CLASSES
   =========================================== */

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient-secondary {
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.d-flex {
    display: flex;
}

.flex-column {
    flex-direction: column;
}

.justify-center {
    justify-content: center;
}

.justify-between {
    justify-content: space-between;
}

.align-center {
    align-items: center;
}

.gap-sm {
    gap: var(--spacing-sm);
}

.gap-md {
    gap: var(--spacing-md);
}

.gap-lg {
    gap: var(--spacing-lg);
}

.mb-0 {
    margin-bottom: 0;
}

.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);
}

.mt-0 {
    margin-top: 0;
}

.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);
}

/* ===========================================
   HERO SECTION
   =========================================== */

.hero-wrapper {
    position: relative;
    background: linear-gradient(135deg, var(--color-blue) 0%, var(--color-magenta) 100%);
    display: flex;
    flex-direction: column;
    margin-bottom: var(--spacing-xxl);
}

.hero-header {
    position: relative;
    z-index: 10;
    background: transparent;
    padding: var(--spacing-lg) 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--color-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-primary);
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--color-white);
}

.logo-text {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--color-white);
}

/* Burger menu button */
.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    transition: all var(--transition-fast);
}

.burger-line {
    width: 100%;
    height: 3px;
    background: var(--color-white);
    border-radius: 2px;
    transition: all var(--transition-fast);
    transform-origin: center;
}

.burger-menu.active .burger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.burger-menu.active .burger-line:nth-child(2) {
    opacity: 0;
    transform: translateX(20px);
}

.burger-menu.active .burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.main-nav {
    display: flex;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: var(--spacing-xl);
    margin: 0;
    padding: 0;
}

.nav-link {
    color: var(--color-white);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: color var(--transition-fast);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-peach);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--color-peach);
    border-radius: 1px;
}

.hero-content {
    flex: 1;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 5;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xxl);
    align-items: center;
    min-height: 40vh;
}

.hero-text {
    z-index: 6;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin: 0;
    color: var(--color-white);
}

.title-line {
    display: block;
    margin-bottom: var(--spacing-sm);
}

.small{
    font-size: 2rem;
}

.hero-composition {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Decorative shapes */
.decoration-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.petal {
    position: absolute;
    background: linear-gradient(135deg, #FFB443 0%, #B213DA 100%);
    border-radius: 70% 0 70% 0;
}

.petal-1 {
    width: 100%;
    height: 100%;
    bottom: -40px;
    right: -60px;
    opacity: 0.3;
}

.petal-2 {
    width: 100%;
    height: 100%;
    bottom: -20px;
    right: -20px;
    background: linear-gradient(135deg, #FFB443 0%, #B213DA 100%);
}

/* Glassmorphism frame */
.glass-frame {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 4;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius-large);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-lg);
    max-width: 400px;
    width: 100%;
}

.slot-image {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    display: block;
}

/* Floating elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 5;
    pointer-events: none;
}

.coin {
    position: absolute;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
    color: var(--color-white);
    animation: float 3s ease-in-out infinite;
}

.coin-1 {
    background: linear-gradient(45deg, #FFD700, #FFA500);
    top: 20%;
    right: 10%;
    animation-delay: 0s;
}

.coin-2 {
    background: linear-gradient(45deg, #800080, #9932CC);
    top: 30%;
    right: 5%;
    animation-delay: 0.5s;
}

.coin-3 {
    background: linear-gradient(45deg, #FFD700, #FFA500);
    bottom: 30%;
    left: 5%;
    animation-delay: 1s;
}

.coin-4 {
    background: linear-gradient(45deg, #800080, #9932CC);
    bottom: 20%;
    left: 10%;
    animation-delay: 1.5s;
}

.sparkle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--color-white);
    border-radius: 50%;
    animation: sparkle 2s ease-in-out infinite;
}

.sparkle-1 {
    top: 15%;
    left: 20%;
    animation-delay: 0.3s;
}

.sparkle-2 {
    top: 60%;
    right: 15%;
    animation-delay: 1.2s;
}

.sparkle-3 {
    bottom: 15%;
    left: 30%;
    animation-delay: 0.8s;
}

/* Animations */
@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

@keyframes sparkle {

    0%,
    100% {
        opacity: 0;
        transform: scale(0);
    }

    50% {
        opacity: 1;
        transform: scale(1);
    }
}


/* Main content section */
.main-content {
    background: var(--color-white);
    padding: var(--spacing-xxl) 0;
    position: relative;
    z-index: 1;
}

.main-content h2 {
    color: var(--color-charcoal-dark);
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.main-content p {
    color: var(--color-charcoal-light);
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

/* ===========================================
   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: all var(--transition-normal);
}

.age-modal.show {
    opacity: 1;
    visibility: visible;
}

.modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 1;
}

.modal-content {
    position: relative;
    z-index: 2;
    background: linear-gradient(135deg, var(--color-magenta) 0%, var(--color-blue) 100%);
    border-radius: var(--border-radius-large);
    padding: var(--spacing-xxl);
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transform: scale(0.9) translateY(20px);
    transition: all var(--transition-normal);
}

.age-modal.show .modal-content {
    transform: scale(1) translateY(0);
}

.close-button {
    position: absolute;
    top: var(--spacing-lg);
    right: var(--spacing-lg);
    background: transparent;
    border: none;
    color: var(--color-white);
    cursor: pointer;
    padding: var(--spacing-sm);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
    z-index: 3;
}

.close-button:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(90deg);
}

.close-button svg {
    width: 20px;
    height: 20px;
}

.modal-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-white);
    margin: var(--spacing-lg) 0 var(--spacing-md) 0;
    line-height: 1.2;
}

.modal-disclaimer {
    font-size: 1rem;
    color: var(--color-white);
    margin: 0 0 var(--spacing-xl) 0;
    line-height: 1.5;
    opacity: 0.9;
}

.button-group {
    display: flex;
    justify-content: center;
    gap: var(--spacing-lg);
    flex-wrap: wrap;
}

.button-group .btn {
    min-width: 150px;
    padding: var(--spacing-md) var(--spacing-xl);
    font-size: 1rem;
    font-weight: 600;
}

/* Modal animations */
@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(-20px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes modalFadeOut {
    from {
        opacity: 1;
        transform: scale(1) translateY(0);
    }

    to {
        opacity: 0;
        transform: scale(0.8) translateY(-20px);
    }
}

/* ===========================================
   OFFERS SECTION
   =========================================== */

.offers-section {
    background: var(--color-white);
    padding: var(--spacing-xxl) 0;
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: var(--spacing-xl);
    max-width: 1200px;
    margin: 0 auto;
}

.offer-card {
    width: 340px;
    background: var(--color-white);
    border-radius: var(--border-radius-large);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-normal);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.offer-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.card-header {
    position: relative;
    background: var(--gradient-primary);
    padding: var(--spacing-lg);
    height: 200px;
}

.icon-badge {
    position: absolute;
    top: var(--spacing-md);
    left: var(--spacing-md);
    width: 36px;
    height: 36px;
    background: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
}

.icon-badge svg {
    width: 20px;
    height: 20px;
}

.logo-area {
    background: var(--color-charcoal-dark);
    height: 140px;
    margin: var(--spacing-md);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-lg);
}

.logo-area img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: brightness(1.1);
}

/* SVG Logo Specific Styles */
.logo-area img[src$=".svg"] {
    width: 120px;
    height: 60px;
    object-fit: contain;
}

.logo-area img[src$=".png"],
.logo-area img[src$=".webp"] {
    max-width: 120px;
    max-height: 60px;
    object-fit: contain;
}

.card-body {
    padding: var(--spacing-xl);
}

.bonus-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-lg);
}

.bonus-header h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-charcoal-dark);
    margin: 0;
}

.bonus-amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-charcoal-dark);
}

.bonus-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.detail-item {
    text-align: center;
}

.detail-label {
    font-size: 0.875rem;
    color: var(--color-charcoal-light);
    margin-bottom: var(--spacing-xs);
    font-weight: 500;
}

.detail-value {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-charcoal-dark);
}

.ratings {
    display: flex;
    justify-content: space-around;
    margin-bottom: var(--spacing-lg);
    padding: var(--spacing-md) 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.rating-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.rating-icon svg {
    width: 20px;
    height: 20px;
}

.rating-content {
    display: flex;
    flex-direction: column;
}

.rating-label {
    font-size: 0.75rem;
    color: var(--color-charcoal-light);
    font-weight: 500;
}

.rating-value {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-charcoal-dark);
}

.cta-button {
    width: 100%;
    padding: var(--spacing-md);
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: var(--border-radius);
    transition: all var(--transition-normal);
    text-decoration: none;
    text-align: center;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ===========================================
   POLICY PAGES
   =========================================== */

.policy-page {
    min-height: 100vh;
    background: var(--color-white);
}

.policy-header {
    background: var(--color-charcoal-dark);
    padding: var(--spacing-lg) 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
}

.policy-header .header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.policy-header .logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.policy-header .logo-icon {
    width: 40px;
    height: 40px;
    background: var(--color-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-primary);
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--color-white);
}

.policy-header .logo-text {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--color-white);
}

.policy-header .main-nav {
    display: flex;
}

.policy-header .nav-list {
    display: flex;
    list-style: none;
    gap: var(--spacing-xl);
    margin: 0;
    padding: 0;
}

.policy-header .nav-link {
    color: var(--color-white);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: color var(--transition-fast);
    position: relative;
}

.policy-header .nav-link:hover,
.policy-header .nav-link.active {
    color: var(--color-peach);
}

.policy-header .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--color-peach);
    border-radius: 1px;
}

.policy-content {
    padding: var(--spacing-xxl) 0;
    background: var(--color-white);
}

.policy-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.policy-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-charcoal-dark);
    margin-bottom: var(--spacing-xl);
    text-align: center;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.policy-text {
    color: var(--color-charcoal-light);
    line-height: 1.8;
}

.policy-text h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-charcoal-dark);
    margin: var(--spacing-xl) 0 var(--spacing-lg) 0;
    padding-bottom: var(--spacing-sm);
    border-bottom: 2px solid var(--color-peach);
}

.policy-text h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-charcoal-dark);
    margin: var(--spacing-lg) 0 var(--spacing-md) 0;
}

.policy-text p {
    margin-bottom: var(--spacing-lg);
    font-size: 1rem;
    text-align: justify;
}

.policy-text ul,
.policy-text ol {
    margin: var(--spacing-lg) 0;
    padding-left: var(--spacing-xl);
}

.policy-text li {
    margin-bottom: var(--spacing-sm);
    font-size: 1rem;
}

.policy-text strong {
    font-weight: 700;
    color: var(--color-charcoal-dark);
}

.policy-text a {
    color: var(--color-orange);
    text-decoration: none;
    font-weight: 600;
    transition: color var(--transition-fast);
}

.policy-text a:hover {
    color: var(--color-peach);
    text-decoration: underline;
}

/* ===========================================
   FOOTER
   =========================================== */

.site-footer {
    background: #f8f9fa;
    padding: var(--spacing-xxl) 0 var(--spacing-lg) 0;
    margin-top: var(--spacing-xxl);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 2fr;
    gap: var(--spacing-xxl);
    margin-bottom: var(--spacing-xl);
}

.footer-column {
    display: flex;
    flex-direction: column;
}

/* Left Column - Logo and Gambling Company Logos */
.footer-logos {
    gap: var(--spacing-lg);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
}

.footer-logo .logo-icon {
    width: 40px;
    height: 40px;
    background: var(--color-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-primary);
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--color-white);
}

.footer-logo .logo-text {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--color-charcoal-dark);
}

.gambling-logos {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.gambling-logo {
    display: flex;
    align-items: center;
    padding: var(--spacing-sm);
    border-radius: var(--border-radius);
    transition: all var(--transition-fast);
}

.gambling-logo:hover {
    background: rgba(0, 0, 0, 0.05);
    transform: translateY(-2px);
}

.commission-logo {
    background: var(--color-charcoal-dark);
    padding: var(--spacing-md);
}

.logo-image {
    max-width: 100%;
    height: auto;
    max-height: 60px;
    object-fit: contain;
}

/* Middle Column - Navigation Links */
.footer-nav {
    gap: var(--spacing-sm);
}

.footer-nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.footer-link {
    color: var(--color-charcoal-light);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all var(--transition-fast);
    display: block;
    padding: var(--spacing-xs) 0;
}

.footer-link:hover {
    color: var(--color-orange);
    padding-left: var(--spacing-sm);
}

/* Right Column - Disclaimer */
.footer-disclaimer {
    gap: var(--spacing-md);
}

.disclaimer-title {
    font-size: 1.25rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0 var(--spacing-md) 0;
    line-height: 1.2;
}

.disclaimer-text {
    color: var(--color-charcoal-light);
    font-size: 0.85rem;
    line-height: 1.6;
    margin: 0;
    text-align: justify;
}

/* Bottom Row - Copyright */
.footer-bottom {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: var(--spacing-lg);
    text-align: center;
}

.copyright {
    color: var(--color-charcoal-light);
    font-size: 0.9rem;
    margin: 0;
}

/* ===========================================
   RESPONSIVE DESIGN
   =========================================== */

@media (max-width: 768px) {
    :root {
        --container-padding: 0 16px;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    h3 {
        font-size: 1.25rem;
    }

    .btn {
        padding: var(--spacing-sm) var(--spacing-lg);
        font-size: 0.9rem;
    }

    /* Hero responsive */
    .hero-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
        text-align: center;
    }

    .hero-title {
        font-size: 2.5rem;
    }


    .glass-frame {
        max-width: 300px;
    }

    .decoration-wrapper {
        min-height: 200px;
    }


    /* Show burger menu on mobile */
    .burger-menu {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        max-width: 300px;
        height: 100vh;
        background: linear-gradient(135deg, var(--color-blue) 0%, var(--color-magenta) 100%);
        transition: right var(--transition-normal);
        z-index: 1000;
        padding: var(--spacing-xxl) var(--spacing-lg);
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
    }

    .main-nav.open {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: var(--spacing-lg);
        margin-top: var(--spacing-xxl);
    }

    .nav-link {
        font-size: 1.1rem;
        padding: var(--spacing-md) 0;
        display: block;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        transition: all var(--transition-fast);
    }

    .nav-link:hover {
        padding-left: var(--spacing-md);
        background: rgba(255, 255, 255, 0.1);
        border-radius: var(--border-radius);
    }

    .nav-link.active {
        color: var(--color-peach);
        font-weight: 700;
    }

    .nav-link.active::after {
        display: none;
    }
}

@media (max-width: 480px) {
    :root {
        --container-padding: 0 12px;
    }

    h1 {
        font-size: 1.75rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .btn {
        padding: var(--spacing-sm) var(--spacing-md);
        font-size: 0.875rem;
    }

    /* Hero mobile */
    .hero-title {
        font-size: 2rem;
    }


    .glass-frame {
        max-width: 250px;
        padding: var(--spacing-md);
    }

    .logo-text {
        font-size: 1.25rem;
    }

    .logo-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .main-nav {
        max-width: 100%;
        padding: var(--spacing-lg);
    }

    .nav-list {
        margin-top: var(--spacing-lg);
    }

    .nav-link {
        font-size: 1rem;
        padding: var(--spacing-sm) 0;
    }

    /* Footer mobile */
    .site-footer {
        padding: var(--spacing-lg) 0;
    }

    .footer-content {
        gap: var(--spacing-md);
    }

    .gambling-logos {
        flex-direction: column;
        align-items: center;
    }

    .gambling-logo {
        min-width: auto;
        width: 100%;
        max-width: 200px;
    }

    .footer-logo .logo-text {
        font-size: 1.25rem;
    }

    .disclaimer-title {
        font-size: 1.1rem;
    }

    .disclaimer-text {
        font-size: 0.8rem;
    }

    /* Policy pages mobile */
    .policy-header {
        padding: var(--spacing-md) 0;
    }

    .policy-content {
        padding: var(--spacing-lg) 0;
    }

    .policy-title {
        font-size: 1.75rem;
        margin-bottom: var(--spacing-lg);
    }

    .policy-text h2 {
        font-size: 1.25rem;
        margin: var(--spacing-lg) 0 var(--spacing-md) 0;
    }

    .policy-text h3 {
        font-size: 1.125rem;
    }

    .policy-text p {
        font-size: 0.9rem;
        margin-bottom: var(--spacing-md);
    }

    .policy-text li {
        font-size: 0.9rem;
        margin-bottom: var(--spacing-xs);
    }

    .policy-text ul,
    .policy-text ol {
        padding-left: var(--spacing-lg);
    }



    .glass-frame {
        max-width: 250px;
        padding: var(--spacing-md);
    }

    /* Offers mobile */
    .offers-section {
        padding: var(--spacing-lg) 0;
    }

    .offers-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 1fr);
        gap: var(--spacing-lg);
    }

    .offer-card {
        width: 100%;
        max-width: 100%;
    }

    .card-body {
        padding: var(--spacing-lg);
    }

    .bonus-header h3 {
        font-size: 1rem;
    }

    .bonus-amount {
        font-size: 1.25rem;
    }

    .detail-value {
        font-size: 1.5rem;
    }

    .cta-button {
        font-size: 1rem;
        padding: var(--spacing-sm) var(--spacing-md);
    }

    /* Policy pages responsive */
    .policy-title {
        font-size: 2rem;
    }

    .policy-text h2 {
        font-size: 1.5rem;
    }

    .policy-text h3 {
        font-size: 1.25rem;
    }

    .policy-wrapper {
        max-width: 100%;
    }

    .policy-text p {
        text-align: left;
    }

    /* Modal responsive */
    .modal-content {
        padding: var(--spacing-lg);
        max-width: 400px;
        width: 95%;
    }

    .modal-title {
        font-size: 1.5rem;
    }

    .modal-disclaimer {
        font-size: 0.9rem;
    }

    .button-group {
        flex-direction: column;
        gap: var(--spacing-md);
    }

    .button-group .btn {
        min-width: auto;
        width: 100%;
    }

    /* Footer responsive */
    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
        text-align: center;
    }

    .gambling-logos {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }

    .gambling-logo {
        flex: 0 0 auto;
        min-width: 120px;
    }

    .footer-nav-list {
        align-items: center;
    }

    .disclaimer-text {
        text-align: left;
    }

    /* Offers responsive */
    .offers-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(6, 1fr);
        gap: var(--spacing-lg);
    }

    .offer-card {
        width: 100%;
        max-width: 340px;
    }
}

/* Footer Certifications Grid */
.footer-certifications {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin: 20px 0;
    max-width: 300px;
}

.footer-certifications a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.footer-certifications a:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--color-pink);
    transform: translateY(-2px);
}

.footer-certifications img {
    max-width: 100%;
    max-height: 40px;
    width: auto;
    height: auto;
    transition: filter 0.3s ease;
}


/* Custom 18+ Icon Styles */
.age-icon-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 15px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.age-icon {
    position: relative;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
    margin-bottom: 6px;
    animation: pulse 2s infinite;
}

.age-number {
    font-size: 20px;
    font-weight: bold;
    color: white;
    font-family: var(--font-primary);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.age-plus {
    position: absolute;
    top: 6px;
    right: 6px;
    font-size: 12px;
    font-weight: bold;
    color: white;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-primary);
}

.age-text {
    font-size: 10px;
    color: var(--color-charcoal-light);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: var(--font-primary);
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
    }
    50% {
        box-shadow: 0 4px 25px rgba(255, 107, 107, 0.5);
    }
    100% {
        box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
    }
}

/* Responsive styles for footer certifications */
@media (max-width: 768px) {
    .footer-certifications {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        max-width: 200px;
    }
    
    .footer-certifications img {
        max-height: 30px;
    }
    
    .age-icon-container {
        margin-top: 10px;
        padding: 10px;
    }

    .age-icon {
        width: 40px;
        height: 40px;
    }

    .age-number {
        font-size: 16px;
    }

    .age-plus {
        width: 14px;
        height: 14px;
        font-size: 10px;
        top: 4px;
        right: 4px;
    }

    .age-text {
        font-size: 9px;
    }
}