:root {
    /* Fonts */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Light Theme Colors */
    --color-bg-light: #ffffff;
    --color-text-light: #1a1a1a;
    --color-primary-light: #6A0DAD;
    /* Purple */
    --color-secondary-light: #00D4FF;
    /* Cyan */
    --color-accent-light: var(--color-secondary-light);
    /* Set to Cyan to consolidate colors */
    --color-card-bg-light: #f3f3f3;
    --color-footer-bg-light: #e6e6e6;

    /* Dark Theme Colors */
    --color-bg-dark: #0a0a0a;
    --color-text-dark: #f0f0f0;
    --color-primary-dark: #b829ea;
    /* Neon Purple */
    --color-secondary-dark: #00e5ff;
    /* Neon Cyan */
    --color-accent-dark: var(--color-secondary-dark);
    /* Set to Neon Cyan to consolidate colors */
    --color-card-bg-dark: #1f1f1f;
    --color-footer-bg-dark: #111111;

    /* Defaults (Light Mode initially) */
    --bg-color: var(--color-bg-light);
    --text-color: var(--color-text-light);
    --primary-color: var(--color-primary-light);
    --secondary-color: var(--color-secondary-light);
    --accent-color: var(--color-accent-light);
    --card-bg: var(--color-card-bg-light);
    --nav-bg: rgba(255, 255, 255, 0.9);
    --footer-bg: var(--color-footer-bg-light);
}

[data-theme="dark"] {
    --bg-color: var(--color-bg-dark);
    --text-color: var(--color-text-dark);
    --primary-color: var(--color-primary-dark);
    --secondary-color: var(--color-secondary-dark);
    --accent-color: var(--color-accent-dark);
    --card-bg: var(--color-card-bg-dark);
    --nav-bg: rgba(10, 10, 10, 0.9);
    --footer-bg: var(--color-footer-bg-dark);
}

/* Home 2 Distinct Theme (Sunset/Fire) */
/* Home 2 Distinct Theme (Sunset/Fire) - COLORS REVERTED TO DEFAULT */
/* Layout classes utilize .home-variant-2 but colors are now inherited from :root */

/* Dropdown Menu */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: var(--card-bg);
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
    border-radius: 8px;
    top: 100%;
    left: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Home 2 Unique Components */

/* 1. Split Hero */
.home-variant-2 h2.text-center {
    font-size: 2.5rem;
    margin-bottom: 60px;
}

.home-variant-2 .hero-split {
    background: none !important;
    /* Remove bg image */
    position: relative;
    overflow: hidden;
    height: 90vh;
    /* Taller */
}

.home-variant-2 .hero-split::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 50%, rgba(106, 13, 173, 0.15), transparent 60%),
        linear-gradient(to right, var(--bg-color), transparent);
    z-index: -1;
}

.home-variant-2 .container.expanded-width {
    max-width: 1400px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    height: 100%;
}

.home-variant-2 .hero-content {
    flex: 1;
    text-align: left;
    padding-left: 20px;
}

.home-variant-2 .hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    perspective: 1000px;
}

.home-variant-2 .hero-img-3d {
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    transform: rotateY(-15deg) rotateX(5deg);
    box-shadow: -20px 20px 50px rgba(0, 0, 0, 0.5);
    transition: transform 0.5s ease;
}

.home-variant-2 .hero-visual:hover .hero-img-3d {
    transform: rotateY(0deg) rotateX(0deg);
}

/* Glitch Effect */
.glitch-text {
    font-size: 5rem;
    position: relative;
    color: var(--text-color);
    letter-spacing: -2px;
}

.glitch-text::before,
.glitch-text::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.8;
}

.glitch-text::before {
    color: var(--primary-color);
    z-index: -1;
    animation: glitch-anim-1 2s infinite linear alternate-reverse;
}

.glitch-text::after {
    color: var(--secondary-color);
    z-index: -2;
    animation: glitch-anim-2 3s infinite linear alternate-reverse;
}

