<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Base Styles */
:root {
    --primary-gradient: linear-gradient(135deg, #4E1184, #0A0A23);
    --accent-color: #FFD700;
    --text-light: #FFFFFF;
    --text-dark: #333333;
    --card-bg: rgba(255, 255, 255, 0.1);
    --shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    --form-bg: rgba(255, 255, 255, 0.1);
    --form-text: #FFFFFF;
    --form-border: rgba(255, 255, 255, 0.2);
    --overlay-bg: rgba(10, 10, 35, 0.85);
    --header-bg: rgba(10, 10, 35, 0.8);
    color-scheme: light dark; /* Ð¯Ð²Ð½Ð¾ ÑƒÐºÐ°Ð·Ñ‹Ð²Ð°ÐµÐ¼ Ð¿Ð¾Ð´Ð´ÐµÑ€Ð¶ÐºÑƒ Ð¾Ð±ÐµÐ¸Ñ… ÑÑ…ÐµÐ¼ */
}

/* Ð¡Ñ‚Ð¸Ð»Ð¸ Ð´Ð»Ñ ÑÐ²ÐµÑ‚Ð»Ð¾Ð¹ Ñ‚ÐµÐ¼Ñ‹ (Ð¿Ð¾ ÑƒÐ¼Ð¾Ð»Ñ‡Ð°Ð½Ð¸ÑŽ) */
:root {
    --primary-gradient: linear-gradient(135deg, #4E1184, #0A0A23);
    --accent-color: #FFD700;
    --text-light: #FFFFFF;
    --text-dark: #333333;
    --card-bg: rgba(255, 255, 255, 0.1);
    --shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    --form-bg: rgba(255, 255, 255, 0.1);
    --form-text: #FFFFFF;
    --form-border: rgba(255, 255, 255, 0.2);
    --overlay-bg: rgba(10, 10, 35, 0.85);
    --header-bg: rgba(10, 10, 35, 0.8);
}

/* Ð¡Ñ‚Ð¸Ð»Ð¸ Ð´Ð»Ñ Ñ‚ÐµÐ¼Ð½Ð¾Ð¹ Ñ‚ÐµÐ¼Ñ‹ */
@media (prefers-color-scheme: dark) {
    :root {
        --primary-gradient: linear-gradient(135deg, #4E1184, #0A0A23);
        --accent-color: #FFD700;
        --text-light: #FFFFFF;
        --text-dark: #333333;
        --card-bg: rgba(255, 255, 255, 0.1);
        --shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        --form-bg: rgba(255, 255, 255, 0.1);
        --form-text: #FFFFFF;
        --form-border: rgba(255, 255, 255, 0.2);
        --overlay-bg: rgba(10, 10, 35, 0.85);
        --header-bg: rgba(10, 10, 35, 0.8);
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-light);
    background: var(--primary-gradient);
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 1rem;
}

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

a {
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
    position: relative;
}

section {
    padding: 100px 0;
    position: relative;
    width: 100%;
    overflow: hidden;
}

.highlight {
    color: var(--accent-color);
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
    margin: 10px 5px;
}

.primary-btn {
    background: var(--accent-color);
    color: var(--text-dark);
}

.secondary-btn {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--text-light);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1.5rem;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 3rem;
    opacity: 0.9;
}

/* Digital Rain Animation */
.digital-rain {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-gradient);
    overflow: hidden;
    z-index: -1;
}

.rain-drop {
    position: absolute;
    top: -50px;
    width: 2px;
    height: 30px;
    background: var(--accent-color);
    opacity: 0.7;
    animation: rain-fall linear infinite;
}

@keyframes rain-fall {
    0% { transform: translateY(0); opacity: 0.7; }
    80% { opacity: 0.5; }
    100% { transform: translateY(calc(100vh + 50px)); opacity: 0; }
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--overlay-bg);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 10px;
    z-index: 1000;
    width: 90%;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cookie-content {
    text-align: center;
}

.cookie-content button {
    background: var(--accent-color);
    color: var(--text-dark);
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    margin-top: 10px;
    cursor: pointer;
    font-weight: 600;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 20px 0;
    transition: all 0.3s ease;
    background: var(--header-bg);
    backdrop-filter: blur(10px);
}

header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.logo img {
    height: 50px;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    font-weight: 500;
    position: relative;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

nav ul li a:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 80px;
    position: relative;
    width: 100%;
}

.hero .container {
    display: flex;
    align-items: center;
    width: 100%;
    position: relative;
    z-index: 2;
}

.hero-content {
    flex: 1;
    padding-right: 50px;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.glitch-text {
    position: relative;
    display: inline-block;
    color: var(--accent-color);
}

@keyframes glitch {
    0% {
        transform: translateX(0);
    }
    25% {
        transform: translateX(5px);
    }
    50% {
        transform: translateX(-5px);
    }
    75% {
        transform: translateX(3px);
    }
    100% {
        transform: translateX(0);
    }
}

.glitch-text::before,
.glitch-text::after {
    content: "Benefits";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch-text::before {
    color: #FF00FF;
    z-index: -1;
    animation: glitch 3s infinite alternate;
}

.glitch-text::after {
    color: #00FFFF;
    z-index: -2;
    animation: glitch 2s infinite alternate-reverse;
}

.hero-image {
    flex: 1;
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    max-height: 450px;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: perspective(1000px) rotateY(15deg);
    transition: all 0.5s ease;
}

.hero-image:hover img {
    transform: perspective(1000px) rotateY(0);
}

/* Sand Timer Section */
.sand-timer {
    background: rgba(10, 10, 35, 0.7);
    position: relative;
    overflow: hidden;
    width: 100%;
}

.timer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 50px;
    width: 100%;
}

.timer-visual {
    width: 200px;
    height: 300px;
    position: relative;
    margin-bottom: 30px;
}

.sand-top,
.sand-bottom {
    width: 100%;
    height: 45%;
    background: #FFD700;
    position: absolute;
    border-radius: 20px;
}

.sand-top {
    top: 0;
    clip-path: polygon(0 0, 100% 0, 80% 100%, 20% 100%);
}

.sand-bottom {
    bottom: 0;
    clip-path: polygon(20% 0, 80% 0, 100% 100%, 0 100%);
}

.sand-falling {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 30px;
    background: #FFD700;
    animation: sandFall 2s infinite;
}

@keyframes sandFall {
    0% { height: 0; top: 45%; }
    100% { height: 30px; top: 55%; }
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    width: 100%;
    max-width: 500px;
}

.time-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 15px;
    border-radius: 10px;
    min-width: 80px;
    margin-bottom: 10px;
}

.time-unit span:first-child {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
}

.label {
    font-size: 0.8rem;
    opacity: 0.8;
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
    width: 100%;
}

.venues-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 40px;
    width: 100%;
}

