/* Design System Tokens & Custom Properties */
:root {
    --color-primary: #10b981; /* Neon green accent for highlights */
    --color-bg-light: #ffffff;
    --color-bg-dark: #070c14;
    --color-text-dark: #0f172a;
    --color-text-light: #f8fafc;
    --color-text-muted: #64748b;
    --color-accent-blue: #0284c7;
    --color-accent-sky: #38bdf8;
    --color-accent-deep: #0f1e36;
    
    /* Font Families */
    --font-heading: 'Plus Jakarta Sans', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Layout spacing & radius */
    --border-radius-xl: 32px;
    --border-radius-lg: 24px;
    --border-radius-md: 16px;
    --border-radius-sm: 8px;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-bounce: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Reset and Core Layout styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-bg-light);
    color: var(--color-text-dark);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

#app-wrapper {
    width: 100%;
    position: relative;
    transition: var(--transition-smooth);
}

/* Game Mode overlay/neon classes */
#app-wrapper.game-mode-active {
    background-color: #030712;
    color: var(--color-text-light);
}

#app-wrapper.game-mode-active .header-container {
    border-bottom-color: rgba(255, 255, 255, 0.05);
}

#app-wrapper.game-mode-active .logo,
#app-wrapper.game-mode-active .nav-link,
#app-wrapper.game-mode-active .about-description,
#app-wrapper.game-mode-active .facts-section-title,
#app-wrapper.game-mode-active .fact-number,
#app-wrapper.game-mode-active .services-title,
#app-wrapper.game-mode-active .memberships-title,
#app-wrapper.game-mode-active .memberships-description {
    color: var(--color-text-light);
}

#app-wrapper.game-mode-active .badge-outline {
    color: var(--color-accent-sky);
    border-color: rgba(56, 189, 248, 0.4);
    background: rgba(56, 189, 248, 0.05);
}

#app-wrapper.game-mode-active .light-card {
    background-color: #0f172a;
    color: var(--color-text-light);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

#app-wrapper.game-mode-active .stats-description {
    color: #94a3b8;
}

#app-wrapper.game-mode-active .dot:not(.filled) {
    background-color: rgba(255, 255, 255, 0.15);
}

#app-wrapper.game-mode-active .fact-col {
    border-color: rgba(255, 255, 255, 0.08);
}

#app-wrapper.game-mode-active .btn-dark-outline {
    color: var(--color-text-light);
    border-color: rgba(255, 255, 255, 0.2);
}

#app-wrapper.game-mode-active .btn-dark-outline:hover {
    background-color: var(--color-text-light);
    color: var(--color-text-dark);
}

/* Reusable Components: Badges */
.badge-outline {
    display: inline-block;
    padding: 6px 16px;
    border: 1px solid #e2e8f0;
    border-radius: 100px;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    color: var(--color-text-dark);
    text-transform: capitalize;
    background: #f8fafc;
    transition: var(--transition-smooth);
}

.badge-glass {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 20px;
    border-radius: 100px;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    color: white;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

.badge-sky-glass {
    background: rgba(56, 189, 248, 0.25);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(56, 189, 248, 0.4);
    padding: 6px 16px;
    border-radius: 100px;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    color: var(--color-text-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Header Navigation Styling */
.header {
    width: 100%;
    background-color: transparent;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 100;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 24px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    transition: var(--transition-smooth);
}

.logo {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 800;
    color: white;
    text-decoration: none;
    letter-spacing: -0.03em;
    transition: var(--transition-smooth);
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-link {
    text-decoration: none;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    transition: var(--transition-smooth);
    padding: 6px 0;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: var(--color-accent-sky);
    transition: var(--transition-smooth);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link:hover {
    color: white;
}

/* Header Navigation Dropdowns */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background-color: white;
    border: 1px solid #e2e8f0;
    border-radius: var(--border-radius-md);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    padding: 10px 0;
    min-width: 180px;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
    z-index: 200;
    margin-top: 12px;
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: transparent transparent white transparent;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu li {
    width: 100%;
}

.dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text-dark);
    text-decoration: none;
    transition: var(--transition-smooth);
    text-align: center;
}

.dropdown-menu li a:hover {
    background-color: #f1f5f9;
    color: var(--color-primary);
}

/* Game Mode styles for Dropdown Menu */
#app-wrapper.game-mode-active .dropdown-menu {
    background-color: #0f172a;
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

#app-wrapper.game-mode-active .dropdown-menu::before {
    border-color: transparent transparent #0f172a transparent;
}

#app-wrapper.game-mode-active .dropdown-menu li a {
    color: var(--color-text-light);
}

#app-wrapper.game-mode-active .dropdown-menu li a:hover {
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--color-primary);
}

.btn-book {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: white;
    color: var(--color-text-dark);
    padding: 12px 24px;
    border-radius: 100px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-bounce);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn-book:hover {
    transform: translateY(-2px) scale(1.02);
    background-color: #f1f5f9;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Hero Section */
.hero-section {
    padding: 0;
    width: 100%;
    max-width: 100%;
}

.hero-container {
    width: 100%;
    height: 100vh;
    min-height: 750px;
    border-radius: 0;
    background-image: linear-gradient(180deg, rgba(15, 23, 42, 0.3) 0%, rgba(15, 23, 42, 0.65) 100%), url('assets/hero_bg.png');
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 140px 48px 64px 48px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    box-shadow: none;
}

.hero-content {
    max-width: 800px;
    margin: auto auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 800;
    color: white;
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: 17px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    max-width: 600px;
    margin-bottom: 32px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.btn-primary {
    display: inline-block;
    background-color: white;
    color: var(--color-text-dark);
    padding: 16px 36px;
    border-radius: 100px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-bounce);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
    background-color: #f8fafc;
}

.hero-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    z-index: 2;
}