@keyframes glitch-anim-1 {
    0% {
        clip-path: inset(20% 0 80% 0);
        transform: translate(-2px, 1px);
    }

    100% {
        clip-path: inset(60% 0 10% 0);
        transform: translate(2px, -1px);
    }
}

@keyframes glitch-anim-2 {
    0% {
        clip-path: inset(10% 0 60% 0);
        transform: translate(2px, 1px);
    }

    100% {
        clip-path: inset(80% 0 5% 0);
        transform: translate(-2px, -1px);
    }
}

/* 2. Featured Grid (Spotlight) */
.featured-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    height: 500px;
}

.feature-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: var(--card-bg);
    transition: transform 0.3s;
}

.main-feature {
    height: 100%;
    display: flex;
    align-items: flex-end;
}

.feature-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s;
}

.main-feature:hover .feature-bg {
    transform: scale(1.1);
}

.feature-content {
    position: relative;
    z-index: 2;
    padding: 30px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    color: white;
}

.feature-col {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.small-feature {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.small-feature h3 {
    color: #ffffff;
}

.icon-large {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

/* 3. Masonry Testimonials */
.masonry-grid {
    column-count: 3;
    column-gap: 30px;
}

.testi-card {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 16px;
    margin-bottom: 30px;
    break-inside: avoid;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.testi-card h4 {
    margin-top: auto;
}

.large-testi {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
}

.large-testi .quote-icon {
    color: rgba(255, 255, 255, 0.3);
}

.testi-text.big {
    font-size: 1.4rem;
    font-weight: 300;
    line-height: 1.4;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
}

.avatar {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

@media (max-width: 900px) {
    .home-variant-2 .container.expanded-width {
        flex-direction: column;
        text-align: center;
        justify-content: center;
        padding: 0 20px;
    }

    .home-variant-2 .hero-content {
        padding-left: 0;
        margin-bottom: 40px;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .home-variant-2 .hero-content h1 {
        text-align: center;
    }

    .home-variant-2 .hero-content p {
        text-align: center;
        max-width: 600px;
        margin: 0 auto 30px;
    }

    .home-variant-2 .hero-btns {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .home-variant-2 .hero-visual {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .featured-grid {
        grid-template-columns: 1fr;
        height: auto;
    }

    .main-feature {
        height: 300px;
    }

    .masonry-grid {
        column-count: 1;
    }
}

.dropdown-content a {
    color: var(--text-color);
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    transition: background-color 0.2s;
    position: relative;
}

.dropdown-content a:hover {
    background-color: var(--primary-color);
    color: white;
}

.dropdown-content a.active {
    color: var(--accent-color);
}

.dropdown-content a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--accent-color);
    transition: width 0.3s;
}

.dropdown-content a.active::after {
    width: 100%;
}


.dropdown:hover .dropdown-content {
    display: block;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    transition: background-color 0.3s ease, color 0.3s ease;
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.5rem;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 80px 0;
}

.page-top-spacing {
    padding-top: 150px;
    padding-bottom: 80px;
    /* Ensure bottom spacing is also consistent */
}

.text-center {
    text-align: center;
}

.mb-4 {
    margin-bottom: 2rem;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: transform 0.2s, box-shadow 0.2s;
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px var(--primary-color);
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid var(--secondary-color);
    color: var(--text-color);
}

.btn-secondary:hover {
    background-color: var(--secondary-color);
    color: #ffffff;
    /* Changed from dark text to white for better visibility on bright cyan */
}

/* Navigation */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: var(--nav-bg);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    font-family: var(--font-heading);
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.2s;
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--accent-color);
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--accent-color);
    transition: width 0.3s;
}

.nav-links a:not(.btn-signin):hover::after,
.nav-links a:not(.btn-signin).active::after {
    width: 100%;
}

.theme-toggle {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-color);
    font-size: 1.2rem;
    transition: color 0.3s;
}

.theme-toggle:hover {
    color: var(--primary-color);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-color);
    font-size: 1.5rem;
    cursor: pointer;
}

.btn-signin {
    background-color: var(--secondary-color);
    color: var(--color-bg-dark);
    padding: 8px 16px;
    font-size: 0.9rem;
    margin: 0 10px;
    vertical-align: middle;
    display: inline-block;
}

.btn-signin:hover {
    background-color: var(--primary-color);
    color: white;
    /* Ensure text is visible on hover */
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.85)), url('https://i.etsystatic.com/52782709/r/il/aa1e3e/6377261577/il_570xN.6377261577_jwqz.jpg');
    background-size: cover;
    background-position: center;
    margin-top: 70px;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    background: linear-gradient(45deg, var(--color-primary-dark), var(--color-secondary-dark));
    /* Force neon colors */
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    line-height: 1.1;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.5));
    /* Better shadow for clipped text */
}

