:root {
    --bg-dark: #f8fafc;
    --bg-card: #ffffff;
    --primary: #22c55e;
    --accent: #f97316;
    --purple: #8b5cf6;
    --text-white: #0f172a;
    --text-gray: #475569;
    --font-heading: 'Fredoka', sans-serif;
    --font-body: 'Nunito', sans-serif;
}

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

section {
    padding: 80px 5% !important;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-white);
    font-family: var(--font-body);
    overflow-x: hidden;
}

h1,
h2,
h3 {
    font-family: var(--font-heading);
    letter-spacing: 0.5px;
}

h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

p {
    color: var(--text-gray);
    font-size: 1.1rem;
    line-height: 1.6;
}

.gradient-text {
    background: linear-gradient(to right, var(--primary), var(--purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo {
    font-weight: 700;
    font-size: 1.5rem;
    font-family: var(--font-heading);
}

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

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
    transition: transform 0.2s;
}

.logo-img:hover {
    transform: scale(1.07);
}

.footer-logo-link {
    display: inline-block;
    margin-bottom: 15px;
}

.footer-logo-img {
    height: 50px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center !important;
    height: 100%;
}

.mobile-nav-btn {
    margin-bottom: 0 !important;
}

.nav-links a {
    display: flex;
    align-items: center;
    color: var(--text-white);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary);
}

.btn-primary-small {
    padding: 10px 25px;
    background: var(--primary);
    border: none;
    border-radius: 50px;
    color: #fff;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 4px 0 #15803d;
    transition: transform 0.1s, box-shadow 0.1s;
}

.btn-mega {
    padding: 18px 40px;
    background: var(--primary);
    border: none;
    border-radius: 20px;
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 6px 0 #15803d;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-secondary {
    padding: 18px 40px;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    margin-left: 15px;
    transition: all 0.2s;
}

.btn-mega:active,
.btn-primary-small:active {
    transform: translateY(4px);
    box-shadow: 0 0 0 transparent;
}

.btn-mega:hover {
    background: #16a34a;
}

.btn-secondary:hover {
    border-color: var(--text-white);
    background: rgba(0, 0, 0, 0.05);
}

.hero {
    display: flex;
    align-items: center;
    padding: 150px 5% 100px;
    min-height: 90vh;
    position: relative;
    overflow: hidden;
}

.hero-content {
    flex: 1;
    z-index: 2;
}

.badge {
    background: rgba(139, 92, 246, 0.15);
    color: var(--purple);
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    display: inline-block;
    margin-bottom: 20px;
}

.hero-visual {
    flex: 1;
    position: relative;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.planet {
    position: absolute;
    border-radius: 50%;
    opacity: 0.8;
}

.planet-1 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle at 30% 30%, var(--purple), transparent);
    top: 0;
    right: 0;
    filter: blur(40px);
    animation: float 6s ease-in-out infinite;
}

.planet-2 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle at 30% 30%, var(--primary), transparent);
    bottom: 50px;
    left: 50px;
    filter: blur(30px);
    animation: float 8s ease-in-out infinite reverse;
}

.floating-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    padding: 20px;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 5;
    animation: float 4s ease-in-out infinite;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.avatar {
    font-size: 3rem;
    background: #fff;
    padding: 10px;
    border-radius: 50%;
}

.journey-section {
    padding: 100px 5%;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.path-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding: 20px 0;
}

.path-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: repeating-linear-gradient(to bottom, var(--text-gray) 0, var(--text-gray) 10px, transparent 10px, transparent 20px);
    opacity: 0.3;
    transform: translateX(-50%);
}

.realm-card {
    background: var(--bg-card);
    padding: 20px;
    border-radius: 20px;
    margin-bottom: 30px;
    position: relative;
    width: 45%;
    border: 1px solid rgba(0, 0, 0, 0.08);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 1;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.realm-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
}

.realm-card.left {
    margin-right: auto;
}

.realm-card.right {
    margin-left: auto;
}