.hero-trainers {
    display: flex;
    align-items: center;
    gap: 16px;
}

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

.avatar-img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #1e293b;
    margin-left: -12px;
    transition: var(--transition-smooth);
}

.avatar-img:first-child {
    margin-left: 0;
}

.avatar-img:hover {
    transform: scale(1.15) translateY(-4px);
    z-index: 10;
}

.trainers-text {
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.4;
}

.trainers-text span {
    font-weight: 700;
    color: white;
}

.hero-socials {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.social-link:hover {
    color: white;
    transform: translateY(-2px);
}

/* About Section */
.about-section {
    padding: 80px 40px;
}

.section-container {
    max-width: 1400px;
    margin: 0 auto;
}

.about-grid {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 48px;
    align-items: start;
}

.about-description {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 500;
    color: var(--color-text-dark);
    line-height: 1.4;
    letter-spacing: -0.02em;
    max-width: 900px;
    transition: var(--transition-smooth);
}

/* Features Grid */
.features-section {
    padding: 0 40px 40px 40px;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr 1fr;
    gap: 24px;
}

.feature-card {
    border-radius: var(--border-radius-lg);
    padding: 40px;
    height: 420px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

/* Card 1: Dark Card Styling */
.dark-card {
    background-color: var(--color-accent-deep);
    color: white;
}

.card-icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: var(--border-radius-sm);
    background-color: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-icon {
    width: 20px;
    height: 20px;
    color: var(--color-accent-sky);
}

.card-text {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 500;
    line-height: 1.45;
    letter-spacing: -0.01em;
    margin: 24px 0 auto 0;
}

.highlight-text {
    color: var(--color-accent-sky);
    font-weight: 700;
}

.toggle-container {
    margin-top: 24px;
}

.toggle-pill-btn {
    border: none;
    outline: none;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 8px 18px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: var(--transition-smooth);
}

.toggle-pill-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.25);
}

.toggle-switch {
    width: 38px;
    height: 20px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 100px;
    position: relative;
    transition: var(--transition-smooth);
    display: block;
}

.toggle-handle {
    width: 14px;
    height: 14px;
    background-color: white;
    border-radius: 50%;
    position: absolute;
    top: 3px;
    left: 3px;
    transition: var(--transition-smooth);
}

.toggle-label {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    color: white;
}

/* Card 1 Active States (Simulation) */
.dark-card.toggle-active {
    background-color: #0b1329;
    border: 1.5px solid var(--color-accent-sky);
    box-shadow: 0 0 20px rgba(56, 189, 248, 0.15);
}

.dark-card.toggle-active .toggle-switch {
    background-color: var(--color-accent-sky);
}

.dark-card.toggle-active .toggle-handle {
    transform: translateX(18px);
}

/* Card 2: Image Card Styling */
.img-card {
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 1;
}

.badge-overlay-wrap {
    z-index: 2;
}

/* Card 3: Light Card Styling */
.light-card {
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.stats-top {
    display: flex;
    flex-direction: column;
}

.stats-big-number {
    font-family: var(--font-heading);
    font-size: 54px;
    font-weight: 800;
    line-height: 1;
    color: var(--color-text-dark);
    margin-bottom: 4px;
}

.stats-subheading {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 700;
    color: var(--color-text-dark);
}

.stats-description {
    font-size: 14px;
    color: var(--color-text-muted);
    line-height: 1.5;
    margin: 16px 0;
}

.coaches-level-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.level-row {
    display: grid;
    grid-template-columns: 80px 1fr 30px;
    align-items: center;
    gap: 8px;
}

.level-name {
    font-size: 13px;
    font-weight: 500;
    color: var(--color-text-muted);
}

.dots-track {
    display: flex;
    gap: 4px;
    justify-content: space-between;
}

.dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #e2e8f0;
    display: block;
    transition: var(--transition-smooth);
}

.dot.filled {
    background-color: var(--color-accent-blue);
}

.level-number {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    text-align: right;
    color: var(--color-text-dark);
}

/* Stats Section */
.facts-section {
    padding: 60px 40px;
}

.facts-section-title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    color: var(--color-text-dark);
    text-align: center;
    margin-bottom: 48px;
    transition: var(--transition-smooth);
}

.facts-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.fact-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-right: 1px solid #e2e8f0;
    padding: 10px 24px;
}

.fact-col:last-child {
    border-right: none;
}

.fact-number {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 700;
    color: var(--color-text-dark);
    line-height: 1.1;
    margin-bottom: 8px;
    transition: var(--transition-smooth);
}

.fact-label {
    font-size: 14px;
    color: var(--color-text-muted);
    font-weight: 500;
    line-height: 1.4;
}