.offer-card {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.offer-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent-color);
    color: var(--text-dark);
    padding: 8px 12px;
    border-radius: 30px;
    font-weight: 700;
    z-index: 1;
}

.offer-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.offer-card h3 {
    padding: 20px 20px 10px;
}

.offer-card p {
    padding: 0 20px 20px;
    opacity: 0.9;
}

.offer-timer {
    padding: 0 20px 20px;
    font-size: 0.9rem;
    color: var(--accent-color);
}

/* Caravan Trail Section */
.caravan-trail {
    background: url('https://images.unsplash.com/photo-1504376379689-8d54347b26c6?ixlib=rb-1.2.1&amp;auto=format&amp;fit=crop&amp;w=1500&amp;q=80') no-repeat center/cover;
    position: relative;
}

.caravan-trail::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--overlay-bg);
    z-index: 1;
}

.caravan-trail .container {
    position: relative;
    z-index: 2;
}

.trail-path {
    display: flex;
    flex-direction: column;
    position: relative;
    margin: 50px 0;
}

.trail-node {
    display: flex;
    align-items: flex-start;
    margin-bottom: 40px;
    position: relative;
    opacity: 0.6;
    transition: all 0.5s ease;
}

.trail-node.active {
    opacity: 1;
}

.trail-node::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 25px;
    width: 2px;
    height: calc(100% + 40px);
    background: var(--accent-color);
    z-index: 1;
}

