/* Reset and Core Variables */
:root {
    --bg: #050508;
    --bg-secondary: #0c0c16;
    --text: #f8fafc;
    --text-muted: #94a3b8;
    --solana-green: #14f195;
    --solana-purple: #9945ff;
    --gradient-primary: linear-gradient(135deg, #14f195 0%, #9945ff 100%);
    --gradient-glow: linear-gradient(135deg, rgba(20, 241, 149, 0.15) 0%, rgba(153, 69, 255, 0.15) 100%);
    --card-bg: rgba(17, 24, 39, 0.6);
    --card-border: rgba(153, 69, 255, 0.15);
    --card-border-hover: rgba(20, 241, 149, 0.4);
    --navbar-bg: rgba(5, 5, 8, 0.85);
    --glow-shadow: 0 0 20px rgba(153, 69, 255, 0.35);
    --glow-shadow-green: 0 0 20px rgba(20, 241, 149, 0.35);
    --font-sans: 'Inter', sans-serif;
    --font-heading: 'Orbitron', sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg);
    color: var(--text);
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: min(1200px, 90%);
    margin: 0 auto;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    letter-spacing: 0.5px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 3rem;
    position: relative;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-title.center {
    text-align: center;
}

/* Navigation styling */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--navbar-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    z-index: 1000;
    transition: var(--transition);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 900;
    text-decoration: none;
    color: var(--text);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: var(--transition);
}

.logo-img {
    height: 32px;
    width: auto;
    filter: drop-shadow(0 0 8px var(--solana-green));
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--solana-green);
    text-shadow: 0 0 10px rgba(20, 241, 149, 0.4);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
}

.menu-toggle .bar {
    width: 25px;
    height: 3px;
    background-color: var(--text);
    transition: var(--transition);
    border-radius: 2px;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 120px;
    padding-bottom: 60px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 10% 20%, rgba(20, 241, 149, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(153, 69, 255, 0.08) 0%, transparent 40%);
    z-index: 1;
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(rgba(5, 5, 8, 0) 60%, rgba(5, 5, 8, 0.9) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    border: 1px solid rgba(20, 241, 149, 0.3);
    background: rgba(20, 241, 149, 0.08);
    color: var(--solana-green);
    border-radius: 999px;
    margin-bottom: 1.5rem;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 0 15px rgba(20, 241, 149, 0.1);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 0 15px rgba(20, 241, 149, 0.1); }
    50% { transform: scale(1.03); box-shadow: 0 0 25px rgba(20, 241, 149, 0.25); }
    100% { transform: scale(1); box-shadow: 0 0 15px rgba(20, 241, 149, 0.1); }
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.8rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    position: relative;
}

/* Glitch Text Effect */
.glitch {
    position: relative;
    color: var(--text);
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg);
}

.glitch::before {
    left: 2px;
    text-shadow: -2px 0 var(--solana-purple);
    clip: rect(44px, 450px, 56px, 0);
    animation: glitch-anim 5s infinite linear alternate-reverse;
}

.glitch::after {
    left: -2px;
    text-shadow: -2px 0 var(--solana-green), 0 2px var(--solana-purple);
    clip: rect(85px, 450px, 140px, 0);
    animation: glitch-anim2 5s infinite linear alternate-reverse;
}

@keyframes glitch-anim {
    0% { clip: rect(15px, 9999px, 66px, 0); }
    10% { clip: rect(34px, 9999px, 55px, 0); }
    20% { clip: rect(85px, 9999px, 5px, 0); }
    30% { clip: rect(27px, 9999px, 115px, 0); }
    40% { clip: rect(73px, 9999px, 29px, 0); }
    50% { clip: rect(100px, 9999px, 120px, 0); }
    60% { clip: rect(18px, 9999px, 85px, 0); }
    70% { clip: rect(62px, 9999px, 40px, 0); }
    80% { clip: rect(9px, 9999px, 97px, 0); }
    90% { clip: rect(122px, 9999px, 50px, 0); }
    100% { clip: rect(3px, 9999px, 133px, 0); }
}