/* Services Section */
.services-section {
    background: linear-gradient(135deg, #312e81 0%, #1e3a8a 100%) !important;
    padding: 80px 40px;
}

.services-section .services-title {
    color: #ffffff !important;
}

.services-section .badge-outline {
    background: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    color: #ffffff !important;
}

.services-section .btn-dark-outline {
    border-color: rgba(255, 255, 255, 0.7) !important;
    color: #ffffff !important;
}

.services-section .btn-dark-outline:hover {
    background-color: #ffffff !important;
    color: #1e3a8a !important;
    border-color: #ffffff !important;
}

.services-grid {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 64px;
}

.services-intro-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.services-title {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 600;
    color: var(--color-text-dark);
    line-height: 1.45;
    letter-spacing: -0.02em;
    margin-top: 32px;
    margin-bottom: 40px;
    transition: var(--transition-smooth);
}

.btn-dark-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid var(--color-text-dark);
    color: var(--color-text-dark);
    padding: 12px 28px;
    border-radius: 100px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    background: transparent;
    transition: var(--transition-bounce);
}

.btn-dark-outline:hover {
    background-color: var(--color-text-dark);
    color: white;
    transform: translateY(-2px);
}

.services-cards-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.service-image-card {
    height: 480px;
    border-radius: var(--border-radius-lg);
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 36px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition-smooth);
}

.service-image-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}

.card-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 1;
}

.service-card-badge {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    align-self: flex-start;
}

.service-card-footer {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    width: 100%;
}

.service-card-footer.flex-column {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
}

.service-card-text {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 600;
    color: white;
    line-height: 1.35;
    max-width: 80%;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.service-card-text.font-small {
    font-size: 15px;
    font-family: var(--font-body);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
    margin-top: 8px;
    max-width: 100%;
}

.rental-title-wrap {
    width: 100%;
}

.rental-subtitle {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 600;
    color: white;
}

.btn-circle-arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--color-text-dark);
    transition: var(--transition-bounce);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.btn-circle-arrow:hover {
    transform: scale(1.1) rotate(45deg);
    background-color: var(--color-accent-blue);
    color: white;
}

.slider-arrows {
    display: flex;
    gap: 8px;
}

.arrow-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(5px);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 14px;
    transition: var(--transition-smooth);
}

.arrow-btn:hover {
    background-color: white;
    color: var(--color-text-dark);
    transform: scale(1.05);
}

/* Memberships Section */
.memberships-section {
    padding: 80px 40px 120px 40px;
}

.memberships-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.membership-card-wrap {
    background: linear-gradient(135deg, #38bdf8 0%, #0284c7 100%);
    border-radius: var(--border-radius-lg);
    padding: 48px;
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(2, 132, 199, 0.2);
    transition: var(--transition-smooth);
    height: 380px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.membership-card-wrap:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 60px rgba(2, 132, 199, 0.3);
}

.membership-card-badge-wrap {
    align-self: flex-start;
}

.membership-card-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-top: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    padding-bottom: 20px;
}

.membership-card-title {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
}

.membership-price-wrap {
    display: flex;
    align-items: baseline;
}

.price-value {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 800;
}

.price-period {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
}

.membership-features-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 24px;
}

.membership-features-list li {
    font-size: 15px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95);
    display: flex;
    align-items: center;
    gap: 8px;
}

.bullet-dot {
    font-size: 20px;
    line-height: 0;
    color: white;
}

.memberships-info-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.memberships-title {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 600;
    color: var(--color-text-dark);
    line-height: 1.35;
    letter-spacing: -0.02em;
    margin-top: 32px;
    margin-bottom: 20px;
    transition: var(--transition-smooth);
}

.memberships-description {
    font-size: 16px;
    color: var(--color-text-muted);
    line-height: 1.6;
    max-width: 600px;
    transition: var(--transition-smooth);
}

/* Footer Section */
.footer {
    border-top: 1px solid #e2e8f0;
    padding: 40px;
    background-color: #f8fafc;
}

#app-wrapper.game-mode-active .footer {
    background-color: #090f1d;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: var(--color-text-muted);
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a {
    color: var(--color-text-muted);
    text-decoration: none;
    transition: var(--transition-smooth);
}

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

