/* Galaxy Theme Variables */
:root {
    --galaxy-dark: #0a0118;
    --galaxy-purple: #6B46C1;
    --galaxy-blue: #4C1D95;
    --galaxy-pink: #C026D3;
    --galaxy-cyan: #06B6D4;
    --neon-purple: #A78BFA;
    --neon-blue: #60A5FA;
    --neon-pink: #F472B6;
    --text-primary: #F3F4F6;
    --text-secondary: #D1D5DB;
    --text-muted: #9CA3AF;
    --bg-card: rgba(17, 24, 39, 0.6);
    --bg-card-hover: rgba(31, 41, 55, 0.8);
    --border-glow: rgba(167, 139, 250, 0.3);
}

/* Reset and Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--galaxy-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Animated Star Background */
@keyframes twinkle {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

@keyframes move-stars {
    from { transform: translateY(0); }
    to { transform: translateY(-2000px); }
}

.stars,
.stars2,
.stars3 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 200%;
    z-index: -1;
}

.stars {
    background: transparent url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAADUlEQVQYV2P4////fwAJ+wP93BEhNAAAAABJRU5ErkJggg==') repeat;
    box-shadow:
        0 0 1px 1px rgba(255,255,255,0.3),
        10px 50px 1px 1px rgba(255,255,255,0.3),
        100px 200px 1px 1px rgba(255,255,255,0.3),
        300px 400px 1px 1px rgba(255,255,255,0.3);
    animation: move-stars 100s linear infinite;
}

.stars2 {
    background: transparent url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAADUlEQVQYV2P4////fwAJ+wP93BEhNAAAAABJRU5ErkJggg==') repeat;
    box-shadow:
        200px 100px 1px 1px rgba(167,139,250,0.4),
        400px 300px 1px 1px rgba(167,139,250,0.4),
        600px 500px 1px 1px rgba(167,139,250,0.4);
    animation: move-stars 150s linear infinite;
}

.stars3 {
    background: transparent url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAADUlEQVQYV2P4////fwAJ+wP93BEhNAAAAABJRU5ErkJggg==') repeat;
    box-shadow:
        150px 250px 2px 2px rgba(96,165,250,0.5),
        350px 450px 2px 2px rgba(96,165,250,0.5);
    animation: move-stars 200s linear infinite;
}

#particle-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 1, 24, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-glow);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(10, 1, 24, 0.95);
    box-shadow: 0 10px 40px rgba(107, 70, 193, 0.2);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
}

.logo {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: none;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.2rem;
    transition: all 0.3s ease;
}

.logo-bracket {
    color: var(--neon-purple);
    font-size: 1.8rem;
}

.logo-text {
    background: linear-gradient(135deg, var(--neon-purple), var(--neon-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo:hover {
    transform: translateY(-2px);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 3rem;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    position: relative;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--neon-purple), var(--neon-blue));
    transition: width 0.3s ease;
}

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

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

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--neon-purple);
    border-radius: 3px;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 8rem 0 4rem;
    overflow: hidden;
}

.hero-content {
    text-align: center;
    z-index: 1;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.5rem;
    background: rgba(167, 139, 250, 0.1);
    border: 1px solid var(--border-glow);
    border-radius: 50px;
    color: var(--neon-purple);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 2rem;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(167, 139, 250, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(167, 139, 250, 0.6);
    }
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--neon-purple);
    border-radius: 50%;
    animation: blink 1.5s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.hero-greeting {
    display: block;
    font-size: 1.5rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.hero-name {
    display: block;
    font-family: 'Orbitron', monospace;
    font-size: 4rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--neon-purple), var(--neon-blue), var(--neon-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradient-shift 3s ease infinite;
    margin-bottom: 1rem;
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-role {
    font-size: 2rem;
    color: var(--text-primary);
    margin-bottom: 2rem;
    font-family: 'Orbitron', monospace;
}

.cursor {
    animation: blink 1s infinite;
    color: var(--neon-purple);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: 'Orbitron', monospace;
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--neon-purple), var(--neon-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    color: var(--text-muted);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border-glow);
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 3rem;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--galaxy-purple), var(--galaxy-pink));
    color: white;
    box-shadow: 0 10px 30px rgba(167, 139, 250, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(167, 139, 250, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--neon-purple);
    border-color: var(--neon-purple);
}

