/* Import Poppins font */
@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-VariableFont_wght.otf') format('opentype');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Material Symbols Outlined';
    font-style: normal;
    font-weight: 100 700;
    src: url(../fonts/Material-Symbols-Outlined.woff2) format('woff2');
  }
  
  .material-symbols-outlined {
    font-family: 'Material Symbols Outlined';
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-feature-settings: 'liga';
    -webkit-font-smoothing: antialiased;
  }
  
/* CSS Variables based on design specifications */
:root {
    /* Colors from design */
    --color-white: #FFFFFF;
    --color-black: #000000;
    --color-green: #00FF00;
    --color-red: #FF0000;

    /* Gradient colors */
    --gradient-start: #00FFAA;
    --gradient-end: #AA00FF;

    /* Popup colors */
    --popup-bg-color: #2D2C3A;
    --text-color-primary: #FFFFFF;
    --text-color-secondary: #B0B0B0;

    /* Border radius */
    --border-radius-sm: 8px;
    --border-radius-md: 12px;

    /* Button dimensions */
    --button-height: 55px;
    --button-font-size: 18px;

    /* Typography */
    --title-font-size: 38px;
    --description-font-size: 17px;
    --border-width: 2px;

    /* Font family */
    --font-family: 'Poppins', sans-serif;
}

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    background-color: var(--color-black);
    color: var(--color-white);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-family);
    font-weight: 700;
    margin-bottom: 20px;
}

h1 {
    font-size: 2.5rem;
    color: var(--color-white);
}

h2 {
    font-size: 2rem;
    color: var(--color-white);
}

p {
    margin-bottom: 16px;
    color: var(--text-color-secondary);
}
.header-notice {
    display: flex
;
    align-items: center;
    gap: 8px;
    background-color: #154147;
    padding: 10px ;
    border-radius: 0;
    font-size: 0.9em;
    color: #FFD700;
    justify-content: center;

}
@media (max-width: 992px) {
    .header-notice {
        max-width: none;
        flex-grow: 1;
    }
}
@media (max-width: 480px) {
    .header-notice {
        font-size: 0.8em;
        padding: 10px;
        flex-basis: 100%;
        justify-content: center;
        height: 100px;
    }
}
.header-notice .material-symbols-outlined {
    color: #FFD700;
}
.header-notice p{
    color: #FFD700;
    margin-bottom: 0;
}
.header-notice a {
    color: #FFD700;
}
/* 
Button styles based on design */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 24px;
    height: var(--button-height);
    font-family: var(--font-family);
    font-size: var(--button-font-size);
    font-weight: 700;
    text-decoration: none;
    border: none;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    min-width: 160px;
}

.btn-primary {
    background: linear-gradient(90deg, #04C6CF 0%, #0076FF 100%);
    color: var(--color-white);
    border: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 255, 170, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--color-white);
    border: var(--border-width) solid var(--color-white);
}

.btn-outline:hover {
    background: var(--color-white);
    color: var(--color-black);
    transform: translateY(-2px);
}

/* Age verification popup styles */
.age-verification-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.age-verification-overlay.show {
    opacity: 1;
    visibility: visible;
}

.age-verification-popup {
    background: var(--popup-bg-color);
    border: var(--border-width) solid transparent;
    border-radius: var(--border-radius-md);
    padding: 40px;
    max-width: 500px;
    width: 90%;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.age-verification-overlay.show .age-verification-popup {
    transform: scale(1);
}

/* Gradient border effect */
.age-verification-popup::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #058D60 0%, #A807F8 100%);
    border-radius: var(--border-radius-md);
    z-index: -1;
}

.age-verification-popup .close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    color: var(--color-white);
    font-size: 28px;
    font-weight: 300;
    cursor: pointer;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    line-height: 1;
}

.age-verification-popup .close-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: scale(1.1);
}

.age-verification-popup h2 {
    font-size: var(--title-font-size);
    font-weight: 700;
    color: var(--text-color-primary);
    margin-bottom: 24px;
    line-height: 1.1;
    letter-spacing: -0.5px;
}

.age-verification-popup p {
    font-size: var(--description-font-size);
    color: var(--text-color-secondary);
    margin-bottom: 36px;
    line-height: 1.5;
    font-weight: 400;
}