/* Animations (Entrance Scroll Reveals) */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal-element {
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Responsive Styling (Breakpoints) */
@media (max-width: 1200px) {
    .features-grid {
        grid-template-columns: 1fr 1fr;
    }
    .feature-card:last-child {
        grid-column: span 2;
        height: auto;
    }
    .services-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .memberships-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .hero-title {
        font-size: 40px;
    }
}

@media (max-width: 900px) {
    .facts-grid {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }
    .fact-col {
        border-right: none;
    }
    .fact-col:nth-child(2n) {
        border-left: none;
    }
    .about-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .services-cards-col {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .header-container {
        padding: 20px;
    }
    .nav {
        display: none; /* In production: mobile hamburger menu */
    }
    .hero-section {
        padding: 0;
    }
    .hero-container {
        height: auto;
        min-height: 460px;
        padding: 100px 20px 30px 20px;
        justify-content: flex-start;
        gap: 20px;
        border-radius: 0;
    }
    .hero-title {
        font-size: 28px;
        line-height: 1.2;
        margin-bottom: 12px;
    }
    .hero-subtitle {
        font-size: 14px;
        line-height: 1.5;
        margin-bottom: 20px;
    }
    .hero-content .btn-primary {
        padding: 12px 28px;
        font-size: 14px;
    }
    .hero-footer {
        flex-direction: column;
        align-items: center;
        gap: 16px;
        width: 100%;
        margin-top: 16px;
    }
    .hero-socials {
        justify-content: center !important;
        gap: 10px 16px;
        width: 100%;
    }
    .hero-socials .social-link {
        font-size: 11px;
        font-weight: 700;
        background: rgba(255, 255, 255, 0.08);
        padding: 8px 16px;
        border-radius: 100px;
        border: 1px solid rgba(255, 255, 255, 0.12);
        color: rgba(255, 255, 255, 0.9) !important;
        text-transform: uppercase;
        letter-spacing: 0.03em;
        white-space: nowrap;
    }
    .hero-socials .social-link:hover {
        background: rgba(255, 255, 255, 0.2);
        transform: translateY(-2px);
    }
    .features-section {
        padding: 0 20px 20px 20px;
    }
    .features-grid {
        grid-template-columns: 1fr;
    }
    .feature-card {
        padding: 24px;
    }
    .feature-card:last-child {
        grid-column: span 1;
    }
    .facts-section {
        padding: 40px 20px;
    }
    .facts-grid {
        grid-template-columns: 1fr;
    }
    .services-section {
        padding: 40px 20px;
    }
    .service-image-card {
        padding: 24px;
        height: 380px;
    }
    .memberships-section {
        padding: 40px 20px;
    }
    .membership-card-wrap {
        padding: 24px;
        height: auto;
        gap: 24px;
    }
    .membership-features-list {
        grid-template-columns: 1fr;
    }
    .footer-content {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

/* Footer responsive layouts */
.footer-contacts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.footer-middle-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 64px;
}
@media (max-width: 900px) {
    .footer-contacts-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .footer-middle-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

/* Initiatives Table Section */
.initiatives-section {
    padding: 80px 40px;
    background-color: var(--color-bg-light);
    border-top: 1px solid #e2e8f0;
    transition: var(--transition-smooth);
}

.initiatives-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 48px;
}

.initiatives-title {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    color: var(--color-text-dark);
    letter-spacing: -0.02em;
    transition: var(--transition-smooth);
}

.initiatives-subtitle {
    font-size: 15px;
    color: var(--color-text-muted);
    max-width: 350px;
    text-align: right;
    line-height: 1.5;
    transition: var(--transition-smooth);
}

.initiatives-table {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.table-header-row,
.table-body-row {
    display: grid;
    grid-template-columns: 2.5fr 2fr 1.5fr 1fr;
    align-items: center;
    padding: 24px 0;
    border-bottom: 1px solid #e2e8f0;
    position: relative;
    transition: var(--transition-smooth);
}

.table-header-row {
    font-size: 13px;
    font-weight: 600;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding-bottom: 12px;
}

.table-body-row {
    cursor: pointer;
}

.table-body-row:hover {
    border-bottom-color: var(--color-text-dark);
}

.col-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    color: var(--color-text-dark);
    transition: var(--transition-smooth);
}

.badge-tag {
    display: inline-block;
    padding: 6px 14px;
    border: 1px solid #e2e8f0;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    color: var(--color-text-muted);
    background: #f8fafc;
    text-transform: lowercase;
    margin-right: 6px;
    transition: var(--transition-smooth);
}

.tag-lime {
    background-color: #fef08a;
    border-color: #fde047;
    color: #854d0e;
}

.col-date {
    font-size: 15px;
    color: var(--color-text-muted);
    transition: var(--transition-smooth);
}

.btn-circle-table {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid #e2e8f0;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-muted);
    transition: var(--transition-bounce);
    cursor: pointer;
}

.table-body-row:hover .btn-circle-table,
.btn-circle-table.hover-active {
    border-color: var(--color-text-dark);
    color: var(--color-text-dark);
    background-color: #f8fafc;
    transform: scale(1.05);
}

/* Hover Floating Preview Image */
.floating-preview-wrap {
    position: absolute;
    right: 12%;
    top: -50px;
    width: 220px;
    height: 140px;
    pointer-events: none;
    opacity: 0;
    transform: translateY(15px) scale(0.92);
    transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1), transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 10;
}

.table-body-row:hover .floating-preview-wrap {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.floating-card-bg {
    position: absolute;
    top: 8px;
    left: -8px;
    width: 100%;
    height: 100%;
    border-radius: 16px;
    background-color: #e2f8c5;
    transform: rotate(-5deg);
    z-index: 1;
    transition: var(--transition-smooth);
}

.floating-card-bg.bg-yellow {
    background-color: #fef08a;
    transform: rotate(5deg);
}

.floating-card-bg.bg-blue {
    background-color: #bae6fd;
    transform: rotate(-4deg);
}

.floating-card-bg.bg-red {
    background-color: #fecaca;
    transform: rotate(6deg);
}

.floating-card-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 16px;
    background-size: cover;
    background-position: center;
    border: 2.5px solid white;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    z-index: 2;
}

/* Challenges Section */
.challenges-section {
    padding: 0 40px 80px 40px;
    background-color: var(--color-bg-light);
    transition: var(--transition-smooth);
}

.challenges-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.challenge-card {
    height: 440px;
    border-radius: var(--border-radius-lg);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 28px;
    background-size: cover;
    background-position: center;
    transition: var(--transition-smooth);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.challenge-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

.challenge-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.75) 100%);
    z-index: 1;
}

.challenge-top,
.challenge-bottom {
    position: relative;
    z-index: 2;
}

.challenge-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
}