.btn-secondary:hover {
    background: rgba(167, 139, 250, 0.1);
    transform: translateY(-3px);
}

.btn span {
    position: relative;
    z-index: 1;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-line {
    width: 2px;
    height: 60px;
    background: linear-gradient(to bottom, var(--neon-purple), transparent);
    animation: scroll-down 2s infinite;
}

@keyframes scroll-down {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translateY(20px);
    }
}

/* Section Styles */
section {
    padding: 6rem 0;
    position: relative;
}

.section-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.section-number {
    font-family: 'Orbitron', monospace;
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--neon-purple), var(--neon-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.3;
}

.section-title {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

.section-line {
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, var(--border-glow), transparent);
}

/* About Section */
.about {
    background: radial-gradient(circle at top right, rgba(107, 70, 193, 0.1), transparent);
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.lead-text {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.about-text p {
    color: var(--text-secondary);
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.highlight-item {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-glow);
    border-radius: 1rem;
    transition: all 0.3s ease;
}

.highlight-item:hover {
    background: var(--bg-card-hover);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(107, 70, 193, 0.3);
}

.highlight-icon {
    font-size: 2.5rem;
    filter: drop-shadow(0 0 10px rgba(167, 139, 250, 0.5));
}

.highlight-content h4 {
    color: var(--neon-purple);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.highlight-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Skills Section */
.skills-section {
    background: radial-gradient(circle at bottom left, rgba(96, 165, 250, 0.1), transparent);
}

.skills-container {
    display: grid;
    gap: 3rem;
}

.skill-category {
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-glow);
    border-radius: 1.5rem;
    padding: 2.5rem;
    transition: all 0.3s ease;
}

.skill-category:hover {
    border-color: var(--neon-purple);
    box-shadow: 0 20px 60px rgba(107, 70, 193, 0.3);
}

.category-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.category-icon {
    font-size: 2rem;
    filter: drop-shadow(0 0 10px rgba(167, 139, 250, 0.5));
}

.category-header h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    color: var(--text-primary);
}

.skills-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.skill-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.skill-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.skill-name {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 1.125rem;
}

.skill-level {
    color: var(--neon-purple);
    font-size: 0.875rem;
    font-weight: 500;
}

.skill-bar {
    height: 8px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    overflow: hidden;
}

.skill-progress {
    height: 100%;
    background: linear-gradient(90deg, var(--neon-purple), var(--neon-blue));
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(167, 139, 250, 0.5);
    animation: skill-load 1.5s ease-out;
}

@keyframes skill-load {
    from { width: 0; }
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.tech-tag {
    padding: 0.75rem 1.5rem;
    background: rgba(167, 139, 250, 0.1);
    border: 1px solid var(--border-glow);
    border-radius: 50px;
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.tech-tag:hover {
    background: rgba(167, 139, 250, 0.2);
    border-color: var(--neon-purple);
    color: var(--neon-purple);
    transform: translateY(-2px);
}

/* Contact Section */
.contact {
    background: radial-gradient(circle at top, rgba(192, 38, 211, 0.1), transparent);
}

.contact-intro {
    text-align: center;
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 3rem;
}

.contact-methods {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem 3rem;
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-glow);
    border-radius: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 350px;
}

.contact-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--neon-purple);
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(107, 70, 193, 0.4);
}

.contact-icon {
    font-size: 3rem;
    filter: drop-shadow(0 0 10px rgba(167, 139, 250, 0.5));
}