.trail-node:last-child::before {
    display: none;
}

.node-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-right: 20px;
    border: 2px solid var(--accent-color);
    position: relative;
    z-index: 2;
}

.node-content {
    flex: 1;
}

.node-content h3 {
    margin-bottom: 5px;
}

.caravan-animation {
    position: relative;
    height: 150px;
    margin-top: 30px;
}

.desert-bg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background: var(--accent-color);
    opacity: 0.3;
    border-radius: 5px;
}

.camel {
    position: absolute;
    bottom: 10px;
    left: 20%;
    width: 60px;
    height: 40px;
    background: url('https://images.unsplash.com/photo-1557581462-0783b595fa6a?ixlib=rb-1.2.1&amp;auto=format&amp;fit=crop&amp;w=100&amp;q=80') no-repeat center/cover;
    transition: left 1s ease;
}

/* Discount Spell Section */
.discount-spell {
    background: url('https://images.unsplash.com/photo-1603033156166-2ae22eb2b7e2?ixlib=rb-1.2.1&amp;auto=format&amp;fit=crop&amp;w=1500&amp;q=80') no-repeat center/cover;
    position: relative;
    overflow: hidden;
}

.spell-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 30px 0;
}

.spell-ornament {
    width: 150px;
    height: 300px;
    position: absolute;
    opacity: 0.3;
}

.spell-ornament.left {
    left: 0;
    background: url('https://images.unsplash.com/photo-1590845947676-fa2576255880?ixlib=rb-1.2.1&amp;auto=format&amp;fit=crop&amp;w=200&amp;q=80') no-repeat center/cover;
    transform: scaleX(-1);
}

.spell-ornament.right {
    right: 0;
    background: url('https://images.unsplash.com/photo-1590845947676-fa2576255880?ixlib=rb-1.2.1&amp;auto=format&amp;fit=crop&amp;w=200&amp;q=80') no-repeat center/cover;
}

.spell-form {
    background: var(--overlay-bg);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 15px;
    width: 100%;
    max-width: 600px;
    position: relative;
    z-index: 1;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--form-border);
    border-radius: 5px;
    background: var(--form-bg);
    color: var(--form-text);
    font-family: 'Poppins', sans-serif;
}

.form-group input:focus {
    outline: none;
    border-color: var(--accent-color);
}

.form-group.checkbox {
    display: flex;
    align-items: center;
}

.form-group.checkbox input {
    width: auto;
    margin-right: 10px;
}

.form-group.checkbox label {
    margin-bottom: 0;
}

.spell-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