@keyframes glitch-anim2 {
    0% { clip: rect(80px, 9999px, 120px, 0); }
    10% { clip: rect(12px, 9999px, 95px, 0); }
    20% { clip: rect(44px, 9999px, 67px, 0); }
    30% { clip: rect(98px, 9999px, 110px, 0); }
    40% { clip: rect(5px, 9999px, 33px, 0); }
    50% { clip: rect(125px, 9999px, 22px, 0); }
    60% { clip: rect(88px, 9999px, 75px, 0); }
    70% { clip: rect(31px, 9999px, 120px, 0); }
    80% { clip: rect(64px, 9999px, 89px, 0); }
    90% { clip: rect(15px, 9999px, 47px, 0); }
    100% { clip: rect(102px, 9999px, 138px, 0); }
}

.subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-muted);
    max-width: 800px;
    margin-bottom: 2.5rem;
    font-weight: 500;
}

.cta-group {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 30px;
    border-radius: 12px;
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background: var(--gradient-primary);
    color: #000;
    box-shadow: 0 4px 15px rgba(20, 241, 149, 0.2);
}

.btn-primary:hover {
    box-shadow: var(--glow-shadow-green);
    transform: translateY(-3px);
}

.btn-secondary {
    background: transparent;
    color: var(--text);
    border: 1.5px solid var(--card-border);
}

.btn-secondary:hover {
    border-color: var(--solana-purple);
    box-shadow: var(--glow-shadow);
    transform: translateY(-3px);
}

/* Image Showcase Container */
.hero-image-container {
    width: 100%;
    max-width: 900px;
    border-radius: 20px;
    padding: 8px;
    background: var(--gradient-glow);
    border: 1px solid var(--card-border);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    margin-top: 2rem;
    position: relative;
    overflow: hidden;
}

.hero-image-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, transparent 100%);
    pointer-events: none;
}

.hero-image {
    width: 100%;
    height: auto;
    border-radius: 16px;
    display: block;
    object-fit: cover;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.8);
}

/* Sections */
.section {
    padding: 100px 0;
    position: relative;
}

.about-section {
    background-color: var(--bg-secondary);
}

.grid-2 {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.about-text h3 {
    font-size: 1.6rem;
    color: var(--text);
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.about-text h3 span {
    color: var(--solana-green);
}

.about-text p {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 2rem;
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.stat-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 18px;
    padding: 22px 26px;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: var(--transition);
}

.stat-card:hover {
    border-color: var(--card-border-hover);
    transform: translateX(5px);
    box-shadow: 0 10px 20px rgba(20, 241, 149, 0.05);
}

.stat-card i {
    font-size: 2rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.stat-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Features Styling */
.features-section {
    background: var(--bg);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.8rem;
}

.feature-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 30px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: var(--transition);
}

.feature-card:hover {
    border-color: var(--card-border-hover);
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4), 0 0 15px rgba(20, 241, 149, 0.05);
}

.feature-card:hover::before {
    opacity: 1;
}

.icon-box {
    width: 60px;
    height: 60px;
    background: rgba(153, 69, 255, 0.1);
    border: 1px solid rgba(153, 69, 255, 0.25);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.feature-card:hover .icon-box {
    background: rgba(20, 241, 149, 0.1);
    border-color: rgba(20, 241, 149, 0.3);
    transform: scale(1.05);
}

.icon-box i {
    font-size: 1.5rem;
    color: var(--solana-purple);
    transition: var(--transition);
}

.feature-card:hover .icon-box i {
    color: var(--solana-green);
    filter: drop-shadow(0 0 5px rgba(20, 241, 149, 0.5));
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* App Previews / Screenshots Section */
.screenshots-section {
    background-color: var(--bg-secondary);
}

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

.screenshot-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 12px;
    transition: var(--transition);
    position: relative;
}

.screenshot-card:hover {
    border-color: var(--card-border-hover);
    transform: scale(1.02);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}

.screenshot-wrapper {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    aspect-ratio: 9 / 16; /* Perfect mobile ratio */
    background: #000;
}

.screenshot-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: var(--transition);
}

.screenshot-card:hover .screenshot-wrapper img {
    transform: scale(1.05);
}

.screenshot-info {
    padding: 1rem 0.5rem 0.5rem;
    text-align: center;
}

.screenshot-info h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 4px;
}

