/* ============================================
   GALAXIMUS WEBSITE - VECTOR ART AESTHETIC
   ============================================ */

/* Color Palette from Game */
:root {
    /* Primary Vector Glow Colors */
    --neon-green: #39FF14;
    --aqua-cyan: #00F6FF;
    --electric-blue: #2E82FF;
    --vivid-magenta: #FF2DFF;
    --retro-red: #FF3131;
    --solar-amber: #FFB100;

    /* Secondary Accent Colors */
    --soft-purple: #A56BFF;
    --teal-green: #00D98D;
    --ice-blue: #7DFFFF;
    --rose-pink: #FF5FA2;

    /* Background & Neutral */
    --pure-black: #000000;
    --deep-space: #050A1E;
    --charcoal: #121212;
    --dark-gray: #333333;

    /* Typography */
    --font-mono: 'Courier New', Courier, Monaco, Menlo, monospace;
}

/* ============================================
   BASE STYLES
   ============================================ */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-mono);
    background-color: var(--pure-black);
    color: var(--neon-green);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ============================================
   STARFIELD BACKGROUND
   ============================================ */

#starfield {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: radial-gradient(ellipse at center, var(--deep-space) 0%, var(--pure-black) 100%);
}

/* ============================================
   NAVIGATION
   ============================================ */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(5, 10, 30, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--neon-green);
    box-shadow: 0 0 20px rgba(57, 255, 20, 0.3);
    z-index: 1000;
    padding: 1rem 0;
}

.nav-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--neon-green);
    text-shadow: 0 0 10px var(--neon-green);
    letter-spacing: 0.2em;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--aqua-cyan);
    text-decoration: none;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
}

.nav-links a:hover {
    color: var(--neon-green);
    text-shadow: 0 0 10px var(--neon-green);
}

.nav-cta {
    border: 1px solid var(--electric-blue);
    border-radius: 4px;
    color: var(--electric-blue) !important;
    box-shadow: 0 0 10px rgba(46, 130, 255, 0.3);
}

.nav-cta:hover {
    background: rgba(46, 130, 255, 0.1);
    box-shadow: 0 0 20px rgba(46, 130, 255, 0.5);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 6rem 2rem 4rem;
}

.hero-content {
    text-align: center;
    z-index: 10;
}

.hero-logo {
    width: 100%;
    max-width: 600px;
    height: auto;
    margin: 0 auto 2rem;
    filter: drop-shadow(0 0 20px rgba(57, 255, 20, 0.6));
    display: block;
}

.title-text {
    font-family: var(--font-mono);
    font-size: 60px;
    font-weight: bold;
    fill: none;
    stroke: var(--neon-green);
    stroke-width: 2;
    letter-spacing: 0.15em;
    filter: drop-shadow(0 0 10px var(--neon-green));
}

.vector-circle {
    fill: none;
    stroke: var(--electric-blue);
    stroke-width: 2;
    filter: drop-shadow(0 0 8px var(--electric-blue));
}

.vector-line {
    stroke: var(--aqua-cyan);
    stroke-width: 1;
    filter: drop-shadow(0 0 6px var(--aqua-cyan));
}

.hero-subtitle {
    font-size: 1rem;
    color: var(--aqua-cyan);
    letter-spacing: 0.2em;
    margin-bottom: 3rem;
    text-shadow: 0 0 8px var(--aqua-cyan);
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Animated ship in hero */
.hero-ship {
    position: absolute;
    width: 80px;
    height: 80px;
    animation: float 6s ease-in-out infinite;
    bottom: 10%;
    right: 10%;
}

.ship-hull {
    fill: none;
    stroke: var(--neon-green);
    stroke-width: 2;
    filter: drop-shadow(0 0 8px var(--neon-green));
}

.ship-thrust {
    stroke: var(--electric-blue);
    stroke-width: 3;
    filter: drop-shadow(0 0 10px var(--electric-blue));
    animation: thrust 0.3s ease-in-out infinite alternate;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(20px, -20px) rotate(5deg);
    }
    50% {
        transform: translate(0, -40px) rotate(0deg);
    }
    75% {
        transform: translate(-20px, -20px) rotate(-5deg);
    }
}

