@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@600;700;800;900&family=Orbitron:wght@700;800;900&family=Press+Start+2P&family=Inter:wght@400;600;700;800&display=swap');

:root {
    --font-arcade: 'Press Start 2P', cursive, monospace;
    --font-led: 'Orbitron', sans-serif;
    --font-gaming: 'Outfit', 'Inter', sans-serif;

    --primary-color: #ffd700;
    /* Casino Gold */
    --secondary-color: #a855f7;
    /* Electric Purple */
    --accent-color: #ff007f;
    /* Neon Magenta */

    /* Luxury Dark Casino Theme Tokens */
    --bg-color: #0b0e14;
    --text-color: #f1f5f9;
    --card-bg: #161b26;
    --border-color: rgba(255, 215, 0, 0.15);
    --nav-bg: rgba(11, 14, 20, 0.9);
}

@media (prefers-color-scheme: dark) {
    :root {
        --bg-color: #0b0e14;
        --text-color: #f1f5f9;
        --card-bg: #161b26;
        --border-color: rgba(255, 215, 0, 0.15);
        --nav-bg: rgba(11, 14, 20, 0.9);
    }
}

body.dark-mode {
    --bg-color: #0b0e14;
    --text-color: #f1f5f9;
    --card-bg: #161b26;
    --border-color: rgba(255, 215, 0, 0.15);
    --nav-bg: rgba(11, 14, 20, 0.9);
}

/* Base Styles */
body {
    background-color: var(--bg-color);
    color: var(--text-color);
    margin: 0;
    font-family: var(--font-gaming);
    transition: background-color 0.3s, color 0.3s;
}

/* ========================================= */
/* LAYOUTS (Mobile First Approach)           */
/* ========================================= */

/* Header: Stacked by default */
/* Header: Stacked by default */
/* Header: Stacked by default */
.header-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 16px;
    width: 100%;
    box-sizing: border-box;
}

.logo-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    flex-wrap: nowrap;
    width: auto;
}

.logo {
    height: 38px;
    width: auto;
    display: block;
    object-fit: contain;
    flex-shrink: 0;
}

.hamburger-btn {
    background: transparent;
    border: none;
    outline: none;
    font-size: 1.35rem;
    cursor: pointer;
    color: var(--text-color);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 8px;
    padding: 0;
    margin: 0;
    flex-shrink: 0;
    transition: background-color 0.2s, color 0.2s;
}

.hamburger-btn:hover {
    background-color: rgba(0, 0, 0, 0.06);
}

body.dark-mode .hamburger-btn:hover {
    background-color: rgba(255, 255, 255, 0.12);
}

.brand-name {
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    line-height: 1.2;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 3px;
}

.logo-text-h1 {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 3px;
    margin: 0;
    font-size: 1.8rem;
    font-weight: bold;
    text-transform: uppercase;
}