.age-verification-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.age-verification-buttons .btn {
    flex: 1;
    max-width: 140px;
    min-width: 120px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* Responsive design */
@media (max-width: 768px) {
    .age-verification-popup {
        padding: 32px 24px;
        margin: 20px;
        max-width: 90%;
    }

    .age-verification-popup h2 {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .age-verification-popup p {
        font-size: 16px;
        margin-bottom: 32px;
    }

    .age-verification-buttons {
        flex-direction: column;
        gap: 16px;
    }

    .age-verification-buttons .btn {
        max-width: none;
        width: 100%;
    }

    .age-verification-popup .close-btn {
        top: 12px;
        right: 12px;
        width: 32px;
        height: 32px;
        font-size: 24px;
    }
}

/* Hide popup when age is verified */
body.age-verified .age-verification-overlay {
    display: none;
}

/* Hero Section Styles */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1200px;
    padding: 0 20px;
}

.hero-top {
    margin-bottom: 40px;
}

.hero-casino {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-white);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin: 0;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.hero-main {
    margin-bottom: 40px;
}

.hero-titles {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.hero-unlock {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--color-white);
    margin: 0 0 10px 0;
    line-height: 1.1;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.2);
}

.hero-freespins {
    font-size: 4.5rem;
    font-weight: 800;
    color: var(--color-white);
    margin: 0;
    line-height: 1;
    text-shadow: 0 0 40px rgba(255, 255, 255, 0.3);
    text-align: right;
}

.hero-subtitle {
    text-align: center;
}

.hero-description {
    font-size: 1.3rem;
    font-weight: 500;
    background: linear-gradient(90deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    text-shadow: 0 0 20px rgba(0, 255, 170, 0.3);
}

/* Decorative Background Elements */
.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 30%, rgba(0, 255, 170, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(170, 0, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(0, 255, 170, 0.1) 0%, transparent 60%),
        radial-gradient(circle at 90% 20%, rgba(170, 0, 255, 0.1) 0%, transparent 60%);
    filter: blur(1px);
}

/* Left side decorative circles (Teal/Green) */
.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        /* Large circles with shadows */
        radial-gradient(circle at 15% 25%, rgba(0, 255, 170, 0.2) 0%, rgba(0, 255, 170, 0.1) 30%, transparent 60%),
        radial-gradient(circle at 25% 60%, rgba(0, 255, 170, 0.15) 0%, rgba(0, 255, 170, 0.05) 40%, transparent 70%),
        radial-gradient(circle at 35% 15%, rgba(0, 255, 170, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 10% 80%, rgba(0, 255, 170, 0.12) 0%, transparent 45%),
        /* Right side circles (Purple) */
        radial-gradient(circle at 85% 30%, rgba(170, 0, 255, 0.2) 0%, rgba(170, 0, 255, 0.1) 30%, transparent 60%),
        radial-gradient(circle at 75% 65%, rgba(170, 0, 255, 0.15) 0%, rgba(170, 0, 255, 0.05) 40%, transparent 70%),
        radial-gradient(circle at 90% 15%, rgba(170, 0, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 95% 85%, rgba(170, 0, 255, 0.12) 0%, transparent 45%);
    filter: blur(2px);
}

/* Additional decorative elements using pseudo-elements */
.hero-section::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 10%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(0, 255, 170, 0.3) 0%, rgba(0, 255, 170, 0.1) 40%, transparent 70%);
    border-radius: 50%;
    filter: blur(3px);
    z-index: 1;
    animation: float 6s ease-in-out infinite;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 60%;
    right: 15%;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(170, 0, 255, 0.3) 0%, rgba(170, 0, 255, 0.1) 40%, transparent 70%);
    border-radius: 50%;
    filter: blur(3px);
    z-index: 1;
    animation: float 8s ease-in-out infinite reverse;
}