@keyframes thrust {
    from {
        stroke-opacity: 0.5;
        stroke-width: 2;
    }
    to {
        stroke-opacity: 1;
        stroke-width: 4;
    }
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    font-family: var(--font-mono);
    font-size: 1rem;
    text-decoration: none;
    letter-spacing: 0.1em;
    border: 2px solid;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    color: var(--neon-green);
    border-color: var(--neon-green);
    background: rgba(57, 255, 20, 0.05);
    box-shadow: 0 0 20px rgba(57, 255, 20, 0.3);
}

.btn-primary:hover {
    background: rgba(57, 255, 20, 0.15);
    box-shadow: 0 0 30px rgba(57, 255, 20, 0.5);
    text-shadow: 0 0 10px var(--neon-green);
}

.btn-secondary {
    color: var(--aqua-cyan);
    border-color: var(--aqua-cyan);
    background: rgba(0, 246, 255, 0.05);
    box-shadow: 0 0 20px rgba(0, 246, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(0, 246, 255, 0.15);
    box-shadow: 0 0 30px rgba(0, 246, 255, 0.5);
    text-shadow: 0 0 10px var(--aqua-cyan);
}

/* ============================================
   SECTIONS
   ============================================ */

.section {
    padding: 6rem 2rem;
    position: relative;
}

.section-dark {
    background: linear-gradient(180deg, transparent 0%, rgba(5, 10, 30, 0.5) 50%, transparent 100%);
}

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

.container.center {
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    color: var(--neon-green);
    letter-spacing: 0.2em;
    text-align: center;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 15px var(--neon-green);
}

.section-line {
    width: 200px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--electric-blue), transparent);
    margin: 0 auto 3rem;
    box-shadow: 0 0 10px var(--electric-blue);
}

/* ============================================
   ABOUT SECTION
   ============================================ */

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

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

.highlight {
    color: var(--neon-green);
    text-shadow: 0 0 8px var(--neon-green);
}

.highlight-cyan {
    color: var(--aqua-cyan);
    text-shadow: 0 0 8px var(--aqua-cyan);
}

.highlight-blue {
    color: var(--electric-blue);
    text-shadow: 0 0 8px var(--electric-blue);
}

.feature-list {
    list-style: none;
    margin-top: 2rem;
}

.feature-list li {
    color: var(--aqua-cyan);
    padding: 0.5rem 0;
    padding-left: 2rem;
    position: relative;
}

.feature-list li::before {
    content: "▸";
    position: absolute;
    left: 0;
    color: var(--neon-green);
    text-shadow: 0 0 8px var(--neon-green);
}

/* ============================================
   SCREENSHOT PLACEHOLDERS
   ============================================ */

.screenshot-placeholder {
    background: rgba(18, 18, 18, 0.5);
    border: 2px solid var(--electric-blue);
    border-radius: 8px;
    padding: 4rem 2rem;
    text-align: center;
    box-shadow: 0 0 20px rgba(46, 130, 255, 0.3);
}

.screenshot-placeholder p {
    color: var(--electric-blue);
    font-size: 1.5rem;
    letter-spacing: 0.2em;
}

.screenshot-placeholder .small {
    font-size: 0.9rem;
    color: var(--dark-gray);
    margin-top: 1rem;
}

/* ============================================
   GAMEPLAY SECTION
   ============================================ */

.video-container {
    margin-bottom: 4rem;
}

.video-placeholder {
    background: rgba(18, 18, 18, 0.5);
    border: 2px solid var(--vivid-magenta);
    border-radius: 8px;
    padding: 6rem 2rem;
    text-align: center;
    box-shadow: 0 0 20px rgba(255, 45, 255, 0.3);
}