.challenge-badges {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.badge-challenge {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 100px;
    font-size: 10px;
    font-weight: 700;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    align-self: flex-start;
}

.challenge-circle-arrow {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: var(--transition-bounce);
}

.challenge-card:hover .challenge-circle-arrow {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    color: white;
    transform: rotate(45deg);
}

.challenge-bottom {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.challenge-title {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.challenge-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.45;
    margin-bottom: 24px;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

.btn-explore-problem {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    color: var(--color-text-dark);
    padding: 12px 24px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition-bounce);
    letter-spacing: 0.05em;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    width: fit-content;
}

.btn-explore-problem:hover {
    background-color: #f1f5f9;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Testimonials Review Section */
.testimonials-section {
    padding: 80px 40px;
    background-color: #f8fafc;
    border-top: 1px solid #e2e8f0;
    transition: var(--transition-smooth);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 64px;
    align-items: center;
}

.testimonials-intro-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.testimonials-title {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 700;
    color: var(--color-text-dark);
    line-height: 1.25;
    margin-top: 24px;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    transition: var(--transition-smooth);
}

.testimonials-desc {
    font-size: 15px;
    color: var(--color-text-muted);
    line-height: 1.6;
    margin-bottom: 32px;
    transition: var(--transition-smooth);
}

.testimonial-arrows {
    display: flex;
    gap: 10px;
}

.btn-prev-review,
.btn-next-review {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid #e2e8f0;
    background: white;
    color: var(--color-text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 15px;
    transition: var(--transition-smooth);
    box-shadow: 0 2px 6px rgba(0,0,0,0.02);
}

#app-wrapper.game-mode-active .btn-prev-review,
#app-wrapper.game-mode-active .btn-next-review {
    background: #0f172a;
    border-color: rgba(255,255,255,0.05);
    color: white;
}

.btn-prev-review:hover,
.btn-next-review:hover {
    background: var(--color-primary);
    color: white;
    border-color: var(--color-primary);
    transform: scale(1.05);
}

.testimonials-content-col {
    display: flex;
    justify-content: center;
    width: 100%;
}

.review-slider-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: var(--border-radius-lg);
    padding: 48px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.04);
    position: relative;
    width: 100%;
    max-width: 580px;
    transition: var(--transition-smooth);
}

.quote-icon {
    position: absolute;
    top: 12px;
    left: 32px;
    font-family: var(--font-heading);
    font-size: 140px;
    line-height: 1;
    font-weight: 900;
    color: rgba(16, 185, 129, 0.08);
    pointer-events: none;
}

.review-text {
    font-size: 18px;
    font-style: italic;
    line-height: 1.7;
    color: var(--color-text-dark);
    margin-bottom: 32px;
    position: relative;
    z-index: 2;
    transition: var(--transition-smooth);
}

.reviewer-footer {
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
    z-index: 2;
}

.reviewer-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: var(--transition-smooth);
}

.reviewer-info {
    display: flex;
    flex-direction: column;
}

.reviewer-name {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: var(--color-text-dark);
    transition: var(--transition-smooth);
}

.reviewer-role {
    font-size: 13px;
    color: var(--color-primary);
    font-weight: 600;
    transition: var(--transition-smooth);
}

/* Game Mode Active Adaptations */
#app-wrapper.game-mode-active .initiatives-section,
#app-wrapper.game-mode-active .challenges-section {
    background-color: #030712;
    border-top-color: rgba(255, 255, 255, 0.05);
}

#app-wrapper.game-mode-active .testimonials-section {
    background-color: #090f1d;
    border-top-color: rgba(255, 255, 255, 0.05);
}

#app-wrapper.game-mode-active .initiatives-title,
#app-wrapper.game-mode-active .col-title,
#app-wrapper.game-mode-active .testimonials-title,
#app-wrapper.game-mode-active .review-text,
#app-wrapper.game-mode-active .reviewer-name {
    color: var(--color-text-light);
}

#app-wrapper.game-mode-active .table-body-row {
    border-bottom-color: rgba(255, 255, 255, 0.08);
}

#app-wrapper.game-mode-active .table-body-row:hover {
    border-bottom-color: var(--color-text-light);
}

#app-wrapper.game-mode-active .badge-tag {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.6);
}

#app-wrapper.game-mode-active .btn-circle-table {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.6);
}

#app-wrapper.game-mode-active .table-body-row:hover .btn-circle-table {
    background: white;
    color: var(--color-text-dark);
    border-color: white;
}

#app-wrapper.game-mode-active .review-slider-card {
    background: #0f172a;
    border-color: rgba(255, 255, 255, 0.05);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

/* Responsiveness Media Overrides */
@media (max-width: 1200px) {
    .challenges-grid {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }
}

@media (max-width: 900px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .initiatives-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    .initiatives-subtitle {
        text-align: left;
    }
}

@media (max-width: 640px) {
    .challenges-grid {
        grid-template-columns: 1fr;
    }
    
    .table-header-row {
        display: none;
    }
    
    .table-body-row {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 20px;
        border: 1px solid #e2e8f0;
        border-radius: 16px;
        margin-bottom: 16px;
        align-items: flex-start;
    }
    
    #app-wrapper.game-mode-active .table-body-row {
        border-color: rgba(255,255,255,0.08);
    }
    
    .col-tags {
        display: flex;
        flex-wrap: wrap;
        gap: 6px;
    }
    
    .badge-tag {
        margin-right: 0;
    }
    
    .btn-circle-table {
        align-self: flex-start;
    }
    
    .floating-preview-wrap {
        display: none; /* Disable hover floating cards on mobile viewports */
    }
}

/* Breadcrumb styling */
.breadcrumb-section {
    padding: 180px 40px 80px 40px;
    background-size: cover;
    background-position: center;
    width: 100%;
    text-align: center;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.breadcrumb-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    z-index: 2;
}

.breadcrumb-title {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 800;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    margin: 0;
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
}