/* Glowing rectangular elements */
.hero-background {
    background-image:
        /* Left side glowing rectangle */
        linear-gradient(45deg, transparent 0%, rgba(0, 255, 170, 0.1) 20%, rgba(0, 255, 170, 0.05) 50%, transparent 80%),
        /* Right side glowing rectangle */
        linear-gradient(-45deg, transparent 0%, rgba(170, 0, 255, 0.1) 20%, rgba(170, 0, 255, 0.05) 50%, transparent 80%),
        /* Additional subtle gradients */
        radial-gradient(ellipse at 30% 20%, rgba(0, 255, 170, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 80%, rgba(170, 0, 255, 0.08) 0%, transparent 60%);
    background-size: 300px 100px, 300px 100px, 400px 200px, 400px 200px;
    background-position: 10% 40%, 90% 60%, 20% 30%, 80% 70%;
    background-repeat: no-repeat;
    filter: blur(1px);
}

/* Additional floating elements */
.hero-section .hero-background::before {
    content: '';
    position: absolute;
    top: 30%;
    left: 5%;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(0, 255, 170, 0.4) 0%, rgba(0, 255, 170, 0.2) 30%, transparent 60%);
    border-radius: 50%;
    filter: blur(2px);
    animation: float 4s ease-in-out infinite;
}

.hero-section .hero-background::after {
    content: '';
    position: absolute;
    top: 70%;
    right: 8%;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(170, 0, 255, 0.4) 0%, rgba(170, 0, 255, 0.2) 30%, transparent 60%);
    border-radius: 50%;
    filter: blur(2px);
    animation: float 5s ease-in-out infinite reverse;
}

/* Additional Decorative Elements */
.decorative-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(2px);
    animation: float 6s ease-in-out infinite;
}

.circle-1 {
    top: 15%;
    left: 8%;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(0, 255, 170, 0.4) 0%, rgba(0, 255, 170, 0.2) 30%, rgba(0, 255, 170, 0.1) 60%, transparent 80%);
    animation-delay: 0s;
}

.circle-2 {
    top: 45%;
    left: 12%;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(0, 255, 170, 0.3) 0%, rgba(0, 255, 170, 0.15) 40%, transparent 70%);
    animation-delay: 2s;
}

.circle-3 {
    top: 75%;
    left: 5%;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(0, 255, 170, 0.25) 0%, rgba(0, 255, 170, 0.1) 50%, transparent 75%);
    animation-delay: 4s;
}

.circle-4 {
    top: 25%;
    right: 10%;
    width: 140px;
    height: 140px;
    background: radial-gradient(circle, rgba(170, 0, 255, 0.4) 0%, rgba(170, 0, 255, 0.2) 30%, rgba(170, 0, 255, 0.1) 60%, transparent 80%);
    animation-delay: 1s;
}

.circle-5 {
    top: 55%;
    right: 15%;
    width: 90px;
    height: 90px;
    background: radial-gradient(circle, rgba(170, 0, 255, 0.3) 0%, rgba(170, 0, 255, 0.15) 40%, transparent 70%);
    animation-delay: 3s;
}

.circle-6 {
    top: 85%;
    right: 8%;
    width: 110px;
    height: 110px;
    background: radial-gradient(circle, rgba(170, 0, 255, 0.25) 0%, rgba(170, 0, 255, 0.1) 50%, transparent 75%);
    animation-delay: 5s;
}

.decorative-rectangle {
    position: absolute;
    border-radius: 15px;
    filter: blur(1px);
    animation: float 8s ease-in-out infinite;
}

.rect-1 {
    top: 35%;
    left: 3%;
    width: 200px;
    height: 60px;
    background: linear-gradient(45deg, rgba(0, 255, 170, 0.2) 0%, rgba(0, 255, 170, 0.1) 50%, transparent 100%);
    animation-delay: 1s;
}

.rect-2 {
    top: 65%;
    right: 5%;
    width: 180px;
    height: 50px;
    background: linear-gradient(-45deg, rgba(170, 0, 255, 0.2) 0%, rgba(170, 0, 255, 0.1) 50%, transparent 100%);
    animation-delay: 3s;
}

.decorative-line {
    position: absolute;
    height: 2px;
    filter: blur(1px);
    animation: float 10s ease-in-out infinite;
}

.line-1 {
    top: 40%;
    left: 0%;
    width: 300px;
    background: linear-gradient(90deg, transparent 0%, rgba(0, 255, 170, 0.3) 20%, rgba(0, 255, 170, 0.1) 80%, transparent 100%);
    animation-delay: 2s;
}

.line-2 {
    top: 70%;
    right: 0%;
    width: 250px;
    background: linear-gradient(-90deg, transparent 0%, rgba(170, 0, 255, 0.3) 20%, rgba(170, 0, 255, 0.1) 80%, transparent 100%);
    animation-delay: 4s;
}