.video-placeholder p {
    color: var(--vivid-magenta);
    font-size: 1.5rem;
    letter-spacing: 0.2em;
    margin-top: 2rem;
}

.play-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto;
}

.play-circle {
    fill: none;
    stroke: var(--vivid-magenta);
    stroke-width: 3;
    filter: drop-shadow(0 0 10px var(--vivid-magenta));
}

.play-triangle {
    fill: var(--vivid-magenta);
    filter: drop-shadow(0 0 10px var(--vivid-magenta));
}

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

.screenshot-placeholder.small {
    padding: 3rem 1rem;
}

.screenshot-placeholder.small p {
    font-size: 1rem;
}

/* ============================================
   HOW TO PLAY / DOCS SECTION
   ============================================ */

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

.doc-card {
    background: rgba(18, 18, 18, 0.5);
    border: 2px solid var(--aqua-cyan);
    border-radius: 8px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.doc-card:hover {
    border-color: var(--neon-green);
    box-shadow: 0 0 30px rgba(57, 255, 20, 0.3);
    transform: translateY(-5px);
}

.doc-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
}

.icon-ship {
    fill: none;
    stroke: var(--neon-green);
    stroke-width: 2;
    filter: drop-shadow(0 0 8px var(--neon-green));
}

.icon-planet {
    fill: none;
    stroke: var(--electric-blue);
    stroke-width: 2;
    filter: drop-shadow(0 0 8px var(--electric-blue));
}

.icon-orbit {
    fill: none;
    stroke: var(--electric-blue);
    stroke-width: 1;
    stroke-dasharray: 5, 5;
    filter: drop-shadow(0 0 6px var(--electric-blue));
}

.icon-station {
    fill: none;
    stroke: var(--aqua-cyan);
    stroke-width: 2;
    filter: drop-shadow(0 0 8px var(--aqua-cyan));
}

.icon-sun {
    stroke: var(--solar-amber);
    stroke-width: 2;
    fill: none;
    filter: drop-shadow(0 0 10px var(--solar-amber));
}

.doc-card h3 {
    color: var(--neon-green);
    font-size: 1.3rem;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    text-shadow: 0 0 8px var(--neon-green);
}

.doc-card p {
    color: var(--aqua-cyan);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.doc-card ul {
    list-style: none;
    color: var(--aqua-cyan);
}

.doc-card ul li {
    padding: 0.3rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.doc-card ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--electric-blue);
}

/* ============================================
   ROADMAP SECTION
   ============================================ */

.roadmap {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.roadmap::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--neon-green), var(--aqua-cyan), var(--electric-blue));
    box-shadow: 0 0 10px var(--aqua-cyan);
}

.roadmap-item {
    position: relative;
    padding-left: 80px;
    margin-bottom: 3rem;
}

.roadmap-marker {
    position: absolute;
    left: 20px;
    top: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 3px solid var(--dark-gray);
    background: var(--pure-black);
}

.roadmap-item.completed .roadmap-marker {
    border-color: var(--neon-green);
    background: var(--neon-green);
    box-shadow: 0 0 15px var(--neon-green);
}

.roadmap-item.in-progress .roadmap-marker {
    border-color: var(--aqua-cyan);
    background: var(--aqua-cyan);
    box-shadow: 0 0 15px var(--aqua-cyan);
    animation: pulse 2s ease-in-out infinite;
}

.roadmap-item.upcoming .roadmap-marker {
    border-color: var(--electric-blue);
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 15px var(--aqua-cyan);
    }
    50% {
        box-shadow: 0 0 25px var(--aqua-cyan);
    }
}

.roadmap-content {
    background: rgba(18, 18, 18, 0.5);
    border: 2px solid var(--dark-gray);
    border-radius: 8px;
    padding: 1.5rem;
}

.roadmap-item.completed .roadmap-content {
    border-color: var(--neon-green);
}

.roadmap-item.in-progress .roadmap-content {
    border-color: var(--aqua-cyan);
    box-shadow: 0 0 20px rgba(0, 246, 255, 0.2);
}