.hero .btn-secondary {
    color: white;
    border-color: white;
    /* Make border white for maximum contrast, or keep secondary? User said 'visible'. White is safest. */
}

.home-variant-2 .hero-split .btn-secondary {
    color: var(--primary-color);
    border-color: var(--primary-color);
    background-color: white;
}

.home-variant-2 .hero-split .btn-secondary:hover {
    background-color: var(--primary-color);
    color: white;
}

.hero .btn-secondary:hover {
    background-color: white;
    color: var(--primary-color);
}

.hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 30px;
    opacity: 1;
    color: var(--accent-color);
    /* Explicit white */

    /* Stronger shadow for visibility */
}

/* Grid Layouts (Common) */
.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    gap: 30px;
}

.card {
    background: var(--card-bg);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.3);
}

.card-img-placeholder {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #333, #555);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.2);
    font-size: 3rem;
}

/* Card Images */
.card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.card-content {
    padding: 20px;
}

.card-title {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

/* Features / Split Section */
.split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.split-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.split-content p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 20px;
}

.split-content .btn {
    display: block;
    margin: 0 auto;
}

.split-image {
    height: auto;
    min-height: 400px;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    position: relative;
}

.split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Events Section */
.events-section {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    padding: 60px;
    text-align: center;
}

.events-section h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
}

.events-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}

.event-item {
    flex: 1;
    min-width: 250px;
    background: var(--card-bg);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid var(--primary-color);
}