/* Benefit Catcher Section */
.benefit-catcher {
    background: linear-gradient(135deg, #0A0A23, #4E1184);
}

.game-container {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.game-instructions {
    margin-bottom: 30px;
}

.game-board {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.game-card {
    aspect-ratio: 1;
    perspective: 1000px;
    cursor: pointer;
}

.card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.game-card.flipped .card-inner {
    transform: rotateY(180deg);
}

.card-front, .card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.card-front {
    background: var(--card-bg);
    background-image: url('https://images.unsplash.com/photo-1580893246395-52aead8960dc?ixlib=rb-1.2.1&amp;auto=format&amp;fit=crop&amp;w=100&amp;q=80');
    background-size: cover;
    background-position: center;
    border: 2px solid var(--accent-color);
}

.card-back {
    background: var(--primary-gradient);
    transform: rotateY(180deg);
    border: 2px solid var(--accent-color);
}

.card-back i {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 10px;
}

.game-card.matched .card-back {
    background: linear-gradient(135deg, #228B22, #006400);
}

.game-result {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    margin-top: 20px;
}

.game-result.hidden {
    display: none;
}

.coupon {
    background: var(--accent-color);
    color: var(--text-dark);
    padding: 15px;
    border-radius: 5px;
    font-weight: 700;
    margin: 20px 0;
    display: flex;
    justify-content: space-between;
}

.coupon-code {
    font-family: 'Courier New', monospace;
    letter-spacing: 2px;
}

/* Diwaniya Section */
.diwaniya {
    background: url('https://images.unsplash.com/photo-1578913071927-fb3075c663ae?ixlib=rb-1.2.1&amp;auto=format&amp;fit=crop&amp;w=1500&amp;q=80') no-repeat center/cover;
    position: relative;
}

.diwaniya::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--overlay-bg);
    z-index: 1;
}

.diwaniya .container {
    position: relative;
    z-index: 2;
}

.diwaniya-setting {
    position: relative;
    padding-bottom: 50px;
}

.testimonials-slider {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-bottom: 50px;
}

.testimonial {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 30px;
    width: 100%;
    max-width: 350px;
    box-shadow: var(--shadow);
}

.testimonial-content {
    margin-bottom: 20px;
}

.testimonial-content p {
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    border: 2px solid var(--accent-color);
}

.testimonial-author h4 {
    margin-bottom: 5px;
}

.testimonial-author p {
    margin-bottom: 0;
    opacity: 0.8;
    font-size: 0.9rem;
}

.diwaniya-decor {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30px;
}

.stats-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-top: 50px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    width: 30%;
    min-width: 200px;
    margin-bottom: 20px;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 10px;
}

/* Palm Paradise Section */
.palm-paradise {
    background: linear-gradient(135deg, #006400, #228B22);
    position: relative;
}

.venue-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.filter-btn {
    background: transparent;
    border: 2px solid var(--text-light);
    color: var(--text-light);
    padding: 8px 20px;
    border-radius: 30px;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    transition: all 0.3s ease;
}

.filter-btn.active, .filter-btn:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--text-dark);
}

.venues-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.venue-card {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.venue-card:hover {
    transform: translateY(-10px);
}

.venue-rating {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent-color);
    color: var(--text-dark);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    z-index: 1;
}

.venue-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.venue-card h3 {
    padding: 20px 20px 10px;
}

.venue-card p {
    padding: 0 20px 20px;
    opacity: 0.9;
}

.venue-meta {
    display: flex;
    justify-content: space-between;
    padding: 0 20px 20px;
    font-size: 0.9rem;
}

.venue-meta span {
    display: flex;
    align-items: center;
}

.venue-meta i {
    margin-right: 5px;
    color: var(--accent-color);
}

.palm-trees {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    pointer-events: none;
}

.palm {
    position: absolute;
    bottom: 0;
    width: 120px;
    height: 200px;
    background: url('https://images.unsplash.com/photo-1513104890138-7c749659a591?ixlib=rb-1.2.1&amp;auto=format&amp;fit=crop&amp;w=200&amp;q=80') no-repeat center/cover;
}

.palm.left {
    left: 5%;
}

.palm.right {
    right: 5%;
    transform: scaleX(-1);
}

