/* SPACE ODYSSEY - Cinematic Design System */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;600;700;800;900&family=Inter:wght@300;400;500;600&display=swap');

:root {
    --deep-space: #050510;
    --nebula-purple: #6b21a8;
    --nebula-purple-light: #a855f7;
    --star-white: #f8fafc;
    --cosmic-blue: #0ea5e9;
    --cosmic-blue-dark: #0369a1;
    --cosmic-dust: rgba(168, 85, 247, 0.15);
    --nebula-pink: #ec4899;
    --nebula-cyan: #06b6d4;
    --shooting-star: #ffffff;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--deep-space);
    color: var(--star-white);
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* ========== UNIVERSE CONTAINER ========== */
.universe {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    background: radial-gradient(ellipse at 20% 80%, rgba(107, 33, 168, 0.3) 0%, transparent 50%),
                radial-gradient(ellipse at 80% 20%, rgba(14, 165, 233, 0.2) 0%, transparent 50%),
                radial-gradient(ellipse at 50% 50%, rgba(6, 182, 212, 0.1) 0%, transparent 70%),
                var(--deep-space);
}

/* ========== STARFIELD LAYERS ========== */
.starfield {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.star-layer {
    position: absolute;
    width: 100%;
    height: 100%;
    background-repeat: repeat;
}

.star-layer-1 {
    background-image: 
        radial-gradient(1px 1px at 20px 30px, white, transparent),
        radial-gradient(1px 1px at 40px 70px, rgba(255,255,255,0.8), transparent),
        radial-gradient(1px 1px at 50px 160px, rgba(255,255,255,0.6), transparent),
        radial-gradient(1px 1px at 90px 40px, white, transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(255,255,255,0.7), transparent),
        radial-gradient(1.5px 1.5px at 160px 120px, white, transparent),
        radial-gradient(1px 1px at 200px 50px, rgba(255,255,255,0.5), transparent),
        radial-gradient(1px 1px at 220px 150px, white, transparent),
        radial-gradient(1px 1px at 280px 90px, rgba(255,255,255,0.8), transparent),
        radial-gradient(1.5px 1.5px at 320px 180px, white, transparent);
    background-size: 350px 200px;
    animation: starFloat1 120s linear infinite;
}

.star-layer-2 {
    background-image: 
        radial-gradient(1.5px 1.5px at 25px 25px, rgba(14, 165, 233, 0.9), transparent),
        radial-gradient(2px 2px at 100px 60px, white, transparent),
        radial-gradient(1.5px 1.5px at 150px 100px, rgba(168, 85, 247, 0.8), transparent),
        radial-gradient(2px 2px at 200px 140px, rgba(6, 182, 212, 0.7), transparent),
        radial-gradient(1.5px 1.5px at 250px 30px, white, transparent),
        radial-gradient(2px 2px at 300px 80px, rgba(236, 72, 153, 0.6), transparent);
    background-size: 400px 180px;
    animation: starFloat2 180s linear infinite;
}

.star-layer-3 {
    background-image: 
        radial-gradient(2.5px 2.5px at 50px 50px, white, transparent),
        radial-gradient(3px 3px at 150px 100px, rgba(168, 85, 247, 1), transparent),
        radial-gradient(2.5px 2.5px at 250px 150px, rgba(14, 165, 233, 1), transparent),
        radial-gradient(3px 3px at 350px 50px, white, transparent);
    background-size: 500px 200px;
    animation: starFloat3 240s linear infinite;
}

@keyframes starFloat1 {
    from { transform: translateY(0) translateX(0); }
    to { transform: translateY(-200px) translateX(-50px); }
}

@keyframes starFloat2 {
    from { transform: translateY(0) translateX(0); }
    to { transform: translateY(-180px) translateX(30px); }
}

@keyframes starFloat3 {
    from { transform: translateY(0) translateX(0); }
    to { transform: translateY(-200px) translateX(-80px); }
}

/* ========== NEBULA CLOUDS ========== */
.nebula {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
    animation: nebulaFloat 30s ease-in-out infinite;
}

.nebula-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(107, 33, 168, 0.8) 0%, rgba(168, 85, 247, 0.4) 30%, transparent 70%);
    top: -100px;
    left: -200px;
    animation-delay: 0s;
}

.nebula-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.6) 0%, rgba(6, 182, 212, 0.3) 40%, transparent 70%);
    top: 20%;
    right: -150px;
    animation-delay: -10s;
    animation-direction: reverse;
}

.nebula-3 {
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.4) 0%, rgba(168, 85, 247, 0.3) 30%, transparent 60%);
    bottom: -200px;
    left: 20%;
    animation-delay: -20s;
}