.breadcrumb-nav a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.breadcrumb-nav a:hover {
    color: white;
}

.breadcrumb-separator {
    color: rgba(255, 255, 255, 0.4);
}

.breadcrumb-current {
    color: var(--color-primary);
    font-weight: 700;
}

/* SDG Section styling */
.sdg-section {
    padding: 80px 0;
    background-color: var(--color-bg-light);
    border-top: 1px solid #e2e8f0;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.sdg-header {
    text-align: center;
    margin-bottom: 56px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 40px;
}

.sdg-title {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    color: var(--color-text-dark);
    margin-top: 16px;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
    transition: var(--transition-smooth);
}

.sdg-subtitle {
    font-size: 15px;
    color: var(--color-text-muted);
    line-height: 1.6;
    transition: var(--transition-smooth);
}

/* Scrolling Marquee CSS */
.sdg-marquee-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 20px 0 40px 0;
    mask-image: linear-gradient(to right, transparent, white 10%, white 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, white 10%, white 90%, transparent);
}

.sdg-marquee-track {
    display: flex;
    gap: 24px;
    width: max-content;
    animation: sdg-marquee-scroll 42s linear infinite;
}

.sdg-marquee-container:hover .sdg-marquee-track {
    animation-play-state: paused;
}

@keyframes sdg-marquee-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-50% - 12px));
    }
}

/* Card Design matching screenshot (Split top text, bottom image) */
.sdg-scroll-card {
    display: flex;
    flex-direction: column;
    width: 320px;
    height: 480px;
    border-radius: 28px;
    overflow: hidden;
    background-color: #fbfaf7;
    border: 1px solid #e5e4de;
    flex-shrink: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.sdg-scroll-card:hover {
    transform: translateY(-10px) scale(1.01);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

/* Top half text content */
.sdg-card-top {
    padding: 28px 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    background-color: #fbfaf7;
    transition: var(--transition-smooth);
}

/* Badges section */
.sdg-card-badges {
    display: flex;
    gap: 8px;
    margin-bottom: 14px;
}

.sdg-pill-badge {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    background-color: rgba(0, 0, 0, 0.04);
    color: var(--sdg-theme);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.sdg-card-heading {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 800;
    color: var(--color-text-dark);
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.sdg-card-desc {
    font-size: 13px;
    color: var(--color-text-muted);
    line-height: 1.5;
    margin: 0;
}

/* Featured card style (like the first card in the screenshot) */
.sdg-scroll-card.card-featured .sdg-card-top {
    background: linear-gradient(135deg, #312e81 0%, #1e3a8a 100%) !important;
}

.sdg-scroll-card.card-featured .sdg-pill-badge {
    background-color: rgba(255, 255, 255, 0.12) !important;
    color: #ffffff !important;
    border-color: rgba(255, 255, 255, 0.2) !important;
}

.sdg-scroll-card.card-featured .sdg-card-heading {
    color: #ffffff !important;
}

.sdg-scroll-card.card-featured .sdg-card-desc {
    color: rgba(255, 255, 255, 0.8) !important;
}

/* Bottom half image background */
.sdg-card-bottom {
    height: 220px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.sdg-readmore-btn {
    position: absolute;
    bottom: 20px;
    left: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 8px 16px;
    border-radius: 100px;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.25);
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    transition: var(--transition-bounce);
}

.sdg-readmore-btn:hover {
    background: white;
    color: var(--color-text-dark);
    border-color: white;
}

.sdg-arrow-circle {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-dark);
    font-weight: 700;
}

/* Game Mode / Dark Theme Overrides */
#app-wrapper.game-mode-active .sdg-section {
    background-color: #030712;
    border-top-color: rgba(255, 255, 255, 0.05);
}

#app-wrapper.game-mode-active .sdg-title {
    color: white;
}

#app-wrapper.game-mode-active .sdg-scroll-card {
    background-color: #0f172a;
    border-color: rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

#app-wrapper.game-mode-active .sdg-card-top {
    background-color: #0f172a;
}

#app-wrapper.game-mode-active .sdg-card-heading {
    color: white;
}

#app-wrapper.game-mode-active .sdg-pill-badge {
    background-color: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.06);
}

#app-wrapper.game-mode-active .sdg-scroll-card.card-featured .sdg-card-top {
    background-color: #064e3b; /* Dark emerald top half for game mode featured */
}

#app-wrapper.game-mode-active .sdg-scroll-card.card-featured .sdg-card-heading {
    color: #a7f3d0;
}

#app-wrapper.game-mode-active .sdg-scroll-card.card-featured .sdg-card-desc {
    color: #34d399;
}

#app-wrapper.game-mode-active .sdg-scroll-card.card-featured .sdg-pill-badge {
    background-color: rgba(52, 211, 153, 0.08);
    color: #34d399;
    border-color: rgba(52, 211, 153, 0.15);
}

/* ==========================================
   Footer Section - Premium Blue Theme
   ========================================== */