/* Additional decorative circles */
.circle-7 {
    top: 5%;
    left: 20%;
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, rgba(0, 255, 170, 0.2) 0%, rgba(0, 255, 170, 0.1) 40%, transparent 70%);
    animation-delay: 1.5s;
}

.circle-8 {
    top: 35%;
    left: 25%;
    width: 70px;
    height: 70px;
    background: radial-gradient(circle, rgba(0, 255, 170, 0.15) 0%, rgba(0, 255, 170, 0.08) 50%, transparent 80%);
    animation-delay: 3.5s;
}

.circle-9 {
    top: 10%;
    right: 25%;
    width: 65px;
    height: 65px;
    background: radial-gradient(circle, rgba(170, 0, 255, 0.2) 0%, rgba(170, 0, 255, 0.1) 40%, transparent 70%);
    animation-delay: 2.5s;
}

.circle-10 {
    top: 40%;
    right: 30%;
    width: 75px;
    height: 75px;
    background: radial-gradient(circle, rgba(170, 0, 255, 0.15) 0%, rgba(170, 0, 255, 0.08) 50%, transparent 80%);
    animation-delay: 4.5s;
}

/* Glow effects */
.decorative-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(4px);
    animation: glow 12s ease-in-out infinite;
}

.glow-1 {
    top: 20%;
    left: 15%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 255, 170, 0.1) 0%, rgba(0, 255, 170, 0.05) 30%, transparent 70%);
    animation-delay: 0s;
}

.glow-2 {
    top: 50%;
    right: 20%;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(170, 0, 255, 0.1) 0%, rgba(170, 0, 255, 0.05) 30%, transparent 70%);
    animation-delay: 4s;
}

.glow-3 {
    top: 80%;
    left: 50%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(0, 255, 170, 0.08) 0%, rgba(170, 0, 255, 0.08) 50%, transparent 80%);
    animation-delay: 8s;
}

/* Glow animation */
@keyframes glow {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.3;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.6;
    }
}

/* Floating animation */
@keyframes float {

    0%,
    100% {
        transform: translateY(0px) scale(1);
        opacity: 0.6;
    }

    50% {
        transform: translateY(-15px) scale(1.05);
        opacity: 1;
    }
}

/* Responsive Hero */
@media (max-width: 768px) {
    .hero-casino {
        font-size: 2rem;
    }

    .hero-unlock {
        font-size: 2.5rem;
    }

    .hero-freespins {
        font-size: 3rem;
    }

    .hero-description {
        font-size: 1.1rem;
    }

    .hero-titles {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-casino {
        font-size: 1.5rem;
    }

    .hero-unlock {
        font-size: 2rem;
    }

    .hero-freespins {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1rem;
    }
}

/* Casino Cards Grid - 3x2 Layout */
.casino-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* Casino Card - Clean Design */
.casino-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.2);
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    min-height: 320px;
    display: flex;
    flex-direction: column;
}

.casino-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.2);
    border-color: rgba(255, 215, 0, 0.4);
}

.card-border {
    padding: 25px;
    position: relative;
    height: 100%;
}