.nebula-4 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.5) 0%, rgba(14, 165, 233, 0.3) 40%, transparent 70%);
    top: 50%;
    left: 10%;
    animation-delay: -5s;
}

@keyframes nebulaFloat {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.6; }
    25% { transform: translate(30px, -20px) scale(1.05); opacity: 0.7; }
    50% { transform: translate(-20px, 30px) scale(0.95); opacity: 0.5; }
    75% { transform: translate(10px, 10px) scale(1.02); opacity: 0.65; }
}

/* ========== COSMIC DUST PARTICLES ========== */
.cosmic-dust {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(1px 1px at 10% 20%, rgba(168, 85, 247, 0.4), transparent),
        radial-gradient(1px 1px at 30% 70%, rgba(14, 165, 233, 0.3), transparent),
        radial-gradient(1px 1px at 50% 30%, rgba(255, 255, 255, 0.2), transparent),
        radial-gradient(1px 1px at 70% 80%, rgba(236, 72, 153, 0.3), transparent),
        radial-gradient(1px 1px at 90% 40%, rgba(6, 182, 212, 0.4), transparent),
        radial-gradient(1px 1px at 15% 90%, rgba(168, 85, 247, 0.3), transparent),
        radial-gradient(1px 1px at 85% 10%, rgba(14, 165, 233, 0.3), transparent);
    background-size: 200px 200px;
    animation: dustFloat 60s linear infinite;
}

@keyframes dustFloat {
    from { transform: translateY(0); }
    to { transform: translateY(-200px); }
}

/* ========== SHOOTING STARS ========== */
.shooting-star {
    position: absolute;
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, white, transparent);
    opacity: 0;
    animation: shootingStar 8s ease-in-out infinite;
}

.shooting-star:nth-child(1) {
    top: 15%;
    left: 20%;
    animation-delay: 0s;
}

.shooting-star:nth-child(2) {
    top: 35%;
    right: 15%;
    animation-delay: -3s;
    transform: rotate(-25deg);
}

.shooting-star:nth-child(3) {
    top: 55%;
    left: 10%;
    animation-delay: -5s;
    transform: rotate(15deg);
}

@keyframes shootingStar {
    0% { opacity: 0; transform: translateX(0) translateY(0); }
    5% { opacity: 1; }
    20% { opacity: 0; transform: translateX(300px) translateY(150px); }
    100% { opacity: 0; }
}

/* ========== SPACECRAFT ========== */
.spacecraft {
    position: absolute;
    bottom: 15%;
    right: 10%;
    width: 120px;
    height: auto;
    opacity: 0.9;
    animation: spacecraftFloat 6s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(14, 165, 233, 0.5));
}

@keyframes spacecraftFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-15px) rotate(2deg); }
    50% { transform: translateY(-25px) rotate(0deg); }
    75% { transform: translateY(-10px) rotate(-2deg); }
}

/* ========== LENS FLARE ========== */
.lens-flare {
    position: absolute;
    top: 10%;
    left: 50%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 60%);
    transform: translateX(-50%);
    pointer-events: none;
    animation: flarePulse 4s ease-in-out infinite;
}

.lens-flare::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 10px;
    background: white;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 
        0 0 20px 10px rgba(255, 255, 255, 0.3),
        30px 20px 0 -5px rgba(168, 85, 247, 0.4),
        -40px 30px 0 -10px rgba(14, 165, 233, 0.3),
        60px -20px 0 -8px rgba(236, 72, 153, 0.2);
}

@keyframes flarePulse {
    0%, 100% { opacity: 0.6; transform: translateX(-50%) scale(1); }
    50% { opacity: 0.9; transform: translateX(-50%) scale(1.1); }
}

/* ========== TWINKLING STARS ========== */
.twinkle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: white;
    border-radius: 50%;
    animation: twinkleStar 2s ease-in-out infinite;
}

.twinkle:nth-child(1) { top: 20%; left: 15%; animation-delay: 0s; }
.twinkle:nth-child(2) { top: 40%; left: 25%; animation-delay: -0.5s; }
.twinkle:nth-child(3) { top: 60%; left: 35%; animation-delay: -1s; }
.twinkle:nth-child(4) { top: 30%; left: 45%; animation-delay: -1.5s; }
.twinkle:nth-child(5) { top: 70%; left: 55%; animation-delay: -0.3s; }
.twinkle:nth-child(6) { top: 25%; left: 65%; animation-delay: -0.8s; }
.twinkle:nth-child(7) { top: 55%; left: 75%; animation-delay: -1.2s; }
.twinkle:nth-child(8) { top: 35%; left: 85%; animation-delay: -1.8s; }