.footer {
    background: linear-gradient(135deg, #0f1e36 0%, #070c14 100%) !important;
    color: #f8fafc !important;
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
}

/* Info Contacts Grid Overrides */
.footer .footer-contacts-grid {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.footer .footer-contacts-grid > div > div:first-of-type {
    background: rgba(255, 255, 255, 0.08) !important;
    color: #38bdf8 !important;
}

.footer .footer-contacts-grid span {
    color: #94a3b8 !important;
}

.footer .footer-contacts-grid p {
    color: #ffffff !important;
}

.footer .footer-contacts-grid a {
    color: #ffffff !important;
    transition: var(--transition-smooth);
}

.footer .footer-contacts-grid a:hover {
    color: #38bdf8 !important;
}

/* Footer Middle Grid Overrides */
.footer .footer-middle-grid h4 {
    color: #ffffff !important;
}

.footer .footer-middle-grid p {
    color: #cbd5e1 !important;
}

.footer .footer-middle-grid a {
    color: #cbd5e1 !important;
    transition: var(--transition-smooth);
}

.footer .footer-middle-grid a:hover {
    color: #38bdf8 !important;
}

/* Logo link styling */
.footer .footer-middle-grid a[href="index.html"] {
    color: #ffffff !important;
}

/* Social link circles */
.footer .footer-middle-grid div a[target="_blank"] {
    background: rgba(255, 255, 255, 0.08) !important;
    color: #ffffff !important;
}

.footer .footer-middle-grid div a[target="_blank"]:hover {
    background: #38bdf8 !important;
    color: #070c14 !important;
    transform: translateY(-3px);
}

/* Newsletter Form Input & Button Styling */
.footer form {
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    background: rgba(255, 255, 255, 0.04) !important;
}

.footer form input[type="email"] {
    background: transparent !important;
    color: #ffffff !important;
}

.footer form input[type="email"]::placeholder {
    color: #94a3b8 !important;
}

.footer form button[type="submit"] {
    background: #38bdf8 !important;
    color: #070c14 !important;
    transition: var(--transition-smooth);
}

.footer form button[type="submit"]:hover {
    background: #ffffff !important;
    transform: scale(1.05);
}

/* Footer bottom copyright area */
.footer .footer-content {
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.footer .footer-content p {
    color: #94a3b8 !important;
}

.footer .footer-bottom-links a {
    color: #94a3b8 !important;
    transition: var(--transition-smooth);
}

.footer .footer-bottom-links a:hover {
    color: #38bdf8 !important;
}

/* ==========================================
   OTP Verification Modal Styles
   ========================================== */
.otp-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.otp-modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.otp-modal-container {
    background: #ffffff;
    border-radius: var(--border-radius-lg);
    width: 90%;
    max-width: 440px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    text-align: center;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid #e2e8f0;
}

.otp-modal-overlay.active .otp-modal-container {
    transform: translateY(0);
}

.otp-modal-title {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 800;
    color: var(--color-text-dark);
    margin-bottom: 8px;
}

.otp-modal-subtitle {
    font-size: 14px;
    color: var(--color-text-muted);
    line-height: 1.5;
    margin-bottom: 24px;
}

.otp-modal-phone {
    font-weight: 700;
    color: var(--color-text-dark);
}

.otp-inputs-grid {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 24px;
}

.otp-input-field {
    width: 44px;
    height: 50px;
    border: 1.5px solid #cbd5e1;
    border-radius: var(--border-radius-sm);
    text-align: center;
    font-size: 22px;
    font-weight: 700;
    color: var(--color-text-dark);
    background: #f8fafc;
    outline: none;
    transition: var(--transition-smooth);
}

.otp-input-field:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.15);
    background: #ffffff;
}

.otp-timer-text {
    font-size: 13.5px;
    color: var(--color-text-muted);
    margin-bottom: 24px;
}

.otp-timer-countdown {
    font-weight: 700;
    color: #ef4444;
}

.otp-action-row {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.btn-otp-verify {
    background: var(--color-primary);
    color: white;
    font-family: var(--font-body);
    font-weight: 700;
    border: none;
    padding: 14px;
    border-radius: 100px;
    cursor: pointer;
    font-size: 14px;
    transition: var(--transition-smooth);
    width: 100%;
}

.btn-otp-verify:hover {
    background: #0d9488;
}

.btn-otp-resend {
    background: transparent;
    color: var(--color-primary);
    border: none;
    cursor: pointer;
    font-weight: 600;
    font-size: 13.5px;
    transition: var(--transition-smooth);
    text-decoration: underline;
}

.btn-otp-resend:disabled {
    color: var(--color-text-muted);
    cursor: not-allowed;
    text-decoration: none;
}

.otp-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    color: var(--color-text-muted);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.otp-close-btn:hover {
    color: var(--color-text-dark);
}

/* Dark mode overrides for game mode */
#app-wrapper.game-mode-active .otp-modal-container {
    background: #0f172a;
    border-color: rgba(255, 255, 255, 0.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

#app-wrapper.game-mode-active .otp-modal-title,
#app-wrapper.game-mode-active .otp-modal-phone {
    color: var(--color-text-light);
}

#app-wrapper.game-mode-active .otp-input-field {
    background: #1e293b;
    border-color: #334155;
    color: var(--color-text-light);
}

#app-wrapper.game-mode-active .otp-input-field:focus {
    border-color: var(--color-accent-sky);
    box-shadow: 0 0 10px rgba(56, 189, 248, 0.2);
    background: #0f172a;
}

/* Custom Loading Spinner */
.loading-spinner {
    display: inline-block;
    width: 12px;
    height: 12px;
    border: 2px solid currentColor;
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 1s linear infinite;
    margin-right: 8px;
    vertical-align: middle;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Service Grid and Card Components */
.services-grid-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 20px;
}
@media (max-width: 992px) {
    .services-grid-list {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 640px) {
    .services-grid-list {
        grid-template-columns: 1fr;
    }
}
.service-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.06);
    border-color: var(--color-primary);
}
.service-img-wrapper {
    height: 220px;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 24px;
}
.service-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.service-card:hover .service-img-wrapper img {
    transform: scale(1.05);
}
.service-card h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--color-text-dark);
}
.service-card p {
    color: var(--color-text-muted);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}