.card-content {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.top-label {
    position: absolute;
    top: -10px;
    right: 20px;
    background: linear-gradient(45deg, #FFE300, #96A20B);
    color: #000;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Logo Containers */
.logo-container-mobile {
    display: block;
    text-align: center;
    margin-bottom: 20px;
    flex-shrink: 0;
}

/* Logo Container */
.logo-container-desktop {
    display: none;
    align-items: center;
    justify-content: center;
    padding: 15px;
    min-height: 70px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    margin-bottom: 15px;
}

.logo-image {
    max-width: 100px;
    max-height: 50px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: brightness(1.1);
}

/* SVG Logo Specific Styles */
.logo-image svg {
    width: 120px;
    height: 60px;
    fill: #ffffff;
    stroke: none;
    display: block;
}

.logo-image img {
    max-width: 120px;
    max-height: 60px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

/* Ensure SVG files are displayed properly */
.logo-image[src$=".svg"] {
    width: 120px;
    height: 60px;
    object-fit: contain;
}

/* Additional SVG support */
.logo-image {
    background: transparent;
    border: none;
    outline: none;
}

/* Force SVG visibility */
.logo-image svg,
.logo-image img {
    visibility: visible !important;
    opacity: 1 !important;
    display: block !important;
    width: 120px !important;
    height: 60px !important;
}

/* Info Grid - Clean Layout */
.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
    flex-grow: 1;
}

.info-left {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.info-right {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-end;
    text-align: right;
}

.casino-logo-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-top: auto;
}

/* Casino Name */
.casino-name {
    font-size: 1.6rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    line-height: 1.2;
}

/* FS Amount */
.fs-amount {
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, #8B5CF6 0%, #A78BFA 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    margin: 0;
}

/* Rating Section */
.rating-section {
    display: flex;
    align-items: center;
    gap: 8px;
}

.star-icon {
    color: #00ffaa;
    font-size: 1.2rem;
}

.rating-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.rating-label {
    font-size: 0.7rem;
    color: #a0a0a0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.rating-value {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
}

/* Reviews Section */
.reviews-section {
    display: flex;
    flex-direction: column;
    gap: 2px;
    align-items: flex-end;
}

.reviews-label {
    font-size: 0.7rem;
    color: #a0a0a0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.reviews-value {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
}

.star-icon {
    color: #ffd700;
    font-size: 1.2rem;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.rating-text {
    display: flex;
    flex-direction: column;
}

.rating-label {
    font-size: 0.8rem;
    color: #cccccc;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.rating-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
}

/* Reviews Section */
.reviews-section {
    text-align: right;
}

.reviews-label {
    font-size: 0.8rem;
    color: #cccccc;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.reviews-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: #00ff88;
}

/* Casino Logo Section */
.casino-logo-section {
    grid-column: 1 / -1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 20px;
}

.bonus-button {
    background: linear-gradient(45deg, #ffd700, #ff8c00);
    color: #000;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    flex-shrink: 0;
}

.bonus-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
    background: linear-gradient(45deg, #ffed4e, #ff9f00);
}

/* Casino Card Section */
.casino-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    position: relative;
    overflow: hidden;
}

/* Add the same decorative background elements as hero section */
.casino-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 30%, rgba(0, 255, 170, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(170, 0, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(0, 255, 170, 0.1) 0%, transparent 60%),
        radial-gradient(circle at 90% 20%, rgba(170, 0, 255, 0.1) 0%, transparent 60%);
    filter: blur(1px);
    z-index: 1;
}

.casino-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        /* Large circles with shadows */
        radial-gradient(circle at 15% 25%, rgba(0, 255, 170, 0.2) 0%, rgba(0, 255, 170, 0.1) 30%, transparent 60%),
        radial-gradient(circle at 25% 60%, rgba(0, 255, 170, 0.15) 0%, rgba(0, 255, 170, 0.05) 40%, transparent 70%),
        radial-gradient(circle at 35% 15%, rgba(0, 255, 170, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 10% 80%, rgba(0, 255, 170, 0.12) 0%, transparent 45%),
        /* Right side circles (Purple) */
        radial-gradient(circle at 85% 30%, rgba(170, 0, 255, 0.2) 0%, rgba(170, 0, 255, 0.1) 30%, transparent 60%),
        radial-gradient(circle at 75% 65%, rgba(170, 0, 255, 0.15) 0%, rgba(170, 0, 255, 0.05) 40%, transparent 70%),
        radial-gradient(circle at 90% 15%, rgba(170, 0, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 95% 85%, rgba(170, 0, 255, 0.12) 0%, transparent 45%);
    filter: blur(2px);
    z-index: 1;
}


.card-border {
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    padding: 3px;
    border-radius: 16px;
}

.card-content {
    background: #1e2235;
    border-radius: 14px;
    padding: 0;
    position: relative;
}

.top-label {
    position: absolute;
    top: 15px;
    left: 15px;
    color: #032996;
    font-size: 18px;
    font-weight: 600;
    z-index: 10;
}

.logo-container-mobile {
    background: #000033;
    border-radius: 14px 14px 0 0;
    padding: 50px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
}




.info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}



.money-amount {
    font-size: 18px;
    color: var(--text-color-primary);
}

.money-value {
    font-size: 28px;
    font-weight: 700;
    color: var(--gradient-start);
}

.rating-reviews-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.rating-section {
    display: flex;
    align-items: center;
    gap: 10px;
}

.star-icon {
    font-size: 36px;
    color: var(--gradient-start);
}

.rating-text {
    display: flex;
    flex-direction: column;
}

.rating-label {
    font-size: 14px;
    color: var(--text-color-secondary);
}

.rating-value {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-color-primary);
}

.reviews-section {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.reviews-label {
    font-size: 14px;
    color: var(--text-color-secondary);
}

.reviews-value {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-color-primary);
}

.bonus-label {
    font-size: 18px;
    color: var(--text-color-primary);
}

.bonus-value {
    font-size: 28px;
    font-weight: 700;
    color: var(--gradient-start);
}

.bonus-button {
    background: linear-gradient(90deg, var(--gradient-start) 0%, #9D4EDD 100%);
    color: var(--text-color-primary);
    border: none;
    border-radius: 8px;
    padding: 15px;
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-family);
    width: 100%;
    margin-top: 10px;
}

.bonus-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 255, 170, 0.3);
}

/* Desktop version */
@media (min-width: 1024px) {
    .casino-card {
        max-width: 100%;
    }

    .logo-container-mobile {
        display: none;
    }

    .logo-container-desktop {
        display: flex;
    }

    .card-content {
        padding: 30px;
    }

    .info-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 30px;
        align-items: start;
        padding: 0;
        margin-top: 40px;
    }

    .info-left {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .info-right {
        display: flex;
        flex-direction: column;
        gap: 15px;
        align-items: flex-end;
        text-align: right;
    }

    .casino-logo-section {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        margin-top: auto;
    }



    .money-amount {
        margin-bottom: 15px;
    }

    .rating-section {
        margin-bottom: 30px;
    }

    .reviews-section {
        align-items: flex-start;
    }

    .bonus-button {
        margin-top: 0;
        width: auto;
        min-width: 180px;
    }
}

/* Policy Pages Styles */
.policy-page {
    min-height: 100vh;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    padding: 80px 0 60px;
}

.policy-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.policy-header {
    text-align: center;
    margin-bottom: 60px;
}

.policy-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 20px;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.2);
}