.screenshot-info p {
    font-size: 0.85rem;
    color: var(--solana-green);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Roadmap/Timeline Styling */
.roadmap-section {
    background: var(--bg);
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 4rem auto 0;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 4px;
    background: linear-gradient(180deg, var(--solana-green) 0%, var(--solana-purple) 80%, rgba(153, 69, 255, 0.1) 100%);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
    border-radius: 2px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    width: 50%;
    margin-bottom: 2rem;
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    right: -10px;
    background-color: var(--bg);
    border: 4px solid var(--solana-green);
    top: 15px;
    border-radius: 50%;
    z-index: 5;
    box-shadow: 0 0 10px rgba(20, 241, 149, 0.6);
    transition: var(--transition);
}

.timeline-item:nth-child(even) {
    left: 50%;
}

.timeline-item:nth-child(odd) {
    left: 0;
}

.timeline-item:nth-child(even)::after {
    left: -10px;
}

.timeline-content {
    padding: 24px;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    position: relative;
    border-radius: 16px;
    transition: var(--transition);
}

.timeline-item:hover .timeline-content {
    border-color: var(--card-border-hover);
    box-shadow: 0 10px 20px rgba(20, 241, 149, 0.05);
}

.timeline-item:nth-child(even):hover::after {
    border-color: var(--solana-purple);
    box-shadow: 0 0 10px rgba(153, 69, 255, 0.6);
}

.timeline-item:nth-child(odd):hover::after {
    border-color: var(--solana-green);
    box-shadow: 0 0 10px rgba(20, 241, 149, 0.6);
}

.phase {
    display: inline-block;
    padding: 3px 10px;
    background: rgba(153, 69, 255, 0.15);
    color: var(--solana-purple);
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 6px;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.timeline-item:nth-child(odd) .phase {
    background: rgba(20, 241, 149, 0.15);
    color: var(--solana-green);
}

.timeline-content h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
    font-weight: 700;
}

.timeline-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.timeline-item.future::after {
    border-color: var(--text-muted);
    background-color: var(--bg);
    box-shadow: none;
}

.timeline-item.future .timeline-content {
    opacity: 0.7;
    border-style: dashed;
}

/* Contact / Publisher Section */
.contact-section {
    background-color: var(--bg-secondary);
}

.contact-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 24px;
    padding: 3rem;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.contact-card::after {
    content: '';
    position: absolute;
    bottom: -150px;
    right: -150px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(153, 69, 255, 0.1) 0%, transparent 70%);
    z-index: 1;
}

.contact-card h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-card p.description {
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    text-align: left;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 2;
}

.contact-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-item span.label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-item span.value, 
.contact-item a {
    font-size: 1rem;
    color: var(--text);
    font-weight: 600;
    text-decoration: none;
    word-break: break-all;
    transition: var(--transition);
}

.contact-item a:hover {
    color: var(--solana-green);
}

.availability-tag {
    display: inline-block;
    color: var(--solana-green);
    font-weight: 700;
    font-family: var(--font-heading);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-size: 0.9rem;
    border: 1px solid rgba(20, 241, 149, 0.2);
    background: rgba(20, 241, 149, 0.05);
    padding: 6px 16px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(20, 241, 149, 0.05);
}

/* Footer Styling */
.footer {
    background: var(--bg);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 60px 0 30px;
}

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

.footer-logo h3 {
    font-size: 1.4rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 4px;
}

.footer-logo p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover {
    color: var(--solana-green);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer-legal a {
    color: var(--text-muted);
    text-decoration: none;
    margin-left: 1.5rem;
    transition: var(--transition);
}

.footer-legal a:hover {
    color: var(--text);
}

/* Media Queries */
@media(max-width: 992px) {
    .grid-2 {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .timeline::after {
        left: 31px;
    }
    
    .timeline-item {
        width: 100%;
        padding-left: 55px;
        padding-right: 0;
    }
    
    .timeline-item:nth-child(even) {
        left: 0;
    }
    
    .timeline-item::after {
        left: 21px !important;
        right: auto !important;
    }
}

@media(max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 75px;
        left: -100%;
        flex-direction: column;
        background: rgba(5, 5, 8, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        width: 100%;
        height: calc(100vh - 75px);
        padding: 3rem 0;
        gap: 2.5rem;
        transition: 0.4s cubic-bezier(0.1, 0.9, 0.2, 1);
        border-top: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .menu-toggle.active .bar:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    
    .menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active .bar:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
    
    .hero {
        padding-top: 140px;
    }
    
    .contact-card {
        padding: 2rem 1.5rem;
    }
    
    .footer-content {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .footer-legal a {
        margin-left: 0;
        margin-right: 1.5rem;
    }
}