.service-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.service-list li {
    font-size: 13.5px;
    color: var(--color-text-muted);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.service-list li i {
    color: var(--color-primary);
    flex-shrink: 0;
}
.service-photo-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-top: 24px;
    border-top: 1px solid #e2e8f0;
    padding-top: 20px;
}
.service-photo-strip img {
    width: 100%;
    height: 70px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    cursor: zoom-in;
}
.service-photo-strip img:hover {
    transform: scale(1.06);
    box-shadow: 0 8px 20px rgba(0,0,0,0.14);
}
.service-photo-strip-label {
    grid-column: 1/-1;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-primary);
    margin-bottom: 4px;
}
#app-wrapper.game-mode-active .service-card {
    background: #0f172a;
    border-color: rgba(255,255,255,0.05);
}
#app-wrapper.game-mode-active .service-card:hover {
    border-color: var(--color-primary);
}
#app-wrapper.game-mode-active .service-card h3 {
    color: white;
}

/* Campaign Grid and Card Components */
.campaigns-grid-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
@media (max-width: 992px) {
    .campaigns-grid-list {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 640px) {
    .campaigns-grid-list {
        grid-template-columns: 1fr;
    }
}
.campaign-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    padding: 24px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition-smooth);
}
.campaign-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.08);
    border-color: var(--color-primary);
}
.campaign-img-wrapper {
    height: 200px;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 20px;
    position: relative;
}
.campaign-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.campaign-card:hover .campaign-img-wrapper img {
    transform: scale(1.05);
}
.campaign-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--color-primary);
    color: white;
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.campaign-card h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    margin-top: 16px;
    margin-bottom: 8px;
    color: var(--color-text-dark);
    line-height: 1.4;
}
.campaign-card p {
    color: var(--color-text-muted);
    font-size: 13.5px;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}
.progress-bar-wrapper {
    background-color: #f1f5f9;
    height: 8px;
    border-radius: 100px;
    width: 100%;
    margin-bottom: 12px;
    position: relative;
}
.progress-fill {
    background-color: var(--color-primary);
    height: 100%;
    border-radius: 100px;
    position: relative;
}
.progress-percentage {
    position: absolute;
    right: 0;
    top: -20px;
    font-size: 11px;
    font-weight: 700;
    color: var(--color-primary);
}
.progress-stats {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: var(--color-text-muted);
    margin-bottom: 16px;
    font-weight: 500;
}
.progress-stats strong {
    color: var(--color-text-dark);
}
.btn-donate-card {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-text-dark);
    color: white;
    padding: 14px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition-bounce);
    gap: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.06);
}
.btn-donate-card:hover {
    background-color: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.2);
}
#app-wrapper.game-mode-active .campaign-card {
    background: #0f172a;
    border-color: rgba(255,255,255,0.05);
}
#app-wrapper.game-mode-active .campaign-card h3 {
    color: white;
}
#app-wrapper.game-mode-active .progress-bar-wrapper {
    background-color: rgba(255,255,255,0.08);
}
#app-wrapper.game-mode-active .progress-stats strong {
    color: white;
}
#app-wrapper.game-mode-active .btn-donate-card {
    background-color: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.05);
}
#app-wrapper.game-mode-active .btn-donate-card:hover {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
}

/* ==========================================
   Mobile Hamburger Menu Responsive Styling
   ========================================== */
.mobile-nav-toggle {
    display: none;
    background: transparent;
    border: none;
    color: white;
    cursor: pointer;
    z-index: 300;
    padding: 8px;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

#app-wrapper.game-mode-active .mobile-nav-toggle {
    color: var(--color-text-light);
}

@media (max-width: 900px) {
    .mobile-nav-toggle {
        display: inline-flex;
    }
    
    .nav {
        display: none; /* Hide default flex list on mobile */
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: linear-gradient(135deg, #0f1e36 0%, #070c14 100%);
        z-index: 250;
        padding: 120px 40px;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1);
        overflow-y: auto;
    }
    
    .nav.mobile-active {
        display: flex !important;
        opacity: 1;
        pointer-events: auto;
    }
    
    .nav-list {
        flex-direction: column;
        align-items: center;
        gap: 24px;
        width: 100%;
    }
    
    .nav-link {
        font-size: 20px;
        color: white !important;
    }
    
    /* Header Dropdowns on Mobile */
    .dropdown-menu {
        position: static;
        transform: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        background: rgba(255, 255, 255, 0.05);
        border: none;
        box-shadow: none;
        padding: 8px 0;
        margin-top: 8px;
        min-width: 100%;
    }
    
    .dropdown-menu::before {
        display: none;
    }
    
    .dropdown-menu li a {
        color: rgba(255, 255, 255, 0.8) !important;
        font-size: 16px;
        text-align: center;
    }
    
    .header-actions {
        display: none !important;
    }
    
    .header-actions.mobile-active {
        display: flex !important;
        position: fixed;
        bottom: 40px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 260;
        flex-direction: row;
        gap: 16px;
        width: calc(100% - 80px);
        justify-content: center;
    }
    
    .header-actions.mobile-active .btn-donate-nav {
        flex: 1;
        text-align: center;
        justify-content: center;
        padding: 14px 20px;
        font-size: 14px;
    }
}