.card-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.tag {
    display: inline-block;
    margin-top: 15px;
    background: rgba(255, 255, 255, 0.05);
    padding: 5px 12px;
    border-radius: 10px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.engine-section {
    padding: 100px 5%;
    background: rgba(0, 0, 0, 0.02);
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.bento-card {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px;
    background: linear-gradient(145deg, #ffffff, #f8fafc);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.highlight-card {
    background: linear-gradient(135deg, var(--bg-card), rgba(34, 197, 94, 0.08));
    border: 1px solid rgba(34, 197, 94, 0.3);
}

footer {
    padding: 80px 5%;
    text-align: center;
    background: radial-gradient(circle at top, #f1f5f9, #f8fafc);
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.inventory-section {
    padding: 80px 5%;
    background: #f8fafc;
}

.inventory-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.inventory-card {
    background: rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.08);
    padding: 30px;
    border-radius: 20px;
    transition: all 0.3s;
    position: relative;
    margin-top: 20px;
    text-align: center;
}

.inventory-card:hover {
    background: var(--bg-card);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.item-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.inventory-card .item-icon {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--bg-card);
    border: 1px solid rgba(0, 0, 0, 0.08);
    width: 60px;
    height: 60px;
    line-height: 60px;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 0;
}

.inventory-card h4 {
    margin-top: 25px;
}

.pricing-section {
    padding: 100px 5%;
    background: #f1f5f9;
}

.pricing-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.pricing-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    padding: 40px 30px;
    border-radius: 25px;
    width: 300px;
    text-align: center;
    position: relative;
    transition: transform 0.3s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.pricing-card.popular {
    transform: scale(1.1);
    border: 2px solid var(--accent);
    box-shadow: 0 0 30px rgba(249, 115, 22, 0.2);
    z-index: 2;
}

.pricing-card.popular:hover {
    transform: scale(1.15);
}

.ribbon {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.8rem;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-white);
    margin: 20px 0 5px;
}

.period {
    font-size: 1rem;
    color: var(--text-gray);
    font-weight: 400;
}

.features-list {
    list-style: none;
    margin: 30px 0;
    text-align: left;
}

.features-list li {
    margin-bottom: 15px;
    color: var(--text-gray);
}

.reviews-section {
    padding: 100px 5%;
    background: #f8fafc;
    overflow: hidden;
}

.trading-card {
    background: linear-gradient(145deg, #ffffff, #f1f5f9);
    border: 1px solid rgba(0, 0, 0, 0.08);
    padding: 25px;
    border-radius: 15px;
    width: 320px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.card-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.role {
    background: rgba(0, 0, 0, 0.05);
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--text-gray);
}

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

.stat-row {
    margin-bottom: 10px;
}

.stat-row span {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-gray);
}

.bar {
    height: 6px;
    background: rgba(0, 0, 0, 0.08);
    border-radius: 3px;
    margin-top: 5px;
}

.fill {
    height: 100%;
    background: var(--primary);
    border-radius: 3px;
}

.quote {
    font-style: italic;
    margin: 20px 0;
    font-size: 0.95rem;
    color: var(--text-gray);
}

.author {
    text-align: right;
    font-weight: 700;
    color: var(--primary);
}

.download-section {
    padding: 100px 5%;
    text-align: center;
    background: radial-gradient(circle at center, rgba(34, 197, 94, 0.08), #f8fafc);
}

.store-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.store-btn {
    font-family: var(--font-body) !important;
    font-weight: 700 !important;
    border-radius: 12px !important;
    padding: 12px 28px !important;
    display: inline-flex !important;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s;
    border: none !important;
    min-width: 170px;
    justify-content: center;
}

.store-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.btn-apple {
    background: #000 !important;
    color: #fff !important;
    box-shadow: 0 4px 0 #333 !important;
}

.btn-apple:hover {
    background: #1a1a1a !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 0 #333 !important;
}

.btn-google {
    background: #ffffff !important;
    color: #0f172a !important;
    border: 2px solid #e2e8f0 !important;
    box-shadow: 0 4px 0 #cbd5e1 !important;
}

.btn-google:hover {
    transform: translateY(-2px);
    border-color: #22c55e !important;
    box-shadow: 0 6px 0 #22c55e !important;
}

.main-footer {
    padding: 40px 5% 40px;
    background: #f1f5f9;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 30px;
}

.footer-col h4 {
    margin-bottom: 25px;
    color: var(--text-white);
}

.footer-col a {
    display: block;
    color: var(--text-gray);
    margin-bottom: 15px;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: var(--primary);
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding-top: 30px;
    color: rgba(0, 0, 0, 0.4);
    font-size: 0.9rem;
}

.social-icons {
    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-bottom: 15px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icons svg {
    fill: #64748b;
    transition: fill 0.3s ease;
    height: 18px;
    width: 18px;
}

.social-icons a:hover {
    background: rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}

.social-icons a:hover svg {
    fill: var(--primary);
}

.btn-mega,
.btn-primary-small,
.btn-secondary {
    margin-bottom: 2rem;
}

.cta-group {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 50px;
    margin-bottom: 20px;
}

.parallax-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-icon {
    position: absolute;
    font-size: 2.5rem;
    opacity: 0.5;
    animation: float 6s ease-in-out infinite;
}

.icon-1 {
    top: 15%;
    left: 10%;
    animation-duration: 7s;
}

.icon-2 {
    top: 25%;
    right: 15%;
    animation-duration: 5s;
}

.icon-3 {
    bottom: 20%;
    left: 20%;
    animation-duration: 8s;
    font-family: serif;
}

.icon-4 {
    bottom: 30%;
    right: 10%;
    animation-duration: 6s;
}

.gameplay-card {
    min-width: 320px;
    min-height: 200px;
    padding: 10px;
}

.game-preview {
    width: 100%;
    height: 100%;
    background: #000;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gif-placeholder {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
}

.play-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 10px;
}

.realm-card .card-content p {
    color: var(--text-gray);
}

.expand-hint {
    position: absolute;
    top: 20px;
    right: 20px;
    color: var(--text-gray);
    font-size: 1.2rem;
    transition: transform 0.3s;
}

@media (min-width: 769px) {
    .syllabus-path {
        position: absolute;
        top: 0;
        height: 100%;
        width: 220px;
        background: rgba(255, 255, 255, 0.98);
        border: 1px solid var(--primary);
        padding: 25px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s ease-in-out;
        z-index: -1;
        border-radius: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .realm-card.left .syllabus-path {
        right: 20px;
        border-radius: 20px 0 0 20px;
    }

    .realm-card.left:hover .syllabus-path,
    .realm-card.left.expanded .syllabus-path {
        right: 100%;
        opacity: 1;
        visibility: visible;
        margin-right: 10px;
    }

    .realm-card.right .syllabus-path {
        left: 20px;
        border-radius: 0 20px 20px 0;
    }

    .realm-card.right:hover .syllabus-path,
    .realm-card.right.expanded .syllabus-path {
        left: 100%;
        opacity: 1;
        visibility: visible;
        margin-left: 10px;
    }

    .realm-card:hover {
        z-index: 10;
        border-color: var(--primary);
        transform: scale(1.02);
    }
}

.node {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: var(--text-white);
}

.node span {
    background: rgba(34, 197, 94, 0.15);
    color: var(--primary);
    padding: 2px 8px;
    border-radius: 5px;
    margin-right: 10px;
    font-weight: 700;
    font-size: 0.8rem;
}

.schools-section {
    padding: 100px 5%;
    background: #f1f5f9;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.school-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.school-content {
    flex: 1;
    min-width: 300px;
}

.school-badge {
    color: var(--primary);
    background: rgba(34, 197, 94, 0.1);
    padding: 5px 12px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    margin-bottom: 15px;
    display: inline-block;
}

.school-features {
    list-style: none;
    margin: 30px 0;
}

.school-features li {
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--text-gray);
}

.btn-school {
    padding: 15px 30px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 4px 0 #15803d;
    transition: transform 0.2s;
}

.btn-school:hover {
    background: #16a34a;
}

.school-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.dashboard-mockup {
    background: #ffffff;
    width: 100%;
    max-width: 400px;
    height: 250px;
    border-radius: 15px;
    border: 2px solid rgba(0, 0, 0, 0.08);
    position: relative;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.dash-header {
    height: 10px;
    width: 90%;
    background: rgba(0, 0, 0, 0.08);
    border-radius: 10px;
    position: absolute;
    top: 20px;
    left: 20px;
}

.dash-graph {
    display: flex;
    align-items: flex-end;
    gap: 15px;
    height: 120px;
    margin-bottom: 20px;
}

.dash-graph .bar {
    flex: 1;
    background: var(--primary);
    border-radius: 5px 5px 0 0;
    opacity: 0.7;
    height: auto;
    margin-top: 0;
}

.dash-graph .bar:nth-child(even) {
    opacity: 0.4;
}

.dash-label {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-white);
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding-top: 15px;
}

.safety-strip {
    background: #e2e8f0;
    padding: 15px 5%;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    text-align: center;
}

.safety-logos {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    opacity: 0.7;
}

.safety-badge {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-white);
    letter-spacing: 0.5px;
}

.icon-5 {
    top: 60%;
    left: 5%;
    animation-duration: 9s;
}

.icon-6 {
    top: 10%;
    left: 40%;
    animation-duration: 6s;
}

.icon-7 {
    bottom: 15%;
    right: 40%;
    animation-duration: 10s;
}

.icon-8 {
    top: 50%;
    right: 5%;
    animation-duration: 7s;
}

.game-scene {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    background: linear-gradient(to bottom, #f1f5f9, #e2e8f0);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 15px;
}

.battle-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.health-bar {
    width: 40%;
    height: 6px;
    background: #cbd5e1;
    border-radius: 3px;
    overflow: hidden;
}

.hp-fill {
    height: 100%;
    background: #22c55e;
}

.health-bar.enemy .hp-fill {
    background: #ef4444;
}

.vs {
    font-weight: 900;
    color: rgba(0, 0, 0, 0.2);
    font-style: italic;
}

.battle-mid {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 10px 0;
}

.char {
    font-size: 3rem;
    position: relative;
    animation: bounce 2s infinite;
}

.char.dragon {
    animation-delay: 1s;
    transform: scaleX(-1);
}

.battle-ui {
    background: rgba(0, 0, 0, 0.05);
    padding: 10px;
    border-radius: 10px;
    text-align: center;
}

.question {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-white);
}

.options {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.opt {
    background: #cbd5e1;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.9rem;
    cursor: pointer;
    color: var(--text-white);
}

.opt.correct {
    background: #22c55e;
    color: #fff;
    box-shadow: 0 0 10px #22c55e;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

.reviews-scroller {
    display: none;
}

.marquee-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

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

.marquee-track.static-mode {
    display: flex !important;
    justify-content: center !important;
    flex-wrap: wrap !important;
    gap: 30px !important;
    width: 100% !important;
    animation: none !important;
    transform: none !important;
}

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

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.path-line {
    display: none;
}

.path-svg {
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    height: calc(100% + 100px);
    width: 90%;
    max-width: 1000px;
    z-index: 0;
    pointer-events: none;
    filter: drop-shadow(0 0 10px rgba(34, 197, 94, 0.5));
}

.school-logos {
    margin-top: 20px;
    display: flex;
    gap: 15px;
    color: rgba(0, 0, 0, 0.5);
    font-weight: 600;
    font-size: 0.9rem;
    align-items: center;
}

.s-logo {
    border-bottom: 2px solid rgba(0, 0, 0, 0.15);
    padding-bottom: 2px;
}

.bento-card:hover {
    transform: translateY(-5px);
    border-color: rgba(34, 197, 94, 0.5);
    box-shadow: 0 15px 40px rgba(34, 197, 94, 0.1);
}

.bento-content {
    position: relative;
    z-index: 2;
    max-width: 75%;
    padding: 10px;
}

.bento-icon {
    font-size: 5rem;
    opacity: 0.1;
    position: absolute;
    right: -10px;
    bottom: -10px;
    transform: rotate(-15deg);
    transition: all 0.4s ease;
    filter: grayscale(100%);
    z-index: 1;
}

.bento-card:hover .bento-icon {
    opacity: 0.3;
    transform: rotate(0deg) scale(1.1);
    filter: grayscale(0%);
    text-shadow: 0 0 20px var(--primary);
}

.view-more-link {
    margin-top: 15px;
    font-size: 0.85rem;
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
    border-bottom: 2px solid transparent;
    transition: border-color 0.2s;
}

.school-stats-row {
    margin-top: 60px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding-top: 40px;
    display: flex;
    justify-content: space-around;
    text-align: center;
    flex-wrap: wrap;
    gap: 30px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-white);
    font-family: var(--font-heading);
    background: linear-gradient(to bottom, #0f172a, #475569);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    margin-top: 5px;
}

.hero-trust-strip {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    gap: 0;
    opacity: 0.8;
    flex-wrap: wrap;
}

.hero-trust-strip span:first-child {
    font-size: 0.85rem;
    text-transform: uppercase;
    color: var(--text-gray);
    margin-right: 15px;
}

.trust-logo {
    font-weight: 700;
    color: #000;
    font-size: 1rem;
    opacity: 0.7;
    padding: 0 15px;
    border-right: 1px solid rgba(0, 0, 0, 0.3);
    display: inline-block;
}

.trust-logo:last-child {
    border-right: none;
}

.pedagogy-section {
    padding: 80px 5%;
    background: #f8fafc;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.pedagogy-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
    flex-wrap: wrap;
}

.bloom-step {
    background: rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.08);
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    flex: 1;
    position: relative;
    transition: transform 0.3s;
}

.bloom-step:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
}

.p-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.bloom-step h3 {
    color: var(--text-white);
    margin-bottom: 10px;
}

.bloom-step p {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-bottom: 20px;
}

.bloom-label {
    background: var(--primary);
    color: #fff;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.bloom-connector {
    font-size: 2rem;
    color: var(--text-gray);
    opacity: 0.5;
}

.contact-section {
    padding: 100px 5%;
    background: linear-gradient(to bottom, var(--bg-dark), #f1f5f9);
    position: relative;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
    justify-content: space-between;
}

.contact-info {
    flex: 1;
    max-width: 500px;
}

.contact-methods {
    margin-top: 40px;
}

.method-row {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    background: rgba(0, 0, 0, 0.02);
    padding: 15px;
    border-radius: 15px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.2s;
}

.method-row:hover {
    transform: translateX(10px);
    border-color: var(--primary);
}

.method-icon {
    font-size: 1.5rem;
    background: rgba(34, 197, 94, 0.1);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

.method-text {
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.method-text strong {
    display: block;
    color: var(--text-white);
    margin-bottom: 2px;
}

.method-text span {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.contact-card {
    flex: 1;
    max-width: 450px;
    background: var(--bg-card);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    position: relative;
}

.game-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.form-group label {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.game-form input,
.game-form select,
.game-form textarea {
    background: rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 10px 15px;
    color: var(--text-white);
    font-size: 0.9rem;
    font-family: var(--font-body);
    transition: all 0.3s;
    outline: none;
}

.game-form select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%2322c55e%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
    background-repeat: no-repeat;
    background-position: right 15px top 50%;
    background-size: 10px auto;
}

.game-form input:focus,
.game-form select:focus,
.game-form textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 10px rgba(34, 197, 94, 0.15);
    background: rgba(0, 0, 0, 0.05);
}

.game-form .btn-mega {
    padding: 12px 20px;
    font-size: 1rem;
    margin-top: 5px;
}

.full-width {
    width: 100%;
    justify-content: center;
    margin-top: 10px;
}

@media (max-width: 900px) {
    .contact-container {
        flex-direction: column;
        gap: 40px;
    }

    .contact-info,
    .contact-card {
        width: 100%;
        max-width: 100%;
    }

    .contact-info {
        text-align: center;
    }
}

button,
.btn-mega,
.btn-primary-small,
.btn-secondary,
.btn-school,
.store-btn {
    text-decoration: none !important;
    font-family: var(--font-body) !important;
    font-weight: 700 !important;
    border-radius: 12px !important;
    letter-spacing: 0.5px;
    text-transform: capitalize;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s !important;
}

.btn-mega,
.btn-primary-small,
.btn-school,
button[type="submit"] {
    background: var(--primary) !important;
    color: #fff !important;
    border: none !important;
    box-shadow: 0 4px 0 #15803d !important;
}

.btn-mega:hover,
.btn-primary-small:hover,
.btn-school:hover,
button[type="submit"]:hover {
    background: #16a34a !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 0 #15803d !important;
}

.btn-mega:active,
.btn-primary-small:active,
.btn-school:active,
button[type="submit"]:active {
    transform: translateY(2px) !important;
    box-shadow: 0 2px 0 #15803d !important;
}

.btn-secondary {
    background: rgba(0, 0, 0, 0.03) !important;
    border: 2px solid rgba(0, 0, 0, 0.15) !important;
    color: var(--text-white) !important;
    box-shadow: none !important;
}

.btn-secondary:hover {
    border-color: var(--primary) !important;
    color: var(--primary) !important;
    background: rgba(34, 197, 94, 0.08) !important;
}

.store-btn {
    background: #0f172a !important;
    color: #fff !important;
    border: 1px solid rgba(0, 0, 0, 0.1) !important;
    box-shadow: 0 4px 0 #020617 !important;
}

.store-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 0 #020617 !important;
    border-color: var(--primary) !important;
}

.hero .cta-group .btn-mega,
.hero .cta-group .btn-secondary {
    padding: 12px 28px !important;
    font-size: 1rem !important;
    min-width: 160px;
    justify-content: center;
}

.faq-section {
    padding: 100px 5%;
    background: #f8fafc;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.faq-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.float-shape {
    position: absolute;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--primary);
    opacity: 0.15;
    font-size: 10rem;
    animation: float 10s ease-in-out infinite;
}

.shape-1 {
    top: 10%;
    left: -5%;
    animation-duration: 12s;
}

.shape-2 {
    bottom: 10%;
    right: -5%;
    animation-duration: 15s;
    animation-delay: 2s;
}

.shape-3 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.08;
    font-size: 20rem;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.faq-item {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.05);
    margin-bottom: 15px;
    border-radius: 15px;
    transition: all 0.3s ease;
    overflow: hidden;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(0, 0, 0, 0.1);
}

.faq-item.active {
    background: rgba(22, 163, 74, 0.05);
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(34, 197, 94, 0.1);
}

.faq-question {
    width: 100%;
    padding: 25px;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    color: var(--text-white);
    font-size: 1.1rem;
    font-weight: 700;
    text-align: left;
}

.faq-question .icon {
    font-size: 1.5rem;
    color: var(--primary);
    transition: transform 0.3s;
    background: rgba(0, 0, 0, 0.03);
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.faq-item.active .icon {
    transform: rotate(45deg);
    background: var(--primary);
    color: #fff;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
    padding: 0 25px;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding-bottom: 25px;
}

.faq-answer p {
    color: var(--text-gray);
    font-size: 1rem;
    line-height: 1.6;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 15px;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    background: #ffffff;
    position: relative;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger .bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    transition: all 0.3s ease-in-out;
    background-color: var(--text-white);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.parent-company-block {
    margin-top: 25px;
    margin-left: auto;
    margin-right: auto;

    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    max-width: 250px;
}

.parent-label {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #94a3b8;
    margin-bottom: 12px;
}

.parent-full-logo {
    height: 65px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    margin-bottom: 10px;
}

.parent-address {
    font-size: 0.75rem;
    color: #64748b;
    line-height: 1.5;
    margin: 0;
}

.contact-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.contact-details {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

.office-address {
    text-align: center;
    justify-content: center;
}

.brand-icon-bg {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.contact-parent-logo {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.hq-title {
    font-size: 1rem;
    color: #fff;
    margin-bottom: 4px;
    display: block;
}

.highlight-parent {
    color: rgba(255, 255, 255, 0.6);
    font-weight: 400;
    font-size: 0.9em;
}

.hq-address {
    font-size: 0.9rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.7);
    display: block;
}

@media (max-width: 768px) {
    .logo-img {
        height: 40px;
    }

    .footer-logo-img {
        height: 45px;
    }

    .btn-primary-small {
        width: 80vw;
        font-size: 1rem;
    }

    .hero {
        flex-direction: column;
        padding-top: 120px;
        text-align: center;
    }

    h1 {
        font-size: 2.5rem;
    }

    .path-line {
        left: 20px;
    }

    .realm-card {
        width: 100%;
        margin-left: 40px !important;
    }

    .pricing-card.popular {
        transform: scale(1);
        margin: 20px 0;
    }

    .pricing-card.popular:hover {
        transform: scale(1.02);
    }

    .inventory-grid {
        grid-template-columns: 1fr;
    }

    .realm-card {
        overflow: hidden;
        max-height: 180px;
    }

    .syllabus-path {
        display: block;
        margin-top: 20px;
        padding-top: 20px;
        border-top: 1px dashed rgba(0, 0, 0, 0.1);
        opacity: 0;
        transform: translateY(-10px);
        transition: all 0.3s ease-out;
    }

    .realm-card.expanded {
        max-height: 500px;
        background: #ffffff;
        border-color: var(--primary);
    }

    .realm-card.expanded .expand-hint {
        transform: rotate(180deg);
    }

    .realm-card.expanded .syllabus-path {
        opacity: 1;
        transform: translateY(0);
    }

    .school-container {
        flex-direction: column;
    }

    .school-visual {
        width: 100%;
    }

    .path-svg {
        width: 200px;
        opacity: 0.5;
    }

    .hero {
        padding-top: 100px;
        flex-direction: column;
        gap: 40px;
    }

    .hero-content {
        padding: 0 20px;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .cta-group {
        flex-direction: column;
        width: 100%;
        margin-top: 30px;
        gap: 15px;
    }

    .btn-mega,
    .btn-secondary {
        width: 100%;
        margin-left: 0;
        margin-bottom: 0;
        justify-content: center;
    }

    .hero-visual {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .gameplay-card {
        width: 90%;
        max-width: 350px;
    }

    .journey-section {
        padding: 60px 20px;
    }

    .path-container {
        padding: 0;
    }

    .path-line,
    .path-svg {
        display: none;
    }

    .realm-card {
        margin: 0 auto 20px auto !important;
        width: 100%;
        max-width: 400px;
    }

    .card-content p {
        font-size: 0.95rem;
    }

    .pricing-container {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding-bottom: 30px;
        gap: 20px;
        justify-content: flex-start;
        -webkit-overflow-scrolling: touch;
    }

    .pricing-card {
        flex: 0 0 85vw;
        scroll-snap-align: center;
        margin: 0;
        transform: none !important;
    }

    .pricing-container::-webkit-scrollbar {
        display: none;
    }

    .reviews-scroller {
        display: none;
    }

    .marquee-wrapper {
        mask-image: none;
    }

    .marquee-track {
        animation: none;
        width: 100%;
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 20px;
        padding-bottom: 20px;
    }

    .trading-card {
        flex: 0 0 85vw;
        scroll-snap-align: center;
        margin: 0 auto;
    }

    .main-footer {
        padding: 40px 20px;
    }

    .footer-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-areas:
            "brand brand"
            "links1 links2"
            "social social";
        gap: 30px 10px;
        text-align: center;
    }

    .footer-col:nth-child(2) h4,
    .footer-col:nth-child(3) h4 {
        font-size: 1rem;
        margin-bottom: 15px;
        color: var(--primary);
    }

    .social-icons {
        justify-content: flex-start;
    }

    .footer-bottom {
        font-size: 0.75rem;
    }

    .hero-trust-strip {
        justify-content: center;
    }

    .pedagogy-container {
        flex-direction: column;
    }

    .bloom-connector {
        transform: rotate(90deg);
        margin: 10px 0;
    }

    .bloom-step {
        width: 100%;
    }

    .navbar {
        padding: 15px 20px;
        background: #ffffff;
        height: 70px;
        position: relative;
        z-index: 1000;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .hamburger {
        display: block;
        z-index: 1002;
        cursor: pointer;
    }

    .nav-links {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;

        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        max-height: 300px;
        background: rgba(255, 255, 255, 0.98);

        transition: left 0.3s ease-in-out;
        z-index: 1001;
        gap: 30px;
        padding: 0;
        margin: 0;
    }

    .nav-links.active {
        left: 0;
        padding-top: 30px;
    }

    .nav-links a {
        font-size: 1.18rem;
        color: var(--text-white) !important;
        text-decoration: none;
        display: block;
        padding: 10px;
        width: auto;
        border: none;
    }

    .nav-links .mobile-nav-btn {
        display: block !important;
        width: 80% !important;
        max-width: 250px;
        margin-top: 20px !important;
        margin-left: auto !important;
        margin-right: auto !important;
        padding: 15px 0 !important;
        font-size: 1.1rem !important;
    }

    .footer-grid {
        display: flex !important;
        flex-direction: column;
        align-items: center;
        gap: 50px;
        padding: 0 20px;
    }

    .footer-col {
        width: 100%;
        align-items: center;
        text-align: center;
    }

    .parent-company-block {
        margin: 20px auto 0 auto;
        width: 100%;
        max-width: 280px;
    }

    .links-col {
        align-items: center !important;
        text-align: center !important;
    }

    .links-col a {
        display: block;
        width: 100%;
        padding: 8px 0;
        font-size: 1.1rem;
        text-align: center;
    }

    .contact-col {
        align-items: center !important;
    }

    .social-icons {
        justify-content: center;
        margin-bottom: 20px;
    }

    .footer-col h4 {
        text-align: center !important;
        width: 100%;
        margin-bottom: 20px;
    }

    .hero-trust-strip {
        gap: 10px;
    }

    .trust-logo {
        border-right: none !important;
        padding: 5px 10px;
        background: rgba(0, 0, 0, 0.03);
        border-radius: 4px;
    }

    .store-buttons {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        width: 100%;
        margin-top: 20px;
    }

    .store-btn {
        width: 80% !important;
        max-width: 320px;
        justify-content: center;
        margin: 0 !important;
    }
}

a.method-row {
    text-decoration: none; /* Removes underline */
    color: inherit;        /* Keeps your original text colors */
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
    display: flex;         /* Ensures flex layout is kept */
    align-items: center;   /* Vertically align icon and text */
    gap: 15px;             /* Space between icon and text */
    
    /* Optional: Add a subtle border or padding if not already there */
    border-radius: 12px;
    padding: 10px;
}

/* Hover Effect: Make it look interactive */
a.method-row:hover {
    background: rgba(255, 255, 255, 0.05); /* Subtle highlight */
    transform: translateX(5px);            /* Slight slide to the right */
}

/* Ensure the address text doesn't turn blue */
a.method-row span, 
a.method-row strong {
    color: inherit; 
}