@keyframes twinkleStar {
    0%, 100% { opacity: 0.3; transform: scale(1); box-shadow: 0 0 5px rgba(255,255,255,0.5); }
    50% { opacity: 1; transform: scale(1.5); box-shadow: 0 0 15px rgba(255,255,255,1), 0 0 30px rgba(14, 165, 233, 0.5); }
}

/* ========== NAVIGATION ========== */
.cosmic-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(180deg, rgba(5, 5, 16, 0.95) 0%, transparent 100%);
    backdrop-filter: blur(10px);
}

.logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--cosmic-blue), var(--nebula-purple-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    letter-spacing: 3px;
}

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

.nav-links a {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--star-white);
    text-decoration: none;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 10px 20px;
    position: relative;
    transition: all 0.3s ease;
}

.nav-links a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--cosmic-blue), var(--nebula-purple));
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-links a:hover {
    color: var(--cosmic-blue);
    text-shadow: 0 0 20px rgba(14, 165, 233, 0.5);
}

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

/* ========== HERO SECTION ========== */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 120px 20px 80px;
    position: relative;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 7rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 30px;
    background: linear-gradient(135deg, var(--star-white) 0%, var(--cosmic-blue) 50%, var(--nebula-purple-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleGlow 3s ease-in-out infinite;
}

@keyframes titleGlow {
    0%, 100% { filter: drop-shadow(0 0 20px rgba(14, 165, 233, 0.3)); }
    50% { filter: drop-shadow(0 0 40px rgba(168, 85, 247, 0.5)); }
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    font-weight: 300;
    color: rgba(248, 250, 252, 0.8);
    margin-bottom: 50px;
    max-width: 700px;
    letter-spacing: 4px;
}

.cta-button {
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    padding: 18px 50px;
    background: linear-gradient(135deg, var(--nebula-purple) 0%, var(--cosmic-blue) 100%);
    color: var(--star-white);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(107, 33, 168, 0.5), 0 0 60px rgba(14, 165, 233, 0.3);
}

.cta-button:hover::before {
    left: 100%;
}

/* ========== SECTIONS ========== */
.section {
    padding: 100px 50px;
    position: relative;
    min-height: 100vh;
}

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

.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    text-align: center;
    margin-bottom: 60px;
    background: linear-gradient(135deg, var(--star-white), var(--cosmic-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, var(--nebula-purple), var(--cosmic-blue));
    border-radius: 2px;
}

/* ========== CARDS ========== */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.card {
    background: linear-gradient(135deg, rgba(107, 33, 168, 0.1) 0%, rgba(14, 165, 233, 0.05) 100%);
    border: 1px solid rgba(168, 85, 247, 0.2);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--nebula-purple), var(--cosmic-blue), var(--nebula-pink));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.card:hover {
    transform: translateY(-10px);
    border-color: rgba(168, 85, 247, 0.5);
    box-shadow: 0 20px 60px rgba(107, 33, 168, 0.3), 0 0 40px rgba(14, 165, 233, 0.1);
}

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

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

.card-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--cosmic-blue);
}

.card-text {
    color: rgba(248, 250, 252, 0.7);
    line-height: 1.8;
}

/* ========== ABOUT SECTION ========== */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--nebula-purple-light);
}

.about-text p {
    color: rgba(248, 250, 252, 0.8);
    margin-bottom: 20px;
    line-height: 1.9;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.stat-item {
    text-align: center;
    padding: 30px;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.1), rgba(107, 33, 168, 0.1));
    border-radius: 15px;
    border: 1px solid rgba(168, 85, 247, 0.2);
}

.stat-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--cosmic-blue);
    display: block;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(248, 250, 252, 0.6);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ========== SERVICES ========== */
.service-card {
    text-align: center;
    padding: 50px 30px;
}

.service-card .card-icon {
    width: 80px;
    height: 80px;
    line-height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--nebula-purple), var(--cosmic-blue));
    border-radius: 50%;
    font-size: 2rem;
}