.text-tech {
    background: linear-gradient(135deg, #ffd700, #ff8c00);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 6px rgba(255, 215, 0, 0.4));
}

.text-net {
    background: linear-gradient(135deg, #c084fc, #a855f7);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 6px rgba(168, 85, 247, 0.4));
}

.text-pulse {
    background: linear-gradient(135deg, #ff007f, #ec4899);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 6px rgba(255, 0, 127, 0.4));
}

.search-section {
    width: 100%;
    padding: 5px 0;
    display: flex;
    justify-content: center;
    background: transparent;
}

.search-container {
    display: flex;
    width: 100%;
    max-width: 100%;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    overflow: hidden;
}

.search-input {
    flex: 1;
    border: none;
    padding: 12px 20px;
    font-size: 1rem;
    outline: none;
    color: #555;
    background: transparent;
    width: 100%;
}

.search-btn {
    background: transparent;
    border: none;
    padding: 0 20px;
    cursor: pointer;
    color: #555;
    border-left: 1px solid #eee;
}

/* Header Actions: Stacked/Wrapped */
.header-actions {
    display: flex;
    justify-content: center;
    width: 100%;
    flex-wrap: wrap;
    gap: 10px;
}

.action-buttons-container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: auto;
    gap: 10px;
    padding: 0;
    margin: 0;
    flex-wrap: nowrap;
    flex-shrink: 0;
}

.profile-avatar-mini {
    cursor: pointer;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffd700, #a855f7);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.3);
    flex-shrink: 0;
}

.profile-avatar-mini:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 16px rgba(255, 215, 0, 0.5);
}

.btn {
    text-decoration: none;
    color: white;
    font-weight: 700;
    padding: 10px 18px;
    border-radius: 20px;
    font-size: 0.92rem;
    flex: 1;
    text-align: center;
    text-transform: capitalize;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    white-space: nowrap;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

.btn-login {
    background: linear-gradient(135deg, #a855f7, #ec4899);
    box-shadow: 0 4px 15px rgba(168, 85, 247, 0.4);
}

.btn-login:hover {
    box-shadow: 0 6px 20px rgba(168, 85, 247, 0.6);
}

.btn-join {
    background: linear-gradient(135deg, #ffd700, #ff8c00);
    color: #000;
}

.btn-contact {
    background: linear-gradient(135deg, #00f2ff, #3b82f6);
}

/* Slideshow: Mobile Height */
.hero-slideshow {
    position: relative;
    width: 100%;
    height: 60vh;
    overflow: hidden;
    background-color: #0b0e14;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(11, 14, 20, 0.3) 0%, rgba(11, 14, 20, 0.85) 100%);
}

.slide.active-slide {
    opacity: 1;
    z-index: 10;
}

.text-container {
    position: absolute;
    top: 35%;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    color: white;
    font-size: 2rem;
    font-weight: normal;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.9);
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: center;
    z-index: 15;
}

.anim-text {
    opacity: 0;
    transform: translateY(-50px);
    transition: all 0.5s ease-out;
}

.text-container.final-state .anim-text {
    font-weight: 800;
}

.anim-text.dropped {
    opacity: 1;
    transform: translateY(0);
}

.slide-btn {
    position: absolute;
    bottom: 40px;
    right: auto;
    left: 50%;
    text-decoration: none;
    padding: 12px 36px;
    font-size: 1.15rem;
    font-weight: 800;
    border-radius: 30px;
    opacity: 0;
    transform: translate(-50%, 20px);
    transition: all 0.5s ease-out;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6);
    z-index: 15;
    letter-spacing: 0.5px;
}

.slide-btn.dropped {
    opacity: 1;
    transform: translate(-50%, 0);
}

.btn-slide-1 {
    background: linear-gradient(135deg, #ffd700, #ff8c00);
    color: #000;
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.5);
}

.btn-slide-2 {
    background: linear-gradient(135deg, #a855f7, #6366f1);
    color: #fff;
    box-shadow: 0 4px 20px rgba(168, 85, 247, 0.5);
}

.btn-slide-3 {
    background: linear-gradient(135deg, #ff007f, #ec4899);
    color: #fff;
    box-shadow: 0 4px 20px rgba(255, 0, 127, 0.5);
}

/* Vision Section */
.vision-section {
    text-align: center;
    padding: 45px 5%;
    background-color: #0b0e14;
}

.vision-text {
    font-size: 1.6rem;
    font-weight: 800;
    margin: 0;
    line-height: 1.6;
}

.text-enhance {
    color: #ffd700;
    text-shadow: 0 0 12px rgba(255, 215, 0, 0.5);
}

.text-falling {
    color: #a855f7;
    text-shadow: 0 0 12px rgba(168, 85, 247, 0.5);
}

.text-perfecting {
    color: #ff007f;
    text-shadow: 0 0 12px rgba(255, 0, 127, 0.5);
}

/* Features Section */
.features-section {
    padding: 40px 5%;
    background-color: #0b0e14;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.feature-card {
    text-align: center;
    padding: 20px 14px;
    background: rgba(22, 27, 38, 0.75);
    border: 1px solid rgba(255, 215, 0, 0.15);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 215, 0, 0.4);
    box-shadow: 0 12px 40px rgba(255, 215, 0, 0.2);
}

.feature-card h3 {
    font-size: 1.15rem;
    font-weight: 800;
    margin: 15px 0 10px 0;
    color: #ffffff;
}

.feature-card p {
    font-size: 0.9rem;
    color: #94a3b8;
    line-height: 1.5;
}

.icon-container {
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60px;
}

.icon-container i {
    font-size: 3rem;
}

.icon-star-blue {
    color: #007bff;
}

.icon-badge-bg {
    color: #007bff;
}

.icon-badge-check {
    color: white;
    font-size: 1.3em;
    /* Make it bigger to fit well like the reference */
    margin-top: -2px;
    /* Slight offset if needed to center vertically */
}

.icon-flash-skyblue {
    color: #87CEEB;
}

.icon-checks-blue {
    color: #007bff;
}


/* Lectures / Live Casino Section */
.lectures-section {
    padding: 40px 5%;
    background-color: #0b0e14;
    text-align: center;
}

.lectures-header {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 30px;
    color: #ffffff;
}

.text-t {
    color: #ffd700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.4);
}

.text-n {
    color: #a855f7;
    text-shadow: 0 0 10px rgba(168, 85, 247, 0.4);
}

.text-p {
    color: #ff007f;
    text-shadow: 0 0 10px rgba(255, 0, 127, 0.4);
}

.text-online {
    color: #ffd700;
}

.lecture-card {
    background: rgba(22, 27, 38, 0.85);
    max-width: 600px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    padding-bottom: 30px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.lecture-img {
    width: 100%;
    height: auto;
    display: block;
}

.handwritten-text {
    font-family: 'Inter', sans-serif;
    color: #ffd700;
    font-size: 1.25rem;
    font-weight: 800;
    padding: 20px;
    margin: 0;
    line-height: 1.4;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.lecture-body {
    color: #cbd5e1;
    font-size: 1rem;
    padding: 0 20px 20px 20px;
    line-height: 1.6;
}

.btn-start-now {
    display: inline-block;
    background: linear-gradient(135deg, #ffd700, #ff8c00);
    color: #000;
    font-weight: 800;
    padding: 14px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 1rem;
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.4);
    transition: all 0.3s ease;
}

.btn-start-now:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 215, 0, 0.6);
}

/* Store Section */
.store-section {
    padding: 40px 5%;
    text-align: center;
    background-color: #0b0e14;
}

.store-header {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: #ffffff;
}

.text-maroon {
    color: #ff007f;
}

.text-gpc-green {
    color: #ffd700;
    font-style: normal;
}

.store-subtext {
    color: #94a3b8;
    font-size: 1rem;
    margin-bottom: 30px;
}

.store-card {
    max-width: 500px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    background: rgba(22, 27, 38, 0.85);
    border: 1px solid rgba(255, 215, 0, 0.2);
    text-align: center;
    padding-bottom: 30px;
}

.image-wrapper {
    position: relative;
    width: 100%;
}

.store-img {
    width: 100%;
    height: auto;
    display: block;
}

.btn-view-more {
    display: inline-block;
    position: static;
    margin: 10px auto;
    background: linear-gradient(135deg, #a855f7, #6366f1);
    color: #ffffff;
    padding: 8px 20px;
    text-decoration: none;
    font-size: 0.9rem;
    border-radius: 20px;
    font-weight: 700;
}

.store-content {
    padding: 20px;
}

.store-product-title {
    color: #ffd700;
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 800;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.store-body {
    color: #cbd5e1;
    margin-bottom: 30px;
    line-height: 1.5;
}

.btn-book-now {
    display: inline-block;
    background: linear-gradient(135deg, #ffd700, #ff8c00);
    color: #000000;
    padding: 12px 40px;
    text-decoration: none;
    font-weight: 800;
    border: none;
    border-radius: 25px;
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.4);
    transition: all 0.3s ease;
}

.btn-book-now:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 215, 0, 0.6);
}


/* Services List */
.services-list-section {
    padding: 40px 5%;
    text-align: center;
    background-color: white;
}

.services-header {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 10px;
    font-family: 'Times New Roman', Times, serif;
    color: #333;
}

.services-subheader {
    color: #8B4513;
    font-size: 1.2rem;
    margin-bottom: 30px;
    font-weight: normal;
}

.services-container {
    max-width: 600px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    position: relative;
    min-height: 400px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.services-overlay {
    background-color: rgba(11, 14, 20, 0.75);
    backdrop-filter: blur(8px);
    padding: 30px;
    height: 100%;
}

.services-ol {
    text-align: left;
    display: inline-block;
    font-family: 'Inter', sans-serif;
    color: #ffd700;
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.9;
    margin-bottom: 30px;
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.3);
}

.btn-explore {
    display: inline-block;
    background: linear-gradient(135deg, #ffd700, #ff8c00);
    color: #000000;
    padding: 12px 40px;
    text-decoration: none;
    font-weight: 800;
    border-radius: 25px;
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.4);
}

/* Inspired Section */
.inspired-section {
    padding: 0;
    background-color: #0b0e14;
    text-align: left;
}

.inspired-heading {
    color: #ffd700;
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    margin: 30px 5%;
}

.inspired-image-container {
    position: relative;
    width: 100%;
    display: block;
}

.inspired-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 0;
}

.inspired-overlay-content {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    top: auto;
    text-align: center;
    width: 90%;
}

.inspired-title {
    font-size: 3rem;
    font-weight: 800;
    margin: 0;
    line-height: 1.2;
    color: #ffffff;
}

.inspired-subtitle {
    font-size: 1.5rem;
    margin: 5px 0 20px 0;
    font-weight: normal;
    color: #cbd5e1;
}

.btn-visit-overlay {
    display: inline-block;
    background: linear-gradient(135deg, #a855f7, #6366f1);
    color: white !important;
    padding: 12px 60px;
    text-decoration: none !important;
    font-weight: 800;
    border-radius: 25px;
    font-size: 1.1rem;
    box-shadow: 0 4px 20px rgba(168, 85, 247, 0.5);
    border: none;
    z-index: 10;
}

/* Careers Section */
.careers-section {
    padding: 40px 5%;
    background-color: #0b0e14;
    text-align: center;
}

.careers-header {
    color: #ffd700;
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 30px;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.4);
}

.careers-text {
    color: #cbd5e1;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 30px auto;
    font-size: 0.95rem;
    text-align: center;
}

.btn-join-now {
    display: inline-block;
    background: linear-gradient(135deg, #ffd700, #ff8c00);
    color: #000000;
    padding: 14px 45px;
    text-decoration: none;
    font-weight: 800;
    border-radius: 30px;
    font-size: 1.1rem;
    margin-bottom: 40px;
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.4);
    transition: all 0.3s ease;
}

.btn-join-now:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 215, 0, 0.6);
}

/* Install App Button (Header) */
.btn-install-app {
    background: linear-gradient(135deg, #ffd700, #f59e0b);
    color: #111111;
    border: none;
    font-weight: 800;
    box-shadow: 0 2px 12px rgba(255, 215, 0, 0.35);
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-install-app:hover {
    transform: translateY(-1px) scale(1.03);
    box-shadow: 0 4px 18px rgba(255, 215, 0, 0.55);
    color: #000;
}

/* Get the App Banner */
.get-app-banner {
    background: linear-gradient(135deg, #1a1033, #2d1b4e);
    border: 1px solid rgba(255, 215, 0, 0.35);
    border-radius: 16px;
    margin: 20px auto;
    max-width: 1100px;
    padding: 14px 20px;
    box-shadow: 0 8px 32px rgba(139, 92, 246, 0.3);
}

.get-app-inner {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.get-app-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(255, 215, 0, 0.35);
}

.get-app-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 180px;
}

.get-app-text strong {
    color: #ffd700;
    font-size: 1.05rem;
}

.get-app-text span {
    color: #c9b8e8;
    font-size: 0.85rem;
    margin-top: 2px;
}

@media (max-width: 480px) {
    .get-app-inner {
        justify-content: center;
        text-align: center;
    }
    .get-app-text {
        align-items: center;
    }
}

.image-grid-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    max-width: 800px;
    margin: 0 auto;
}

.grid-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 16px;
    transition: all 0.5s ease;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

/* Support Section */
.support-section {
    padding: 40px 5%;
    background-color: #0b0e14;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.support-card {
    background: rgba(22, 27, 38, 0.85);
    padding: 20px;
    border-radius: 16px;
    border: 1px solid rgba(255, 215, 0, 0.15);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    min-width: 250px;
    width: 100%;
    color: #ffffff;
}

.support-icon {
    font-size: 3rem;
    margin-bottom: 10px;
}

.icon-whatsapp {
    color: #25D366;
}

.icon-location {
    color: #ffd700;
}

.icon-email {
    color: #a855f7;
}

.support-card h3 {
    margin: 10px 0;
    color: #ffffff;
}

.support-number,
.location-text {
    font-weight: bold;
    font-size: 1.2rem;
    color: #ffd700;
}

.space-ai-container {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #ffffff;
}

.space-ai-icon {
    width: 60px;
    height: auto;
    margin-bottom: 10px;
}

/* Reviews Section */
.reviews-section {
    padding: 40px 5%;
    background-color: #0b0e14;
    max-width: 800px;
    margin: 0 auto;
}

.review-form-container {
    background: rgba(22, 27, 38, 0.85);
    padding: 20px;
    margin-bottom: 40px;
    border-radius: 16px;
    border: 1px solid rgba(255, 215, 0, 0.15);
    color: #ffffff;
}

.location-heading {
    text-align: center;
    font-size: 1.2rem;
    color: #ffd700;
    margin-bottom: 5px;
}

.location-sub {
    text-align: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: #f1f5f9;
    margin-bottom: 20px;
}

.rating-input {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.stars-input .star-btn {
    font-size: 1.5rem;
    margin: 0 2px;
}

/* Registration Enhancements */
.password-wrapper {
    position: relative;
    width: 100%;
}

.password-wrapper input {
    width: 100%;
    padding-right: 40px;
    /* Space for eye icon */
}

.password-toggle {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #9aa4b8;
}

.password-toggle:hover {
    color: var(--primary-color);
}

.requirement-list {
    list-style: none;
    padding: 0;
    margin: 10px 0 0 0;
    font-size: 0.9em;
    background: #f9f9f9;
    padding: 10px;
    border-radius: 5px;
}

.requirement-item {
    color: #dc3545;
    /* Red default */
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: color 0.3s ease;
}

.requirement-item.valid {
    color: #28a745;
    /* Green when valid */
}

.requirement-item i {
    font-size: 0.8em;
}

.requirement-item.valid i:before {
    content: "\f00c";
    /* Checkmark */
}

.requirement-item i:before {
    content: "\f00d";
    /* Cross */
}

.star-btn.fas {
    font-weight: 900;
}

.star-btn.far {
    font-weight: 400;
}

.review-form label {
    display: block;
    font-weight: bold;
    margin-bottom: 8px;
    color: #333;
    font-size: 0.9rem;
}

.review-form textarea,
.review-form input {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    box-sizing: border-box;
    /* Fix overflow */
}

.review-form textarea {
    min-height: 100px;
    resize: vertical;
}

.btn-submit-review {
    background-color: #333;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 30px;
    font-size: 1rem;
    cursor: pointer;
    width: 100%;
    max-width: 200px;
}

.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.review-card {
    border-bottom: 1px solid #eee;
    padding-bottom: 25px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.dynamic-review {
    background: #fafafa;
    border-left: 4px solid #FFA500;
    padding: 20px;
    border-radius: 0 10px 10px 0;
}

.review-verified {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #28a745;
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 10px;
}

.review-verified i {
    font-size: 1rem;
}

.stars-display {
    color: #FFA500;
    margin-bottom: 15px;
}

.stars-display i {
    margin-right: 3px;
    font-size: 1.1rem;
}

.review-text {
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.review-author {
    font-weight: bold;
    color: #333;
    font-size: 0.9rem;
}

.thanks-message {
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.load-more-container {
    text-align: center;
    margin-top: 20px;
}

.btn-load-more {
    background-color: #333;
    color: white;
    border: none;
    padding: 10px 30px;
    border-radius: 30px;
    cursor: pointer;
}


/* Follow Us */
.follow-us-section {
    padding: 30px 5%;
    text-align: center;
    background-color: white;
}

.follow-heading {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 20px;
    font-weight: bold;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.social-link {
    color: #333;
    font-size: 2rem;
}


/* Footer */
.main-footer {
    padding: 30px 5%;
    background-color: var(--card-bg);
    border-top: 1px solid var(--border-color);
    color: var(--text-color);
}

.footer-heading {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: var(--primary-color);
    text-align: left;
}

.footer-links-container {
    display: flex;
    flex-direction: row;
    /* Side-by-side on Mobile */
    justify-content: space-between;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 30px;
}

.footer-links-left,
.footer-links-right {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 48%;
    /* Split width */
}

/* Right column aligned to the right? Screenshot suggests they are distinct columns. */
/* Let's keep text-align left for readability but push right column to right side if needed. */
/* Actually, screenshot: Left column has "Home...", Right column has "About Us...". */

.footer-links-left li,
.footer-links-right li {
    margin-bottom: 15px;
}

.main-footer a {
    text-decoration: none;
    color: #9aa4b8;
    font-size: 0.95rem;
    display: block;
    /* Ensure hit area */
}

.main-footer a:hover {
    color: var(--primary-color);
}

/* Payment Icons: Left aligned */
.payment-icons {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: center;
    justify-content: flex-start;
    /* Left align */
    flex-wrap: wrap;
}

/* Adjust icon sizes to match screenshot (small/neat) */
.payment-icons i {
    font-size: 1.5rem !important;
    /* Override inline if any */
}

.mpesa-icon {
    font-size: 0.9rem;
    font-weight: bold;
    border: 1px solid #3a3f4b;
    padding: 2px 6px;
    border-radius: 3px;
    color: #2ecc71;
}

.copyright-text {
    color: #6b7280;
    font-size: 0.85rem;
    text-align: left;
    /* Left align to match icons */
    margin-top: 20px;
}

.fa-paypal {
    color: #00457C;
}

.fa-cc-visa {
    color: #1A1F71;
}

.fa-cc-mastercard {
    color: #EB001B;
}


/* ========================================= */
/* TABLET ENHANCEMENTS (min-width: 768px)    */
/* ========================================= */
@media (min-width: 768px) {
    .header-container {
        flex-direction: row;
        justify-content: space-between;
        flex-wrap: wrap;
    }

    .search-section {
        padding: 20px 5%;
    }

    .search-container {
        max-width: 600px;
        margin: 0 auto;
    }

    .features-grid {
        grid-template-columns: 1fr 1fr;
        /* 2 Columns on Tablet */
    }

    .image-grid-container {
        grid-template-columns: 1fr 1fr;
        max-width: 100%;
        /* Allow full width */
        padding: 0 20px;
    }

    .footer-links-container {
        flex-direction: row;
        justify-content: space-around;
        align-items: flex-start;
        text-align: left;
    }

    .support-section {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .support-card {
        width: 45%;
        min-width: 200px;
    }
}

/* ========================================= */
/* DESKTOP ENHANCEMENTS (min-width: 1024px)  */
/* ========================================= */
@media (min-width: 1024px) {
    .header-container {
        flex-direction: row;
        justify-content: space-between;
        padding: 15px 5%;
        flex-wrap: nowrap;
    }

    .logo-container {
        margin-right: 20px;
    }

    .brand-name {
        font-size: 1.8rem;
    }

    .header-actions {
        width: auto;
        flex-wrap: nowrap;
    }

    .search-section {
        background: transparent;
        padding: 0;
        display: flex;
        align-items: center;
        width: auto;
        flex-grow: 1;
        margin: 0 40px;
    }

    .search-container {
        width: 100%;
        max-width: 600px;
        margin: 0;
    }

    .action-buttons-container {
        padding: 0;
        margin: 0;
    }

    .btn {
        padding: 8px 20px;
        /* Keep smaller on desktop too */
        font-size: 0.95rem;
    }

    .features-grid {
        grid-template-columns: repeat(4, 1fr);
        /* 4 Columns Single Row on Desktop */
        gap: 30px;
        max-width: 1600px;
        /* Wider for desktop/4k */
        padding: 0 40px;
    }

    .image-grid-container {
        grid-template-columns: repeat(4, 1fr);
        /* 4 Columns for images */
        max-width: 100%;
        /* Full width for 4K */
        padding: 0 40px;
    }

    .footer-links-container {
        justify-content: space-between;
        gap: 50px;
    }

    .hero-slideshow {
        height: 85vh;
        /* Taller on desktop */
    }

    .text-container {
        font-size: 4rem;
        /* Larger text */
        top: 35%;
        left: 50%;
        transform: translateX(-50%);
        text-align: center;
        width: 80%;
    }

    .slide-btn {
        right: auto;
        left: 50%;
        transform: translate(-50%, 0);
        font-size: 1.5rem;
        padding: 15px 40px;
    }

    .slide-btn.dropped {
        transform: translate(-50%, 0);
    }

    .inspired-overlay-content {
        left: 50%;
        transform: translateX(-50%);
        text-align: center;
        width: 80%;
    }

    .careers-text {
        text-align: center;
        max-width: 1000px;
        /* Wider text block for desktop */
    }

    .store-card {
        max-width: 900px;
        /* Wider card for desktop view if desired, or keep centered */
        display: flex;
        flex-direction: row;
        align-items: center;
        text-align: left;
    }

    .store-card .image-wrapper {
        width: 50%;
    }

    .store-card .store-content {
        width: 50%;
        padding: 40px;
    }

    .btn-view-more {
        position: absolute;
        bottom: 15px;
        right: 15px;
        left: auto;
        transform: none;
        margin: 0;
    }

    .services-container {
        max-width: 800px;
    }

    .support-section {
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: space-between;
    }

    .support-card {
        width: auto;
        flex: 1;
        margin: 0 10px;
    }

    .payment-icons {
        justify-content: flex-start;
    }

    .copyright-text {
        text-align: left;
    }
}

/* ========================================= */
/* REGISTRATION PAGE STYLES                  */
/* ========================================= */

.registration-wrapper {
    background-color: var(--bg-color);
    padding: 20px 5%;
    display: flex;
    justify-content: center;
}

.registration-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    width: 100%;
    max-width: 600px;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

/* Base form styles (shared across register, login, support, checkout, etc.) */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: bold;
    margin-bottom: 8px;
    color: #333;
    font-size: 0.95rem;
}

.required {
    color: red;
    margin-left: 2px;
}

.required-star {
    color: red;
    font-size: 1.2rem;
    margin-right: 5px;
    vertical-align: top;
}

.form-control {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    box-sizing: border-box;
    /* Input fix */
    background-color: #fff;
    color: #333;
}

.form-text {
    font-size: 0.85rem;
    color: #777;
    margin-top: 5px;
    display: block;
}

.select-wrapper {
    position: relative;
}

.checkbox-group {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.first-cb {
    margin-top: 20px;
}

.cb-stack {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cb-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.95rem;
    color: #333;
    line-height: 1.4;
}

.checkbox-group input[type="checkbox"] {
    margin-top: 3px;
    margin-right: 10px;
    transform: scale(1.2);
}

/* Registration page overrides — dark theme, matches the rest of the site */

.registration-card .form-group {
    margin-bottom: 20px;
}

.registration-card .form-group label {
    display: block;
    font-weight: bold;
    margin-bottom: 8px;
    color: var(--text-color);
    font-size: 0.95rem;
}

.registration-card .required {
    color: #ff4d6d;
    margin-left: 2px;
}

.registration-card .required-star {
    color: #ff4d6d;
    font-size: 1.2rem;
    margin-right: 5px;
    vertical-align: top;
}

.registration-card .form-control {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    box-sizing: border-box;
    /* Input fix */
    background-color: #0f131c;
    color: var(--text-color);
}

.registration-card .form-control::placeholder {
    color: #8a93a6;
}

.registration-card .form-control:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.registration-card .form-control:-webkit-autofill,
.registration-card .form-control:-webkit-autofill:hover,
.registration-card .form-control:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0px 1000px #0f131c inset;
    -webkit-text-fill-color: var(--text-color);
    caret-color: var(--text-color);
    transition: background-color 5000s ease-in-out 0s;
}

.registration-card .form-text {
    font-size: 0.85rem;
    color: #9aa4b8;
    margin-top: 5px;
    display: block;
}

.select-wrapper {
    position: relative;
}

.registration-card .checkbox-group {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.registration-card .checkbox-group label {
    color: var(--text-color);
}

.registration-card .checkbox-group a {
    color: var(--primary-color);
}

.registration-card .first-cb {
    margin-top: 20px;
}

.registration-card .cb-stack {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.registration-card .cb-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--text-color);
    line-height: 1.4;
}

.registration-card .checkbox-group input[type="checkbox"] {
    margin-top: 3px;
    margin-right: 10px;
    transform: scale(1.2);
}

.profile-section {
    margin: 30px 0;
}

.profile-upload-ui {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.profile-avatar-placeholder {
    width: 100px;
    height: 100px;
    background-color: #e9ecef;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 3rem;
    color: #adb5bd;
}

.btn-upload {
    background: white;
    border: 1px solid #28a745;
    color: #28a745;
    padding: 8px 30px;
    border-radius: 20px;
    font-weight: bold;
    cursor: pointer;
}

.inviter-box-container {
    background-color: #9eaab6;
    /* Grayish blue box */
    padding: 20px;
    margin: 0 -30px -30px -30px;
    /* Bleed to edges */
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    text-align: center;
}

.inviter-box label {
    display: block;
    font-weight: bold;
    margin-bottom: 15px;
    color: #000;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.inviter-input {
    margin-bottom: 20px;
}

.btn-register-submit {
    background-color: white;
    color: #aaa;
    /* Gray text looks disabled until filled? or just placeholder styling */
    border: none;
    padding: 12px 60px;
    border-radius: 30px;
    font-weight: bold;
    font-size: 1.1rem;
    cursor: pointer;
    width: 80%;
}

/* MODAL STYLES (Added for Coming Soon) */
.modal {
    display: none;
    position: fixed;
    z-index: 999999 !important;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.modal-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 500px;
    border-radius: 10px;
    position: relative;
    animation: animatetop 0.4s;
}

@keyframes animatetop {
    from {
        top: -300px;
        opacity: 0
    }

    to {
        top: 0;
        opacity: 1
    }
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover,
.close:focus {
    color: white;
    text-decoration: none;
    cursor: pointer;
}

/* Spin Wheel Labels */
.wheel-label {
    position: absolute;
    top: 10px;
    left: 50%;
    transform-origin: 0 160px;
    width: 40px;
    margin-left: -20px;
    text-align: center;
    color: white;
    font-weight: bold;
    font-size: 1.1em;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    pointer-events: none;
    z-index: 5;
}

@keyframes glow {
    0% {
        box-shadow: 0 0 5px #ff4500;
    }

    50% {
        box-shadow: 0 0 20px #ff8c00;
    }

    100% {
        box-shadow: 0 0 5px #ff4500;
    }
}

/* --- MOBILE BOTTOM NAVIGATION --- */
.mobile-nav {
    display: none;
    /* Hidden on Desktop */
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    justify-content: space-around;
    padding: 10px 0;
    z-index: 1000;
    border-top: 1px solid #eee;
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #94a3b8;
    font-size: 0.75rem;
    transition: color 0.3s ease;
}

.nav-item i {
    font-size: 1.4rem;
    margin-bottom: 4px;
}

.nav-item.active {
    color: #ffd700;
}

.nav-item:hover {
    color: #a855f7;
}

/* Mobile Visibility */
@media screen and (max-width: 768px) {
    .mobile-nav {
        display: flex;
    }

    body {
        padding-bottom: 70px;
    }
}

/* --- SIDEBAR DRAWER STYLES --- */
.sidebar-drawer {
    position: fixed;
    top: 0;
    left: -280px;
    width: 280px;
    height: 100%;
    background: #0d0f17;
    color: white;
    z-index: 2050;
    transition: left 0.3s ease;
    box-shadow: 4px 0 25px rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    border-right: 1px solid rgba(255, 215, 0, 0.2);
}

.sidebar-drawer.open {
    left: 0;
}

.drawer-header {
    padding: 20px;
    background: #121622;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.drawer-body {
    padding: 10px 0;
    overflow-y: auto;
    flex: 1;
}

.drawer-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    color: #cbd5e1;
    text-decoration: none;
    transition: all 0.2s;
    font-size: 1rem;
    font-weight: 600;
}

.drawer-link i {
    width: 20px;
    text-align: center;
    font-size: 1.1rem;
    color: #ffd700;
}

.drawer-link:hover,
.drawer-link.active {
    background: rgba(255, 215, 0, 0.1);
    color: #ffd700;
}

.drawer-link.active {
    border-left: 4px solid #ffd700;
}

.drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 2049;
    display: none;
    backdrop-filter: blur(4px);
}

.drawer-overlay.visible {
    display: block;
}

body.dark-mode .sidebar-drawer {
    background: #0d0f17;
}

body.dark-mode .drawer-header {
    background: #121622;
}

/* --- MOBILE BOTTOM NAVIGATION --- */
.mobile-bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 65px;
    background: rgba(13, 15, 23, 0.95);
    backdrop-filter: blur(16px);
    border-top: 1px solid rgba(255, 215, 0, 0.2);
    z-index: 10000;
    justify-content: space-around;
    align-items: center;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.6);
}

@media (max-width: 768px) {
    .mobile-bottom-nav {
        display: flex;
    }
}

/* --- DESKTOP NAVIGATION --- */
.desktop-nav {
    display: flex;
    gap: 20px;
    align-items: center;
}

.desktop-nav a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.desktop-nav a:hover {
    color: var(--primary-color);
}

/* Header Container Desktop styles */
@media screen and (min-width: 769px) {
    .header-container {
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: center !important;
        padding: 10px 5% !important;
    }
    
    #hamburgerBtn {
        display: none !important;
    }
}

@media screen and (max-width: 768px) {
    .desktop-nav {
        display: none !important;
    }
}