/* Contact Section */
.contact {
    background: linear-gradient(135deg, #4E1184, #0A0A23);
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.info-item {
    display: flex;
    margin-bottom: 30px;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-right: 20px;
    min-width: 30px;
}

.info-item h3 {
    margin-bottom: 5px;
}

.contact-map {
    flex: 1;
    min-width: 300px;
    height: 350px;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border-radius: 15px;
}

/* Footer */
footer {
    background: #0A0A23;
    padding: 70px 0 20px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 50px;
}

.footer-logo {
    flex: 1;
    min-width: 200px;
}

.footer-logo img {
    height: 50px;
    margin-bottom: 15px;
}

.footer-links {
    min-width: 150px;
}

.footer-links h3 {
    color: var(--accent-color);
    margin-bottom: 20px;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a:hover {
    color: var(--accent-color);
}

.footer-newsletter {
    flex: 1;
    min-width: 250px;
}

.footer-newsletter h3 {
    color: var(--accent-color);
    margin-bottom: 20px;
}

.footer-newsletter form {
    display: flex;
    margin-top: 15px;
}

.footer-newsletter input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid var(--form-border);
    border-radius: 30px 0 0 30px;
    background: var(--form-bg);
    color: var(--form-text);
    font-family: 'Poppins', sans-serif;
}

.footer-newsletter input:focus {
    outline: none;
    border-color: var(--accent-color);
}

.footer-newsletter button {
    background: var(--accent-color);
    color: var(--text-dark);
    border: none;
    padding: 0 20px;
    border-radius: 0 30px 30px 0;
    cursor: pointer;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom a {
    color: var(--accent-color);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .trail-node::before {
        height: calc(100% + 20px);
    }
    
    .venue-card {
        max-width: 350px;
        margin: 0 auto 20px;
    }
    
    .offers-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }
    
    nav {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background: var(--header-bg);
        backdrop-filter: blur(10px);
        padding: 20px;
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        transition: all 0.5s ease;
        z-index: 100;
    }
    
    nav.active {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }
    
    nav ul {
        flex-direction: column;
        width: 100%;
    }
    
    nav ul li {
        margin: 15px 0;
        width: 100%;
        text-align: center;
    }
    
    .hero .container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-content {
        padding-right: 0;
        margin-bottom: 50px;
        width: 100%;
    }
    
    .hero-image {
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .timer-container {
        flex-direction: column;
        align-items: center;
        width: 100%;
        max-width: 100%;
    }
    
    .countdown {
        margin-top: 30px;
        width: 100%;
        justify-content: center;
        gap: 10px;
        flex-wrap: wrap;
    }
    
    .trail-node {
        align-items: flex-start;
        margin-bottom: 30px;
        width: 100%;
    }
    
    .node-content {
        width: 100%;
    }
    
    .testimonial {
        width: 100%;
        margin-bottom: 20px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .testimonials-slider {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .contact-container {
        width: 100%;
    }
    
    .contact-map iframe {
        width: 100%;
        height: 300px;
    }
    
    .offers-grid {
        grid-template-columns: 1fr;
    }
    
    .offer-card {
        width: 100%;
        margin: 0 0 20px 0;
    }
    
    .game-board {
        grid-template-columns: 1fr;
    }
    
    .stat-item {
        width: 100%;
        margin-bottom: 20px;
    }
    
    .venue-filters {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    
    .filter-btn {
        width: 100%;
        max-width: 200px;
        margin-bottom: 10px;
    }
    
    .venues-grid {
        grid-template-columns: 1fr;
    }
    
    .timer-visual {
        transform: scale(0.8);
    }
    
    .time-unit {
        margin: 0 5px;
        padding: 5px;
    }
    
    .time-unit span:first-child {
        font-size: 1.5rem;
    }
    
    .spell-form {
        padding: 15px;
    }
}

@media (max-width: 576px) {
    .hero {
        height: auto;
        min-height: 100vh;
        padding-top: 100px;
        padding-bottom: 50px;
    }
    
    .sand-timer {
        padding-top: 60px;
        padding-bottom: 60px;
    }
    
    .offers-grid {
        width: 100%;
    }
    
    .offer-card {
        width: 100%;
        margin: 0 0 20px 0;
    }
    
    .venue-card {
        width: 100%;
    }
    
    .cookie-consent {
        width: 90%;
        max-width: 90%;
        left: 5%;
        transform: none;
    }
    
    /* Fix floating elements */
    .digital-rain {
        width: 100vw;
        height: 100%;
        left: 0;
        top: 0;
    }
    
    .contact-info {
        width: 100%;
    }
    
    .contact-map {
        width: 100%;
        height: 300px;
    }
    
    .spell-form {
        width: 100%;
        max-width: 100%;
        padding: 20px 15px;
    }
    
    .form-group input {
        width: 100%;
    }
    
    .spell-container {
        padding: 20px 0;
        width: 100%;
    }
    
    /* Fix vertical spacing */
    section {
        padding: 60px 0;
    }
    
    .trail-path {
        margin: 30px 0;
    }
    
    .offers-grid, .venues-grid {
        margin-top: 30px;
    }
    
    .testimonials-slider {
        align-items: center;
        gap: 20px;
    }
    
    .testimonial {
        width: 90%;
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
    }
} </pre></body></html>