/* Font Face */
@font-face {
    font-family: 'Comfortaa';
    src: url('../fonts/Comfortaa-VariableFont_wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
}

/* Root Variables */
:root {
    /* Colors */
    --color-white: #ffffff;
    --color-cream: #F3E8D5;
    --color-orange-light: #E89761;
    --color-orange: #F37424;
    --color-orange-dark: #D94E1F;
    --color-brown: #9B6B4F;
    --color-dark: #1A2332;
    --color-teal-dark: #284244;
    --color-teal: #2F4C4E;
    --color-blue-dark: #262E43;

    /* Gradients */
    --gradient-body: linear-gradient(180deg, #284244 0%, #262E43 100%);
    --gradient-orange: linear-gradient(180deg, #E89761 0%, #D94E1F 100%);
    --gradient-button: linear-gradient(180deg, #F3E8D5 0%, #E89761 100%);

    /* Shadows */
    --shadow-small: 0 2px 8px rgba(0, 0, 0, 0.15);
    --shadow-medium: 0 4px 16px rgba(0, 0, 0, 0.2);
    --shadow-large: 0 8px 24px rgba(0, 0, 0, 0.3);
    --shadow-button: 0 4px 12px rgba(0, 0, 0, 0.25);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Comfortaa', sans-serif;
    background: var(--gradient-body);
    background-attachment: fixed;
    color: var(--color-white);
    line-height: 1.6;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

/* Background Palm Trees */
body::before {
    content: '';
    position: fixed;
    top: 0px;
    left: 0;
    right: 0;
    bottom: -200px;
    background-image: url('../images/background-palms.svg');
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: cover;
    pointer-events: none;
    z-index: 0;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* Typography - Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Comfortaa', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-white);
}

h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1.25rem;
}

h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

h4 {
    font-size: 1.5rem;
    margin-bottom: 0.875rem;
}

h5 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

h6 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

/* Paragraph */
p {
    margin-bottom: 1rem;
}

/* Links */
a {
    color: var(--color-orange-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--color-orange);
}

/* ====================================
   Age Verification Modal
   ==================================== */
.age-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.age-modal.active {
    display: flex;
}

.age-modal__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
}

.age-modal__content {
    position: relative;
    background: linear-gradient(135deg, #2F4C4E 0%, #1F3638 100%);
    border-radius: 24px;
    padding: 50px 40px;
    max-width: 500px;
    width: 100%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(232, 151, 97, 0.3);
    animation: modalSlideIn 0.5s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.age-modal__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(180deg, #F3E8D5 0%, #E89761 100%);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-dark);
    margin: 0 auto 25px;
    box-shadow: 0 8px 20px rgba(232, 151, 97, 0.4);
}

.age-modal__title {
    font-size: 2rem;
    background: linear-gradient(180deg, #F3E8D5 0%, #E89761 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.age-modal__text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 15px;
}

.age-modal__question {
    font-size: 1.25rem;
    color: var(--color-cream);
    font-weight: 600;
    margin: 30px 0 25px;
}

.age-modal__buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.age-modal__btn {
    flex: 1;
    padding: 16px 30px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Comfortaa', sans-serif;
}

.age-modal__btn--yes {
    background: linear-gradient(180deg, #F3E8D5 0%, #E89761 100%);
    color: var(--color-dark);
    box-shadow: var(--shadow-button);
}

.age-modal__btn--yes:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(232, 151, 97, 0.5);
}

.age-modal__btn--no {
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.age-modal__btn--no:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.5);
}

.age-modal__disclaimer {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
    font-style: italic;
}

/* Age Modal Responsive */
@media (max-width: 768px) {
    .age-modal__content {
        padding: 40px 30px;
    }

    .age-modal__icon {
        width: 80px;
        height: 80px;
        font-size: 2rem;
        margin-bottom: 20px;
    }

    .age-modal__title {
        font-size: 1.75rem;
    }

    .age-modal__text {
        font-size: 0.95rem;
    }

    .age-modal__question {
        font-size: 1.1rem;
    }

    .age-modal__buttons {
        flex-direction: column;
    }

    .age-modal__btn {
        padding: 14px 25px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .age-modal__content {
        padding: 35px 25px;
        border-radius: 20px;
    }

    .age-modal__icon {
        width: 70px;
        height: 70px;
        font-size: 1.75rem;
    }

    .age-modal__title {
        font-size: 1.5rem;
    }

    .age-modal__disclaimer {
        font-size: 0.8rem;
    }
}

/* ====================================
   Hero Section
   ==================================== */
.hero {
    padding: 60px 0 40px;
    position: relative;
}

.hero__content {
    text-align: center;
    position: relative;
}

.hero__title {
    font-size: 4rem;
    font-weight: 700;
    background: linear-gradient(180deg, #F3E8D5 0%, #E89761 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.hero__subtitle {
    font-size: 1.5rem;
    color: var(--color-white);
    font-weight: 400;
}

.hero__chips {
    position: absolute;
    top: 0;
    right: -50px;
    width: 120px;
    height: auto;
}

/* ====================================
   Offers Section
   ==================================== */
.offers {
    padding: 40px 0 60px;
}

/* Offer Card */
.offer-card {
    background: linear-gradient(135deg, #2F4C4E 0%, #1F3638 100%);
    border-radius: 24px;
    padding: 30px;
    margin-bottom: 30px;
    position: relative;
    display: grid;
    grid-template-columns: 280px 1fr auto;
    gap: 30px;
    align-items: center;
    box-shadow: var(--shadow-large);
}

.offer-card__badge {
    position: absolute;
    top: -10px;
    left: 30px;
    width: 60px;
    height: 60px;
}

.offer-card__logo {
    background: linear-gradient(135deg, #4A2F7A 0%, #2D1B4E 100%);
    border-radius: 16px;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 160px;
}

.offer-card__logo img {
    max-width: 100%;
    height: auto;
}

.offer-card__info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.offer-card__amounts {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.offer-card__amount {
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(180deg, #F3E8D5 0%, #E89761 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.offer-card__details {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-end;
}

.offer-card__bonus {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 5px;
}

.offer-card__bonus-label {
    font-size: 0.9rem;
    color: var(--color-white);
    font-weight: 400;
}

.offer-card__bonus-value {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--color-cream);
    text-align: right;
}

.offer-card__meta {
    display: flex;
    gap: 20px;
    align-items: center;
}

.offer-card__rating,
.offer-card__comments {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    color: var(--color-white);
}

.offer-card__rating img,
.offer-card__comments img {
    width: 20px;
    height: 20px;
}

.offer-card__button {
    background: linear-gradient(180deg, #F3E8D5 0%, #E89761 100%);
    color: var(--color-dark);
    padding: 16px 60px;
    border-radius: 50px;
    font-size: 1.25rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: var(--shadow-button);
    display: inline-block;
    text-align: center;
}

.offer-card__button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
    color: var(--color-dark);
}

/* ====================================
   Responsive Design
   ==================================== */

/* Tablet */
@media (max-width: 992px) {
    .hero__title {
        font-size: 3rem;
    }

    .hero__chips {
        width: 100px;
        right: -30px;
    }

    .offer-card {
        grid-template-columns: 200px 1fr;
        gap: 20px;
    }

    .offer-card__details {
        grid-column: 1 / -1;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .offer-card__bonus {
        flex-direction: row;
        align-items: center;
        gap: 15px;
    }

    .offer-card__amount {
        font-size: 2.5rem;
    }

    .offer-card__bonus-value {
        font-size: 2rem;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .hero {
        padding: 40px 0 30px;
    }

    .hero__title {
        font-size: 2.5rem;
    }

    .hero__subtitle {
        font-size: 1.2rem;
    }

    .hero__chips {
        width: 80px;
        right: -20px;
        top: -10px;
    }

    .offer-card {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 25px 20px 30px;
    }

    .offer-card__logo {
        background: linear-gradient(135deg, #1A1A1A 0%, #0F0F0F 100%);
        border-radius: 12px;
        padding: 30px;
        min-height: 140px;
    }

    .offer-card__info {
        order: 1;
    }

    .offer-card__amounts {
        flex-direction: row;
        justify-content: flex-start;
        gap: 20px;
    }

    .offer-card__amount {
        font-size: 2.5rem;
    }

    .offer-card__details {
        order: 2;
        grid-column: 1;
        align-items: stretch;
        gap: 15px;
    }

    .offer-card__bonus {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .offer-card__bonus-label {
        font-size: 0.85rem;
    }

    .offer-card__bonus-value {
        font-size: 1.75rem;
    }

    .offer-card__meta {
        justify-content: flex-start;
    }

    .offer-card__button {
        width: 100%;
        padding: 18px 40px;
        font-size: 1.15rem;
    }

    .offer-card__badge {
        width: 50px;
        height: 50px;
        left: 20px;
        top: -8px;
    }
}

@media (max-width: 480px) {
    .hero__title {
        font-size: 2rem;
    }

    .hero__subtitle {
        font-size: 1rem;
    }

    .hero__chips {
        width: 60px;
        right: -10px;
    }

    .offer-card__amount {
        font-size: 2rem;
    }

    .offer-card__bonus-value {
        font-size: 1.5rem;
    }
}

/* ====================================
   Footer
   ==================================== */
.footer {
    background: linear-gradient(135deg, #2C3E50 0%, #1F2937 100%);
    padding: 50px 0 30px;
    margin-top: 60px;
    position: relative;
    z-index: 1;
}

/* Logo Row */
.footer__logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.footer__logo {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.footer__logo:hover {
    transform: translateY(-3px);
    opacity: 0.8;
}

.footer__logo img {
    height: 50px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
}

/* Age Restriction */
.footer__age {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding: 20px 0;
    gap: 30px;
}

.footer__age-content {
    display: flex;
    align-items: center;
    gap: 30px;
    flex: 1;
}

.footer__age-text {
    font-size: 0.95rem;
    color: var(--color-white);
    line-height: 1.5;
    max-width: 400px;
}

.footer__age-logos {
    display: flex;
    align-items: center;
    gap: 25px;
}

.footer__age-logos img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.footer__disclaimer-label {
    font-size: 0.95rem;
    color: var(--color-white);
    white-space: nowrap;
    font-weight: 500;
}

/* Disclaimer Text */
.footer__disclaimer {
    margin-bottom: 30px;
}

.footer__disclaimer p {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    text-align: justify;
    margin-bottom: 0;
}

/* Divider */
.footer__divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    margin: 30px 0;
}

/* Bottom Row */
.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.footer__copyright {
    font-size: 0.9rem;
    color: var(--color-white);
    margin: 0;
}

.footer__nav {
    display: flex;
    gap: 30px;
    align-items: center;
}

.footer__nav a {
    font-size: 0.9rem;
    color: var(--color-white);
    text-decoration: none;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.footer__nav a:hover {
    color: var(--color-orange-light);
}

/* Footer Responsive */
@media (max-width: 992px) {
    .footer__logos {
        gap: 30px;
    }

    .footer__logo img {
        height: 45px;
    }

    .footer__age {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .footer__age-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .footer__age-logos {
        gap: 20px;
    }

    .footer__age-logos img {
        height: 35px;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 40px 0 25px;
        margin-top: 40px;
    }

    .footer__logos {
        gap: 20px;
    }

    .footer__logo img {
        height: 40px;
        max-width: 100px;
    }

    .footer__age-text {
        font-size: 0.85rem;
    }

    .footer__age-logos img {
        height: 30px;
    }

    .footer__disclaimer p {
        font-size: 0.7rem;
        text-align: left;
    }

    .footer__bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .footer__nav {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
        width: 100%;
    }

    .footer__copyright,
    .footer__nav a {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .footer__logos {
        gap: 15px;
    }

    .footer__logo img {
        height: 35px;
        max-width: 80px;
    }

    .footer__age-text {
        font-size: 0.8rem;
    }

    .footer__age-logos {
        flex-wrap: wrap;
        gap: 15px;
    }

    .footer__age-logos img {
        height: 28px;
    }

    .footer__disclaimer p {
        font-size: 0.65rem;
    }
}

/* ====================================
   Policy Pages
   ==================================== */
.policy-page {
    min-height: 100vh;
    padding: 60px 0 80px;
    position: relative;
    z-index: 1;
}

.policy-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.policy-title {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(180deg, #F3E8D5 0%, #E89761 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.policy-date {
    font-size: 1rem;
    color: var(--color-cream);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.policy-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    color: var(--color-orange-light);
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 10px 20px;
    border-radius: 8px;
    background: rgba(232, 151, 97, 0.1);
}

.policy-back:hover {
    background: rgba(232, 151, 97, 0.2);
    transform: translateX(-5px);
    color: var(--color-orange);
}

.policy-content {
    background: rgba(47, 76, 78, 0.4);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 50px;
    box-shadow: var(--shadow-large);
}

.policy-intro {
    font-size: 1.1rem;
    color: var(--color-cream);
    line-height: 1.8;
    margin-bottom: 40px;
    font-weight: 500;
    text-align: center;
    padding: 20px;
    background: rgba(243, 232, 213, 0.05);
    border-radius: 12px;
    border-left: 4px solid var(--color-orange-light);
}

.policy-section {
    margin-bottom: 40px;
}

.policy-section h2 {
    font-size: 1.75rem;
    color: var(--color-orange-light);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(232, 151, 97, 0.3);
}

.policy-section h3 {
    font-size: 1.25rem;
    color: var(--color-cream);
    margin-bottom: 15px;
    margin-top: 25px;
}

.policy-section p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 15px;
}

.policy-section ul {
    list-style: none;
    padding-left: 0;
    margin: 20px 0;
}

.policy-section ul li {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    padding: 10px 0 10px 30px;
    position: relative;
}

.policy-section ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--color-orange-light);
    font-weight: bold;
}

.policy-section a {
    color: var(--color-orange-light);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.policy-section a:hover {
    color: var(--color-orange);
}

.policy-section strong {
    color: var(--color-cream);
    font-weight: 600;
}

/* Policy Pages Responsive */
@media (max-width: 992px) {
    .policy-page {
        padding: 50px 0 60px;
    }

    .policy-title {
        font-size: 2.5rem;
    }

    .policy-content {
        padding: 40px;
    }

    .policy-section h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .policy-page {
        padding: 40px 0 50px;
    }

    .policy-header {
        margin-bottom: 40px;
    }

    .policy-title {
        font-size: 2rem;
    }

    .policy-content {
        padding: 30px 25px;
    }

    .policy-intro {
        font-size: 1rem;
        padding: 15px;
    }

    .policy-section {
        margin-bottom: 30px;
    }

    .policy-section h2 {
        font-size: 1.35rem;
    }

    .policy-section h3 {
        font-size: 1.1rem;
    }

    .policy-section p,
    .policy-section ul li {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .policy-page {
        padding: 30px 0 40px;
    }

    .policy-title {
        font-size: 1.75rem;
    }

    .policy-date {
        font-size: 0.9rem;
    }

    .policy-back {
        font-size: 0.9rem;
        padding: 8px 16px;
    }

    .policy-content {
        padding: 25px 20px;
        border-radius: 16px;
    }

    .policy-intro {
        font-size: 0.95rem;
        padding: 12px;
    }

    .policy-section h2 {
        font-size: 1.2rem;
    }

    .policy-section h3 {
        font-size: 1rem;
    }

    .policy-section p,
    .policy-section ul li {
        font-size: 0.9rem;
    }

    .policy-section ul li {
        padding-left: 25px;
    }
}