.contact-details h4 {
    color: var(--text-primary);
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.contact-details p {
    color: var(--neon-purple);
    font-size: 1rem;
}

.contact-arrow {
    margin-left: auto;
    font-size: 2rem;
    color: var(--neon-purple);
    transition: transform 0.3s ease;
}

.contact-card:hover .contact-arrow {
    transform: translateX(10px);
}

/* Footer */
.footer {
    background: rgba(10, 1, 24, 0.95);
    border-top: 1px solid var(--border-glow);
    padding: 3rem 0 2rem;
    margin-top: 6rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 3rem;
    gap: 3rem;
    flex-wrap: wrap;
}

.footer-brand {
    max-width: 400px;
}

.footer-logo {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-tagline {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

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

.footer-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-link {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-link:hover {
    color: var(--neon-purple);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(167, 139, 250, 0.1);
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copyright,
.footer-made-with {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.heart {
    color: var(--neon-pink);
    animation: heartbeat 1.5s infinite;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero-name {
        font-size: 2.5rem;
    }

    .hero-role {
        font-size: 1.5rem;
    }

    .hero-subtitle {
        font-size: 1.125rem;
    }

    .hero-stats {
        gap: 1.5rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .section-number {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .about-highlights {
        grid-template-columns: 1fr;
    }

    .contact-card {
        min-width: auto;
        width: 100%;
    }

    .footer-content {
        flex-direction: column;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .hero-name {
        font-size: 2rem;
    }

    .lead-text {
        font-size: 1.25rem;
    }

    .stat-divider {
        display: none;
    }
}

/* ========================================
   MOJO PAGE STYLES
   ======================================== */

/* Mojo Hero */
.mojo-hero {
    padding: 10rem 0 6rem;
}

.mojo-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.mojo-icon {
    font-size: 5rem;
    filter: drop-shadow(0 0 20px rgba(167, 139, 250, 0.6));
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.mojo-title {
    font-family: 'Orbitron', monospace;
    font-size: 5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--neon-purple), var(--neon-blue), var(--neon-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradient-shift 3s ease infinite;
}

.mojo-tagline {
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    text-align: center;
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
}

.mojo-badges {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(167, 139, 250, 0.1);
    border: 1px solid var(--border-glow);
    border-radius: 50px;
    color: var(--text-secondary);
}

.badge-icon {
    font-size: 1.25rem;
}

.badge-text {
    font-weight: 500;
}

/* Mojo Sections */
.mojo-section {
    padding: 6rem 0;
}

.mojo-content-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: center;
}

.content-text p {
    color: var(--text-secondary);
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.problem-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat-card {
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-glow);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(107, 70, 193, 0.3);
    border-color: var(--neon-purple);
}

.stat-card .stat-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 10px rgba(167, 139, 250, 0.5));
}

.stat-card .stat-value {
    font-family: 'Orbitron', monospace;
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--neon-purple), var(--neon-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-card .stat-label {
    color: var(--text-secondary);
    font-size: 1rem;
}

/* Solution Section */
.solution-section {
    background: radial-gradient(circle at top, rgba(107, 70, 193, 0.1), transparent);
}

.solution-content {
    max-width: 1000px;
    margin: 0 auto;
}

.solution-hero {
    text-align: center;
    margin-bottom: 4rem;
}

.solution-headline {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.solution-text {
    font-size: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
}

.solution-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.solution-card {
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-glow);
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.3s ease;
}

.solution-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(107, 70, 193, 0.3);
    border-color: var(--neon-purple);
}

.solution-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 10px rgba(167, 139, 250, 0.5));
}

.solution-card h4 {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.solution-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Features Section */
.features-section {
    background: radial-gradient(circle at bottom, rgba(96, 165, 250, 0.1), transparent);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-card {
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-glow);
    border-radius: 1rem;
    padding: 2.5rem;
    position: relative;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(107, 70, 193, 0.3);
    border-color: var(--neon-purple);
}

.feature-number {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-family: 'Orbitron', monospace;
    font-size: 3rem;
    font-weight: 700;
    opacity: 0.1;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 10px rgba(167, 139, 250, 0.5));
}

.feature-title {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.feature-description {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Use Cases Section */
.use-cases-section {
    background: radial-gradient(circle at center, rgba(192, 38, 211, 0.1), transparent);
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.use-case-card {
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-glow);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.use-case-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(107, 70, 193, 0.3);
    border-color: var(--neon-purple);
}

.use-case-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 10px rgba(167, 139, 250, 0.5));
}

.use-case-card h4 {
    font-size: 1.25rem;
    color: var(--neon-purple);
    margin-bottom: 0.75rem;
}

.use-case-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* How It Works */
.how-it-works {
    background: radial-gradient(circle at top left, rgba(107, 70, 193, 0.1), transparent);
}

.steps-container {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-top: 3rem;
}

.step-card {
    flex: 1;
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-glow);
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(107, 70, 193, 0.3);
    border-color: var(--neon-purple);
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--galaxy-purple), var(--galaxy-pink));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
}

.step-content h3 {
    font-size: 1.25rem;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.step-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
}

.step-arrow {
    font-size: 2rem;
    color: var(--neon-purple);
    flex-shrink: 0;
}

/* Download Section */
.download-section {
    background: radial-gradient(circle at bottom right, rgba(96, 165, 250, 0.1), transparent);
    padding: 8rem 0;
}

.download-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.download-title {
    font-family: 'Orbitron', monospace;
    font-size: 3rem;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.download-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.download-buttons {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.store-button {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-glow);
    border-radius: 1rem;
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.store-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(107, 70, 193, 0.3);
    border-color: var(--neon-purple);
}

.store-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.store-label {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.store-name {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
}

.download-note {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Phone Mockup */
.download-preview {
    display: flex;
    justify-content: center;
}

.phone-mockup {
    width: 300px;
    height: 600px;
    background: linear-gradient(135deg, #1a1a2e, #0f0f1e);
    border-radius: 40px;
    padding: 15px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    border: 8px solid #2a2a3e;
    position: relative;
}

.phone-mockup::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 25px;
    background: #1a1a2e;
    border-radius: 0 0 15px 15px;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0a0118, #1a0f2e);
    border-radius: 30px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    padding: 2rem 1.5rem;
}

.mockup-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.mockup-header {
    text-align: center;
}

.mockup-streak {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.mockup-xp {
    color: var(--neon-purple);
    font-weight: 600;
}

.mockup-button {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.tap-button {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--galaxy-purple), var(--galaxy-pink));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    font-weight: 700;
    color: white;
    box-shadow: 0 10px 30px rgba(167, 139, 250, 0.5);
    cursor: pointer;
    animation: pulse 2s ease-in-out infinite;
}

.mockup-button p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.mockup-stats {
    display: flex;
    gap: 1rem;
}

.mockup-stat {
    flex: 1;
    background: rgba(167, 139, 250, 0.1);
    border: 1px solid var(--border-glow);
    border-radius: 1rem;
    padding: 1rem;
    text-align: center;
}

.mockup-stat .stat-value {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--neon-purple);
}

.mockup-stat .stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Support Section */
.support-section {
    text-align: center;
    padding: 6rem 0;
}

.support-content {
    max-width: 600px;
    margin: 0 auto;
}

.support-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 20px rgba(167, 139, 250, 0.5));
}

.support-title {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.support-text {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.8;
}

/* Mojo Footer */
.mojo-footer {
    margin-top: 0;
}

.mojo-footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.mojo-icon-small {
    font-size: 2rem;
    filter: drop-shadow(0 0 10px rgba(167, 139, 250, 0.5));
}

.mojo-name {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--neon-purple), var(--neon-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-links-section {
    min-width: 200px;
}

.footer-link-inline {
    color: var(--neon-purple);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link-inline:hover {
    color: var(--neon-blue);
}

/* Active nav link */
.nav-links a.active {
    color: var(--neon-purple);
}

.nav-links a.active::after {
    width: 100%;
}

/* Responsive - Mojo Page */
@media (max-width: 1024px) {
    .mojo-content-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .download-content {
        grid-template-columns: 1fr;
    }

    .phone-mockup {
        margin: 0 auto;
    }

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

    .step-arrow {
        transform: rotate(90deg);
    }
}

@media (max-width: 768px) {
    .mojo-title {
        font-size: 3rem;
    }

    .mojo-tagline {
        font-size: 1.5rem;
    }

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

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

    .use-cases-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .download-title {
        font-size: 2rem;
    }

    .phone-mockup {
        width: 250px;
        height: 500px;
    }

    .tap-button {
        width: 120px;
        height: 120px;
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .mojo-title {
        font-size: 2.5rem;
    }

    .use-cases-grid {
        grid-template-columns: 1fr;
    }

    .download-buttons {
        flex-direction: column;
    }

    .store-button {
        width: 100%;
    }
}