.policy-subtitle {
    font-size: 1.2rem;
    color: var(--text-color-secondary);
    font-weight: 400;
}

.policy-content {
    background: rgba(45, 44, 58, 0.8);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.policy-content h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-white);
    margin: 40px 0 20px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--gradient-start);
}

.policy-content h2:first-child {
    margin-top: 0;
}

.policy-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--color-white);
    margin: 30px 0 15px 0;
}

.policy-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-color-secondary);
    margin-bottom: 20px;
}

.policy-content ul,
.policy-content ol {
    margin: 20px 0;
    padding-left: 30px;
}

.policy-content li {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-color-secondary);
    margin-bottom: 10px;
}

.policy-content strong {
    color: var(--color-white);
    font-weight: 600;
}

.policy-content a {
    color: var(--gradient-start);
    text-decoration: none;
    transition: color 0.3s ease;
}

.policy-content a:hover {
    color: var(--gradient-end);
    text-decoration: underline;
}

.policy-content .highlight {
    background: linear-gradient(90deg, rgba(0, 255, 170, 0.1) 0%, rgba(170, 0, 255, 0.1) 100%);
    padding: 20px;
    border-radius: 12px;
    border-left: 4px solid var(--gradient-start);
    margin: 30px 0;
}

.policy-content .highlight p {
    margin-bottom: 0;
    color: var(--color-white);
    font-weight: 500;
}

.policy-content .contact-info {
    background: rgba(0, 255, 170, 0.05);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(0, 255, 170, 0.2);
    margin: 30px 0;
}

.policy-content .contact-info h3 {
    color: var(--gradient-start);
    margin-top: 0;
}

.policy-content .contact-info p {
    margin-bottom: 10px;
}

.policy-content .contact-info a {
    color: var(--gradient-start);
    font-weight: 600;
}