.event-icon {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.event-title {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

/* New Sections Styling */
.testimonials-section {
    padding: 80px 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.2));
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.testimonial-card {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 16px;
    border-left: 4px solid var(--accent-color);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.testimonial-card h4 {
    margin-top: auto;
    padding-top: 15px;
    align-self: flex-start;
    /* Keeps text left-aligned while being at the bottom */
}

.quote-icon {
    font-size: 2rem;
    color: var(--accent-color);
    opacity: 0.5;
    margin-bottom: 10px;
}

.newsletter-section {
    padding: 80px 0;
    text-align: center;
}

.newsletter-box {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border-radius: 20px;
    padding: 60px;
    color: white;
    text-align: center;
}

.newsletter-form {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.newsletter-input {
    padding: 12px 20px;
    border-radius: 30px;
    border: none;
    min-width: 300px;
    font-family: var(--font-body);
}

.btn-light {
    background-color: white;
    color: var(--primary-color);
    border: none;
}

.btn-light:hover {
    background-color: var(--bg-color);
    color: var(--primary-color);
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin: 40px 0 80px;
}

.pricing-card {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    position: relative;
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pricing-card .btn {
    margin-top: auto;
}

.pricing-card.popular {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
    z-index: 10;
    box-shadow: 0 0 30px rgba(106, 13, 173, 0.3);
}

.pricing-card.popular .btn {
    margin-top: auto;
    margin-bottom: 10px;
}

.pricing-card:hover {
    transform: translateY(-10px);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
}

.price {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin: 20px 0;
    line-height: 1;
}

.price span {
    font-size: 1rem;
    color: var(--text-color);
    opacity: 0.7;
    font-weight: 400;
}

.features-list {
    list-style: none;
    text-align: left;
    margin: 30px 0;
}

.features-list li {
    margin-bottom: 15px;
    font-size: 1rem;
    display: flex;
    align-items: center;
}

.features-list i {
    color: var(--accent-color);
    margin-right: 15px;
    font-size: 1.1rem;
}

/* Amenities Grid */
.amenities-section {
    margin-bottom: 60px;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.amenity-item {
    text-align: center;
    padding: 20px;
}

.amenity-icon {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.amenity-item h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.amenity-item p {
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Booking Form */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: var(--card-bg);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-input {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(0, 0, 0, 0.2);
    color: var(--text-color);
    font-family: var(--font-body);
}

.form-input:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* Scroll Top Button */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--accent-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, transform 0.3s;
    z-index: 999;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-5px);
}

/* Shop Page Styles */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.category-card {
    background: var(--card-bg);
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.category-icon {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.category-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.category-card p {
    opacity: 0.8;
    margin-bottom: 20px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.product-card {
    background: var(--card-bg);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.product-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.product-info {
    padding: 25px;
    display: flex;
    flex-direction: column;
    height: calc(100% - 250px);
}

.product-info .btn {
    margin-top: auto;
}

.product-info h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.product-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.product-description {
    opacity: 0.8;
    margin-bottom: 20px;
    line-height: 1.5;
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.offer-card {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.offer-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: float 6s ease-in-out infinite;
}

.offer-badge {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 15px;
}

.offer-card h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.offer-card p {
    margin-bottom: 10px;
    opacity: 0.9;
}

.offer-card .btn {
    display: block;
    width: fit-content;
    margin: auto auto 0;
}

.offer-code {
    font-family: 'Courier New', monospace;
    background: rgba(255, 255, 255, 0.2);
    padding: 5px 10px;
    border-radius: 5px;
    display: inline-block;
    margin-bottom: 20px;
}

.offer-description {
    font-style: italic;
    opacity: 0.8;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

/* Mobile Responsive for Shop */
@media (max-width: 768px) {
    .categories-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }

    .product-card {
        text-align: center;
    }

    .offers-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .category-card {
        padding: 30px 20px;
    }

    .product-image {
        height: 200px;
    }

    .product-info {
        padding: 20px;
    }

    .offer-card {
        padding: 30px 20px;
    }
}

/* Tablet Responsive for Shop */
@media (max-width: 1024px) {

    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .categories-grid,
    .products-grid,
    .offers-grid {
        gap: 20px;
    }

    .category-card,
    .product-card,
    .offer-card {
        padding: 20px;
        text-align: center;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .games-grid,
    .testimonial-grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px;
        text-align: center;
        /* Center testimonial text if needed */
    }

    .testimonial-card {
        align-items: center;
        text-align: center;
    }

    .testimonial-card h4 {
        align-self: center;
        /* Center author name */
    }

    .games-grid .card,
    .testimonial-grid .testimonial-card {
        flex: 1 1 calc(50% - 30px);
        max-width: calc(50% - 15px);
    }

    .testimonial-grid .testimonial-card {
        border-left: 4px solid var(--accent-color);
    }

    @media (max-width: 900px) {

        .games-grid .card,
        .testimonial-grid .testimonial-card {
            flex: 1 1 100%;
            max-width: 100%;
        }
    }

    /* Home2 tablet specific styles */
    .home-variant-2 .hero-split {
        height: auto;
        min-height: 90vh;
    }

    .home-variant-2 .container.expanded-width {
        max-width: 1200px;
        gap: 40px;
    }

    .home-variant-2 .hero-content h1 {
        font-size: 4rem;
    }

    .home-variant-2 .hero-content p {
        max-width: 500px;
    }

    .home-variant-2 .hero-img-3d {
        max-width: 400px;
    }
}

/* Footer (New 4-Column) */
footer {
    background-color: var(--footer-bg);
    padding: 80px 0 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-col h4 {
    color: var(--text-color);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-col p {
    opacity: 0.7;
    margin-bottom: 10px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--text-color);
    opacity: 0.7;
    text-decoration: none;
    transition: opacity 0.2s;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--text-color);
    text-decoration: none;
    transition: background 0.3s, transform 0.3s;
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    opacity: 0.5;
    font-size: 0.9rem;
}

/* Tablet View Footer Adjustment */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    /* Home2 specific mobile styles */
    .home-variant-2 .hero-split {
        height: auto;
        min-height: 100vh;
        padding: 100px 0 80px;
    }

    .home-variant-2 .container.expanded-width {
        padding: 0 15px;
        gap: 30px;
    }

    .home-variant-2 .hero-content {
        margin-bottom: 30px;
    }

    .home-variant-2 .hero-content h1 {
        font-size: 3rem;
        line-height: 1.1;
        margin-bottom: 20px;
    }

    .home-variant-2 .hero-content p {
        font-size: 1.1rem;
        margin: 0 auto 25px;
    }

    .home-variant-2 .hero-btns,
    .hero-btns {
        display: flex;
        flex-direction: column;
        gap: 15px;
        align-items: center;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .home-variant-2 .hero-btns .btn,
    .hero-btns .btn {
        width: 100%;
        max-width: 280px;
        padding: 12px 24px;
        display: block;
    }

    .home-variant-2 .hero-visual {
        margin-top: 20px;
    }

    .home-variant-2 .hero-img-3d {
        max-width: 350px;
        width: 100%;
        height: auto;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: var(--card-bg);
        flex-direction: column;
        align-items: center;
        padding: 30px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        z-index: 1001;
    }

    .nav-links.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
        margin-left: 15px;
    }

    nav {
        display: flex;
        align-items: center;
        width: 100%;
        justify-content: space-between;
        position: relative;
    }

    .logo {
        position: static;
        transform: none;
        margin: 0;
        z-index: 10;
    }

    .theme-toggle {
        margin-left: auto;
        order: 10;
        position: relative;
        z-index: 11;
    }

    .menu-toggle {
        order: 11;
        position: relative;
        z-index: 11;
        margin-left: 15px;
    }

    .split-section,
    .categories-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .split-content {
        order: 2;
    }

    .split-image {
        order: 1;
        min-height: 300px;
    }

    .split-content .btn {
        margin: 0 auto;
    }

    .newsletter-form {
        flex-direction: column;
        align-items: center;
    }

    .newsletter-input {
        width: 100%;
        min-width: auto;
    }

    /* Flatten Dropdown on Mobile */
    .dropdown>a {
        display: none;
    }

    .dropdown-content {
        display: flex;
        flex-direction: column;
        position: static;
        box-shadow: none;
        background: transparent;
        border: none;
        width: 100%;
        padding: 0;
        min-width: auto;
        overflow: visible;
    }

    .dropdown-content a {
        display: block;
        width: fit-content;
        padding: 10px 0;
        margin: 0 auto;
        font-weight: 500;
        color: var(--text-color);
        opacity: 1;
        text-align: center;
        text-decoration: none;
        position: relative;
    }

    .dropdown-content a.active {
        color: var(--accent-color);
    }

    /* Ensure underline shows on mobile */
    .dropdown-content a.active::after {
        content: '';
        position: absolute;
        width: 100%;
        height: 2px;
        bottom: 0;
        left: 0;
        background-color: var(--accent-color);
    }

    .nav-links li.dropdown {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

}

/* Authentication Pages */
.auth-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(106, 13, 173, 0.1), rgba(0, 212, 255, 0.1));
}

body>.theme-toggle {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 2000;
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

body>.theme-toggle:hover {
    transform: scale(1.1);
    color: var(--primary-color);
}


/* Fixed stray code from previous edit */


/* Dark Theme Styles */
[data-theme="dark"] {
    --primary-color: #bb86fc;
    --secondary-color: #03dac6;
    --accent-color: #cf6679;
    --text-color: #ffffff;
    --card-bg: #1e1e1e;
    --footer-bg: #121212;
    background-color: #121212;
}

[data-theme="dark"] .auth-section {
    background: linear-gradient(135deg, rgba(187, 134, 252, 0.1), rgba(3, 218, 198, 0.1));
}

[data-theme="dark"] .auth-card {
    background: #2a2a2a !important;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

[data-theme="dark"] .auth-header h1,
[data-theme="dark"] .auth-header h3,
[data-theme="dark"] .auth-header p {
    color: #ffffff;
}

[data-theme="dark"] body>.theme-toggle {
    background: #2a2a2a;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

[data-theme="dark"] .auth-form .form-input {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
}

[data-theme="dark"] .auth-form .form-input:focus {
    border-color: var(--primary-color);
}

[data-theme="dark"] .input-icon {
    color: rgba(255, 255, 255, 0.7);
}

[data-theme="dark"] .password-toggle {
    color: rgba(255, 255, 255, 0.7);
}

[data-theme="dark"] .checkbox-label {
    color: #ffffff;
}

[data-theme="dark"] .checkmark {
    border-color: var(--primary-color);
}

[data-theme="dark"] .forgot-link {
    color: var(--primary-color);
}

[data-theme="dark"] .auth-divider::before {
    background: rgba(255, 255, 255, 0.2);
}

[data-theme="dark"] .auth-divider span {
    background: #2a2a2a;
    color: rgba(255, 255, 255, 0.7);
}

[data-theme="dark"] .auth-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .auth-footer p {
    color: rgba(255, 255, 255, 0.7);
}

[data-theme="dark"] .auth-link {
    color: var(--primary-color);
}

.auth-section .container {
    width: 100%;
    display: flex;
    justify-content: center;
}

.auth-container {
    max-width: 1100px;
    width: 100%;
    margin: 0 auto;
}


.auth-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

.auth-header-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.auth-header {
    text-align: center;
    margin-bottom: 30px;
}

.auth-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.auth-header h1 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: var(--text-color);
}

.auth-header p {
    color: var(--text-color);
    opacity: 0.7;
}

.auth-form {
    margin-bottom: 30px;
}

.form-row {
    display: flex;
    gap: 15px;
}

.form-row .form-group {
    flex: 1;
}

.input-wrapper {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-color);
    opacity: 0.5;
}

.auth-form .form-input {
    padding-left: 45px;
    width: 100%;
    padding: 14px 18px 14px 45px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(0, 0, 0, 0.2);
    color: var(--text-color);
    font-family: var(--font-body);
    transition: border-color 0.3s;
    font-size: 1rem;
}

.auth-form .form-input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.password-toggle {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--text-color);
    opacity: 0.5;
    cursor: pointer;
    transition: opacity 0.3s;
}

.password-toggle:hover {
    opacity: 1;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--text-color);
    text-align: left;
    gap: 8px;
}



.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 18px;
    height: 18px;
    border: 2px solid var(--primary-color);
    border-radius: 4px;
    margin-right: 8px;
    position: relative;
    transition: background-color 0.3s;
}

.checkbox-label input[type="checkbox"]:checked+.checkmark {
    background-color: var(--primary-color);
}

.checkbox-label input[type="checkbox"]:checked+.checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
}

.forgot-link {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.forgot-link:hover {
    color: var(--accent-color);
}

.auth-btn {
    width: 60%;
    padding: 14px;
    font-size: 1rem;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border: none;
    margin-bottom: 15px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.auth-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(106, 13, 173, 0.3);
}

.auth-divider {
    text-align: center;
    margin: 20px 0;
    position: relative;
}

.auth-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
}

.auth-divider span {
    background: var(--card-bg);
    padding: 0 20px;
    color: var(--text-color);
    opacity: 0.7;
    font-size: 0.9rem;
    position: relative;
}

.social-auth {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 20px;
    border-radius: 10px;
    font-weight: 500;
    transition: transform 0.2s;
    min-width: 180px;
}

.social-btn:hover {
    transform: translateY(-2px);
}

.google-btn {
    background-color: #4285f4;
    color: white;
}

.facebook-btn {
    background-color: #1877f2;
    color: white;
}

.auth-footer {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.auth-footer p {
    color: var(--text-color);
    opacity: 0.7;
}

.auth-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.auth-link:hover {
    color: var(--accent-color);
}

/* Tablet Responsive Styles for Auth Pages */
@media (max-width: 1024px) {
    .auth-container {
        max-width: 95%;
        padding: 0 15px;
    }

    .auth-card {
        padding: 40px 30px;
        max-width: 640px;
    }

    .auth-header h3 {
        font-size: 1.8rem;
    }

    .form-row {
        gap: 20px;
    }

    .social-btn {
        min-width: 160px;
        padding: 10px 16px;
        font-size: 0.9rem;
    }

    .auth-btn {
        width: 70%;
        padding: 12px;
    }
}

/* Mobile Responsive Styles for Auth Pages */
@media (max-width: 768px) {
    .auth-section {
        padding: 40px 0;
    }

    .auth-container {
        max-width: 95%;
        padding: 0;
        margin: 0 auto;
    }

    .auth-card {
        padding: 30px 20px;
        margin: 0 auto;
        border-radius: 15px;
        width: 100%;
    }

    .auth-header {
        margin-bottom: 25px;
    }

    .auth-header h3 {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }

    .auth-form {
        margin-bottom: 25px;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .form-group {
        margin-bottom: 20px;
    }

    .auth-form .form-input {
        padding: 16px 18px 16px 45px;
        font-size: 16px;
        /* Prevents zoom on iOS */
    }

    .input-icon {
        left: 18px;
        font-size: 1.1rem;
    }

    .password-toggle {
        right: 18px;
        font-size: 1.1rem;
    }

    .form-options {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 25px;
        width: 100%;
    }

    .checkbox-label {
        font-size: 0.95rem;
    }

    .forgot-link {
        font-size: 0.95rem;
    }

    .auth-btn {
        width: 100%;
        padding: 14px;
        font-size: 1rem;
        margin-bottom: 20px;
    }

    .auth-divider {
        margin: 25px 0;
    }

    .social-auth {
        flex-direction: row;
        gap: 12px;
        margin-bottom: 25px;
    }

    .social-btn {
        flex: 1;
        min-width: 0;
        padding: 12px 10px;
        font-size: 0.9rem;
    }


    .social-btn {
        width: 100%;
        min-width: auto;
        padding: 14px 20px;
        font-size: 1rem;
    }

    .auth-footer {
        padding-top: 20px;
    }

    .auth-footer p {
        font-size: 0.95rem;
        line-height: 1.5;
    }
}

/* Small Mobile Responsive Styles */
@media (max-width: 480px) {
    .auth-section {
        padding: 20px 0;
    }

    .auth-card {
        padding: 25px 15px;
        margin: 0 10px;
    }

    .auth-header h3 {
        font-size: 1.3rem;
    }

    .auth-form .form-input {
        padding: 14px 16px 14px 40px;
    }

    .input-icon {
        left: 15px;
        font-size: 1rem;
    }

    .password-toggle {
        right: 15px;
        font-size: 1rem;
    }

    .social-btn {
        padding: 12px 16px;
        font-size: 0.95rem;
    }

    .auth-btn {
        padding: 12px;
        font-size: 0.95rem;
    }
}

/* Team Section Specific Centering */
.team-section {
    text-align: center;
}

.team-section .card-content {
    text-align: center;
}

.team-section .card {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.team-section .card-title {
    margin-top: 15px;
}

/* Meet the Team Section - Light Mode Background */
.team-section {
    background-color: #f0e8fa;
}

/* Meet the Team Section - Dark Mode Background */
[data-theme="dark"] .team-section {
    background-color: #1a0d2e;
}

/* Special Offers Section - Light Mode Background */
.special-offers-section {
    background-color: #fff4e0;
}

/* Special Offers Section - Dark Mode Background */
[data-theme="dark"] .special-offers-section {
    background-color: #1a1200;
}