/* ========== GALLERY ========== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
}

.gallery-item {
    position: relative;
    height: 300px;
    border-radius: 15px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(107, 33, 168, 0.3), rgba(14, 165, 233, 0.2));
    border: 1px solid rgba(168, 85, 247, 0.3);
    transition: all 0.4s ease;
}

.gallery-item:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 50px rgba(107, 33, 168, 0.4);
    border-color: var(--cosmic-blue);
}

.gallery-item-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(transparent, rgba(5, 5, 16, 0.95));
}

.gallery-item-title {
    font-size: 1.2rem;
    color: var(--cosmic-blue);
    margin-bottom: 5px;
}

.gallery-item-desc {
    font-size: 0.9rem;
    color: rgba(248, 250, 252, 0.6);
}

/* ========== CONTACT FORM ========== */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-form {
    background: linear-gradient(135deg, rgba(107, 33, 168, 0.1), rgba(14, 165, 233, 0.05));
    border: 1px solid rgba(168, 85, 247, 0.2);
    border-radius: 25px;
    padding: 50px;
    backdrop-filter: blur(10px);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.85rem;
    color: var(--cosmic-blue);
    margin-bottom: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    background: rgba(5, 5, 16, 0.8);
    border: 1px solid rgba(168, 85, 247, 0.3);
    border-radius: 10px;
    color: var(--star-white);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--cosmic-blue);
    box-shadow: 0 0 20px rgba(14, 165, 233, 0.2);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.submit-btn {
    width: 100%;
    padding: 18px;
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    background: linear-gradient(135deg, var(--nebula-purple), var(--cosmic-blue));
    color: var(--star-white);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    letter-spacing: 3px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(107, 33, 168, 0.4);
}

.contact-info {
    padding: 30px;
}

.contact-info h3 {
    font-size: 1.5rem;
    color: var(--nebula-purple-light);
    margin-bottom: 30px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.1), rgba(107, 33, 168, 0.05));
    border-radius: 15px;
    border: 1px solid rgba(168, 85, 247, 0.2);
}

.info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--nebula-purple), var(--cosmic-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.info-text h4 {
    font-size: 0.9rem;
    color: var(--cosmic-blue);
    margin-bottom: 5px;
}

.info-text p {
    color: rgba(248, 250, 252, 0.7);
}

/* ========== DOCS ========== */
.docs-nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: sticky;
    top: 100px;
}

.docs-link {
    padding: 15px 25px;
    background: rgba(107, 33, 168, 0.1);
    border: 1px solid rgba(168, 85, 247, 0.2);
    border-radius: 10px;
    color: var(--star-white);
    text-decoration: none;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.docs-link:hover,
.docs-link.active {
    background: linear-gradient(135deg, var(--nebula-purple), var(--cosmic-blue));
    border-color: transparent;
}

.docs-content {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 50px;
}

.docs-main {
    background: linear-gradient(135deg, rgba(107, 33, 168, 0.1), rgba(14, 165, 233, 0.05));
    border: 1px solid rgba(168, 85, 247, 0.2);
    border-radius: 20px;
    padding: 50px;
    backdrop-filter: blur(10px);
}

.docs-section {
    margin-bottom: 50px;
}

.docs-section h3 {
    font-size: 1.5rem;
    color: var(--cosmic-blue);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(168, 85, 247, 0.3);
}

.docs-section p {
    color: rgba(248, 250, 252, 0.8);
    line-height: 1.9;
    margin-bottom: 15px;
}

.docs-section ul {
    list-style: none;
    padding-left: 0;
}

.docs-section li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    color: rgba(248, 250, 252, 0.7);
}

.docs-section li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--nebula-purple-light);
}

.code-block {
    background: rgba(5, 5, 16, 0.9);
    border: 1px solid rgba(168, 85, 247, 0.3);
    border-radius: 10px;
    padding: 20px;
    margin: 20px 0;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    color: var(--cosmic-blue);
    overflow-x: auto;
}

/* ========== FOOTER ========== */
.cosmic-footer {
    padding: 60px 50px 30px;
    background: linear-gradient(180deg, transparent, rgba(5, 5, 16, 0.95));
    text-align: center;
    border-top: 1px solid rgba(168, 85, 247, 0.2);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--cosmic-blue), var(--nebula-purple-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(248, 250, 252, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

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

.footer-copyright {
    color: rgba(248, 250, 252, 0.4);
    font-size: 0.85rem;
}

/* ========== SCROLLBAR ========== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--deep-space);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(var(--nebula-purple), var(--cosmic-blue));
    border-radius: 4px;
}

/* ========== ANIMATIONS ========== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

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

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }
.delay-5 { animation-delay: 1s; }

/* ========== RESPONSIVE ========== */
@media (max-width: 992px) {
    .cosmic-nav {
        padding: 15px 30px;
    }
    
    .nav-links {
        gap: 20px;
    }
    
    .about-content,
    .contact-wrapper,
    .docs-content {
        grid-template-columns: 1fr;
    }
    
    .docs-nav {
        flex-direction: row;
        flex-wrap: wrap;
        position: static;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 60px 20px;
    }
    
    .cosmic-nav {
        flex-direction: column;
        gap: 20px;
    }
    
    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .card-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
}