.roadmap-item.upcoming .roadmap-content {
    border-color: var(--electric-blue);
}

.roadmap-content h3 {
    color: var(--neon-green);
    font-size: 1.2rem;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.roadmap-status {
    color: var(--aqua-cyan);
    font-size: 0.9rem;
    letter-spacing: 0.15em;
    margin-bottom: 1rem;
    text-shadow: 0 0 8px var(--aqua-cyan);
}

.roadmap-content ul {
    list-style: none;
    color: var(--aqua-cyan);
}

.roadmap-content ul li {
    padding: 0.3rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.roadmap-content ul li::before {
    content: "▸";
    position: absolute;
    left: 0;
    color: var(--electric-blue);
}

/* ============================================
   COMMUNITY SECTION
   ============================================ */

.community-text {
    font-size: 1.1rem;
    color: var(--aqua-cyan);
    margin-bottom: 3rem;
}

.community-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 700px;
    margin: 0 auto;
}

.community-card {
    background: rgba(18, 18, 18, 0.5);
    border: 2px solid var(--vivid-magenta);
    border-radius: 8px;
    padding: 2rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
}

.community-card:hover {
    border-color: var(--neon-green);
    box-shadow: 0 0 30px rgba(57, 255, 20, 0.3);
    transform: translateY(-5px);
}

.community-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
}

.discord-icon {
    fill: none;
    stroke: var(--vivid-magenta);
    stroke-width: 2;
    filter: drop-shadow(0 0 10px var(--vivid-magenta));
}

.social-icon {
    fill: none;
    stroke: var(--aqua-cyan);
    stroke-width: 2;
    filter: drop-shadow(0 0 10px var(--aqua-cyan));
}

.community-card h3 {
    color: var(--neon-green);
    font-size: 1.3rem;
    letter-spacing: 0.15em;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 8px var(--neon-green);
}

.community-card p {
    color: var(--aqua-cyan);
    font-size: 0.9rem;
}

/* ============================================
   DOWNLOAD SECTION
   ============================================ */

.download-text {
    font-size: 1.1rem;
    color: var(--aqua-cyan);
    margin-bottom: 2rem;
}

.app-store-button {
    display: inline-block;
    text-decoration: none;
    margin-bottom: 1.5rem;
}

.app-store-placeholder {
    background: rgba(18, 18, 18, 0.8);
    border: 2px solid var(--neon-green);
    border-radius: 8px;
    padding: 1.5rem 3rem;
    box-shadow: 0 0 20px rgba(57, 255, 20, 0.3);
    transition: all 0.3s ease;
}

.app-store-placeholder:hover {
    box-shadow: 0 0 30px rgba(57, 255, 20, 0.5);
    transform: scale(1.05);
}

.app-store-placeholder p {
    color: var(--aqua-cyan);
    font-size: 0.9rem;
    letter-spacing: 0.1em;
}

.app-store-placeholder h3 {
    color: var(--neon-green);
    font-size: 1.8rem;
    letter-spacing: 0.15em;
    text-shadow: 0 0 10px var(--neon-green);
}

.download-info {
    color: var(--dark-gray);
    font-size: 0.9rem;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background: rgba(5, 10, 30, 0.9);
    border-top: 1px solid var(--neon-green);
    box-shadow: 0 0 20px rgba(57, 255, 20, 0.2);
    padding: 2rem;
    text-align: center;
}

.footer p {
    color: var(--aqua-cyan);
    margin: 0.5rem 0;
}

.footer-links a {
    color: var(--aqua-cyan);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--neon-green);
    text-shadow: 0 0 8px var(--neon-green);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

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

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

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

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

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

    .community-cards {
        grid-template-columns: 1fr;
    }

    .roadmap::before {
        left: 15px;
    }

    .roadmap-item {
        padding-left: 50px;
    }

    .roadmap-marker {
        left: 5px;
    }
}

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

    .title-text {
        font-size: 36px;
    }
}