/* Responsive Policy Pages */
@media (max-width: 768px) {
    .policy-page {
        padding: 60px 0 40px;
    }

    .policy-container {
        padding: 0 15px;
    }

    .policy-title {
        font-size: 2.2rem;
    }

    .policy-content {
        padding: 25px;
    }

    .policy-content h2 {
        font-size: 1.5rem;
    }

    .policy-content h3 {
        font-size: 1.2rem;
    }

    .policy-content p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .policy-title {
        font-size: 1.8rem;
    }

    .policy-content {
        padding: 20px;
    }

    .policy-content h2 {
        font-size: 1.3rem;
    }

    .policy-content h3 {
        font-size: 1.1rem;
    }
}

/* Footer Styles */
.main-footer {
    background-color: #26262E;
    color: var(--color-white);
    padding: 60px 0 30px;
    margin-top: auto;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--color-white);
}

.footer-links h3 {
    display: none;
    /* Hide "Navigation" title as per design */
}

.footer-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav li {
    margin-bottom: 12px;
}

.footer-nav a {
    color: var(--text-color-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: var(--color-white);
}

/* Disclaimer Styles */
.disclaimer-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.disclaimer-text {
    background: linear-gradient(90deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.disclaimer-age {
    color: var(--gradient-end);
    font-weight: 700;
}

.disclaimer-content {
    font-size: 0.85rem;
    line-height: 1.6;
    color: var(--text-color-secondary);
    margin: 0;
    margin-bottom: 8px;
}

/* Logos Styles */
.footer-logos {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
}

.logo-item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.footer-logo {
    max-height: 50px;
    max-width: 150px;
    width: auto;
    height: auto;
    filter: brightness(0) invert(1);
    /* Make logos white */
    transition: opacity 0.3s ease;
}

.footer-logo:hover {
    opacity: 0.8;
}

/* Footer Divider */
.footer-divider {
    height: 1px;
    background-color: rgba(255, 255, 255, 0.2);
    margin: 30px 0 20px;
}

/* Copyright */
.footer-copyright {
    text-align: center;
}

.footer-copyright p {
    color: var(--text-color-secondary);
    font-size: 0.9rem;
    margin: 0;
}

/* Responsive Footer */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1.5fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .main-footer {
        padding: 40px 0 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer-logos {
        align-items: center;
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
    }

    .footer-logo {
        max-height: 40px;
        max-width: 120px;
    }

    .disclaimer-content {
        font-size: 0.8rem;
        text-align: left;
    }
}

@media (max-width: 480px) {
    .footer-logos {
        flex-direction: column;
        gap: 15px;
    }

    .footer-logo {
        max-height: 35px;
        max-width: 100px;
    }
}

/* Responsive Design for Casino Cards */
@media (min-width: 1024px) {
    .casino-cards-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(2, 1fr);
    }
}

@media (max-width: 1023px) and (min-width: 768px) {
    .casino-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 1fr);
    }
}

@media (max-width: 767px) {
    .casino-cards-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(6, 1fr);
        gap: 20px;
    }
    .casino-card{
        width: 320px;
    }

    .info-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 10px;
    }

    .casino-logo-section {
        flex-direction: column;
        gap: 15px;
    }

    .fs-amount {
        text-align: left;
    }

    .reviews-section {
        text-align: left;
    }
}

/* Footer Certifications Grid */
.footer-certifications {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 20px;
    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: rgba(0, 255, 170, 0.3);
    transform: translateY(-2px);
}

.footer-certifications img {
    max-width: 100%;
    max-height: 40px;
    width: auto;
    height: auto;
    filter: brightness(0) invert(1);
    transition: filter 0.3s ease;
}

.footer-certifications a:hover img {
    filter: brightness(0) invert(1) opacity(0.8);
}

/* 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: 'Poppins', sans-serif;
    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: 'Poppins', sans-serif;
}

.age-text {
    font-size: 10px;
    color: var(--text-color-secondary);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'Poppins', sans-serif;
}

@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);
    }
}
.disclaimer{
    margin-bottom: 50px;
}
.disclaimer p{
text-align: center;
}
.flex{
    display: flex;
    gap: 10px;
    justify-content: center;
}
.disclaimer svg{
    width: 20px;
    fill: #fff;
}
.disclaimer span{
    font-weight: 800;
}
/* Responsive styles for footer certifications */
@media (max-width: 768px) {
    .footer-certifications {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        max-width: 200px;
    }
    .flex{
       align-items: flex-start;
    }
    .disclaimer svg{
       margin-top: 8px;
    }
    
    .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;
    }
}