/* ============================================
   NEKO MAID SYSOPS — Anime Femboy SysAdmin Theme
   ============================================ */

/* === CSS Variables / Theme === */
:root {
    --pink: #ff6b9d;
    --pink-light: #ff9ec5;
    --pink-dark: #e0457b;
    --purple: #c084fc;
    --purple-dark: #9333ea;
    --purple-deeper: #581c87;
    --blue: #60a5fa;
    --blue-dark: #3b82f6;
    --cyan: #22d3ee;
    --neon-green: #4ade80;
    --dark: #0f0a1a;
    --dark-card: #1a1128;
    --dark-surface: #241735;
    --dark-border: #3d2a5c;
    --text: #e8e0f0;
    --text-muted: #a78bbc;
    --gold: #fbbf24;
    --white: #ffffff;

    --font-main: 'Nunito', sans-serif;
    --font-heading: 'Fredoka One', cursive;
    --font-mono: 'Press Start 2P', monospace;

    --glow-pink: 0 0 20px rgba(255, 107, 157, 0.4);
    --glow-purple: 0 0 20px rgba(192, 132, 252, 0.4);
    --glow-cyan: 0 0 20px rgba(34, 211, 238, 0.3);
}

/* === Reset & Base === */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-main);
    background: var(--dark);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
    position: relative;
}

/* Background gradient overlay */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(147, 51, 234, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(255, 107, 157, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 80%, rgba(34, 211, 238, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

/* === Particles === */
#particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    border-radius: 50%;
    animation: float-particle linear infinite;
    opacity: 0.3;
}

@keyframes float-particle {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.4;
    }
    90% {
        opacity: 0.4;
    }
    100% {
        transform: translateY(-20vh) rotate(720deg);
        opacity: 0;
    }
}

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

/* === Navigation === */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    background: rgba(15, 10, 26, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--dark-border);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 0.6rem 2rem;
    background: rgba(15, 10, 26, 0.95);
    box-shadow: 0 4px 30px rgba(147, 51, 234, 0.2);
}

.nav-brand {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--pink);
    text-shadow: var(--glow-pink);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-brand .paw {
    font-size: 1.8rem;
    animation: paw-bounce 2s ease-in-out infinite;
}

@keyframes paw-bounce {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-5px) rotate(10deg); }
}

.nav-toggle {
    display: none;
    background: none;
    border: 2px solid var(--purple);
    color: var(--purple);
    font-size: 1.5rem;
    padding: 0.3rem 0.6rem;
    border-radius: 8px;
    cursor: pointer;
}

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

.nav-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.nav-links a:hover {
    color: var(--pink);
    background: rgba(255, 107, 157, 0.1);
}

.nav-cta {
    background: linear-gradient(135deg, var(--pink), var(--purple));
    color: var(--white) !important;
    padding: 0.6rem 1.2rem !important;
    border-radius: 50px !important;
    box-shadow: var(--glow-pink);
    transition: all 0.3s ease;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(255, 107, 157, 0.6);
    background: linear-gradient(135deg, var(--pink-dark), var(--purple-dark)) !important;
}

/* === Buttons === */
.btn {
    display: inline-block;
    padding: 0.9rem 2rem;
    border-radius: 50px;
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--pink), var(--purple-dark));
    color: var(--white);
    box-shadow: var(--glow-pink);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 40px rgba(255, 107, 157, 0.5);
}

.btn-secondary {
    background: rgba(192, 132, 252, 0.15);
    color: var(--purple);
    border: 2px solid var(--purple);
}

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

.btn-outline {
    background: transparent;
    color: var(--pink);
    border: 2px solid var(--pink);
}

.btn-outline:hover {
    background: var(--pink);
    color: var(--white);
    transform: translateY(-3px);
}

.btn-full {
    width: 100%;
    text-align: center;
}

/* === Hero Section === */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 2rem 4rem;
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    gap: 3rem;
}

.hero-content {
    flex: 1;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.15), rgba(192, 132, 252, 0.15));
    border: 1px solid var(--pink);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--pink-light);
    margin-bottom: 1.5rem;
    animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 10px rgba(255, 107, 157, 0.2); }
    50% { box-shadow: 0 0 25px rgba(255, 107, 157, 0.4); }
}

.hero-title {
    font-family: var(--font-heading);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.title-line {
    display: block;
    font-size: 2.8rem;
    color: var(--text);
}

.title-accent {
    display: block;
    font-size: 3.2rem;
    background: linear-gradient(135deg, var(--pink), var(--purple), var(--cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 600px;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-stats {
    display: flex;
    gap: 2.5rem;
    margin-bottom: 2rem;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--cyan);
    text-shadow: var(--glow-cyan);
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 600;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

/* Terminal in Hero */
.hero-terminal,
.oath-terminal {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    max-width: 580px;
}

.terminal-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0.7rem 1rem;
    background: rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid var(--dark-border);
}

.terminal-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.terminal-dot.red { background: #ff5f57; }
.terminal-dot.yellow { background: #febc2e; }
.terminal-dot.green { background: #28c840; }

.terminal-title {
    font-family: monospace;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-left: 8px;
}

.terminal-body {
    padding: 1rem 1.2rem;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    color: var(--neon-green);
}

.terminal-body .prompt {
    color: var(--pink);
    font-weight: bold;
}

.terminal-body .cmd {
    color: var(--neon-green);
}

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

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

/* Hero ASCII art */
.hero-art {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.catboy-ascii pre {
    font-family: 'Courier New', monospace;
    font-size: 1.1rem;
    color: var(--pink);
    text-shadow: var(--glow-pink);
    line-height: 1.4;
    animation: float 4s ease-in-out infinite;
}

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

/* === Marquee Banner === */
.marquee-banner {
    background: linear-gradient(135deg, var(--purple-dark), var(--pink-dark));
    padding: 0.8rem 0;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.marquee-content {
    display: flex;
    gap: 3rem;
    animation: marquee 30s linear infinite;
    white-space: nowrap;
    font-weight: 700;
    font-size: 0.95rem;
}

.marquee-content span {
    flex-shrink: 0;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* === Section Common === */
.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-tag {
    display: inline-block;
    padding: 0.3rem 1rem;
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.15), rgba(192, 132, 252, 0.15));
    border: 1px solid var(--dark-border);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--pink);
    margin-bottom: 1rem;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--pink), var(--purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.05rem;
}

/* === Services === */
.services {
    padding: 6rem 0;
    position: relative;
    z-index: 1;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
    gap: 1.5rem;
}

.service-card {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

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

.service-card:hover {
    transform: translateY(-5px);
    border-color: var(--purple);
    box-shadow: 0 10px 40px rgba(147, 51, 234, 0.15);
}

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

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 0.7rem;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.service-tag {
    display: inline-block;
    padding: 0.2rem 0.8rem;
    background: rgba(255, 107, 157, 0.1);
    border: 1px solid rgba(255, 107, 157, 0.3);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--pink-light);
    margin-bottom: 0.8rem;
}

.service-card code {
    display: block;
    background: rgba(0, 0, 0, 0.3);
    padding: 0.5rem 0.8rem;
    border-radius: 8px;
    font-size: 0.7rem;
    color: var(--neon-green);
    font-family: 'Courier New', monospace;
    overflow-x: auto;
}

/* === Robot Section === */
.robot-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, rgba(26, 17, 40, 0.5), transparent);
    position: relative;
    z-index: 1;
}

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

.robot-text h2 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--cyan);
    text-shadow: var(--glow-cyan);
    margin-bottom: 1rem;
}

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

.robot-features {
    list-style: none;
}

.robot-features li {
    padding: 0.5rem 0;
    font-size: 1rem;
    color: var(--text);
    border-bottom: 1px solid rgba(61, 42, 92, 0.5);
}

.ascii-robot {
    font-family: 'Courier New', monospace;
    color: var(--cyan);
    text-shadow: var(--glow-cyan);
    font-size: 1rem;
    text-align: center;
    animation: robot-hover 3s ease-in-out infinite;
}

@keyframes robot-hover {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-8px) rotate(1deg); }
    75% { transform: translateY(-3px) rotate(-1deg); }
}

/* === Team Section === */
.team {
    padding: 6rem 0;
    position: relative;
    z-index: 1;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
}

.team-card {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.team-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--pink), var(--purple));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(255, 107, 157, 0.15);
    border-color: var(--pink);
}

.team-card:hover::after {
    transform: scaleX(1);
}

.team-avatar {
    margin-bottom: 1rem;
}

.avatar-art {
    font-family: 'Courier New', monospace;
    font-size: 1.2rem;
    color: var(--pink);
    text-shadow: var(--glow-pink);
    display: inline-block;
    line-height: 1.3;
}

.team-card h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 0.3rem;
}

.team-role {
    color: var(--purple);
    font-weight: 700;
    font-size: 0.85rem;
    display: block;
    margin-bottom: 0.8rem;
}

.team-card > p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.team-skills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.skill-tag {
    padding: 0.2rem 0.7rem;
    background: rgba(192, 132, 252, 0.1);
    border: 1px solid rgba(192, 132, 252, 0.3);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--purple);
}

.team-quote {
    font-style: italic;
    color: var(--pink-light);
    font-size: 0.9rem;
    padding-top: 0.8rem;
    border-top: 1px solid var(--dark-border);
}

/* === Anime Divider === */
.anime-divider {
    text-align: center;
    padding: 2rem;
    position: relative;
    z-index: 1;
}

.divider-content {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--gold);
    text-shadow: 0 0 20px rgba(251, 191, 36, 0.4);
    animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; text-shadow: 0 0 30px rgba(251, 191, 36, 0.7); }
}

/* === Testimonials === */
.testimonials {
    padding: 6rem 0;
    position: relative;
    z-index: 1;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.testimonial-card {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(147, 51, 234, 0.15);
    border-color: var(--purple);
}

.testimonial-card.bad-review {
    border-color: rgba(255, 95, 87, 0.3);
    background: linear-gradient(135deg, rgba(255, 95, 87, 0.05), var(--dark-card));
}

.testimonial-card.bad-review:hover {
    border-color: #ff5f57;
    box-shadow: 0 8px 30px rgba(255, 95, 87, 0.15);
}

.testimonial-card.bad-review .testimonial-stars {
    color: #ff5f57;
    text-shadow: 0 0 10px rgba(255, 95, 87, 0.3);
}

.testimonial-stars {
    color: var(--gold);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(251, 191, 36, 0.3);
}

.testimonial-card > p {
    color: var(--text);
    font-size: 0.95rem;
    margin-bottom: 1.2rem;
    font-style: italic;
}

.testimonial-author strong {
    display: block;
    color: var(--pink-light);
    font-size: 0.95rem;
}

.testimonial-author span {
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* === Pricing === */
.pricing {
    padding: 6rem 0;
    position: relative;
    z-index: 1;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    align-items: start;
}

.pricing-card {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.pricing-card.featured {
    border-color: var(--pink);
    box-shadow: 0 0 40px rgba(255, 107, 157, 0.15);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--pink), var(--purple-dark));
    color: var(--white);
    padding: 0.3rem 1.5rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    white-space: nowrap;
}

.pricing-tier {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.pricing-emoji {
    font-size: 3rem;
    margin: 0.5rem 0;
}

.pricing-price {
    margin-bottom: 1.5rem;
}

.price-amount {
    font-family: var(--font-heading);
    font-size: 3rem;
    background: linear-gradient(135deg, var(--pink), var(--purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-period {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin-bottom: 2rem;
}

.pricing-features li {
    padding: 0.5rem 0;
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(61, 42, 92, 0.3);
    color: var(--text);
}

.pricing-card.oncall {
    border-color: var(--cyan);
    box-shadow: 0 0 30px rgba(34, 211, 238, 0.15);
}

.pricing-card.oncall:hover {
    box-shadow: 0 0 50px rgba(34, 211, 238, 0.25);
}

.pricing-note {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 1.5rem;
    padding: 0.5rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
}

/* === Fun Section / Oath === */
.fun-section {
    padding: 5rem 0;
    position: relative;
    z-index: 1;
}

.fun-section h2 {
    font-family: var(--font-heading);
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: var(--pink);
    text-shadow: var(--glow-pink);
}

.oath-terminal {
    max-width: 650px;
    margin: 0 auto;
}

.oath-body p {
    font-family: 'Courier New', monospace;
    font-size: 0.85rem;
    color: var(--neon-green);
    line-height: 1.8;
}

/* === Contact === */
.contact {
    padding: 6rem 0;
    position: relative;
    z-index: 1;
}

.contact-form-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.contact-form {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 16px;
    padding: 2.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 700;
    color: var(--purple);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    background: var(--dark);
    border: 1px solid var(--dark-border);
    border-radius: 10px;
    color: var(--text);
    font-family: var(--font-main);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--pink);
    box-shadow: 0 0 15px rgba(255, 107, 157, 0.2);
}

.form-group select {
    cursor: pointer;
}

.form-group textarea {
    resize: vertical;
}

/* === Submission Log === */
.submission-log {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--dark-border);
}

.submission-log h4 {
    font-family: var(--font-heading);
    color: var(--purple);
    margin-bottom: 1rem;
}

.submission-entry {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--dark-border);
    border-radius: 10px;
    padding: 1rem;
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
}

.submission-header {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.5rem;
}

.submission-num {
    font-family: var(--font-heading);
    color: var(--pink);
    font-size: 0.85rem;
}

.submission-date {
    color: var(--text-muted);
    font-size: 0.8rem;
}

.submission-delete {
    margin-left: auto;
    background: none;
    border: 1px solid rgba(255, 95, 87, 0.4);
    color: #ff5f57;
    font-size: 1.1rem;
    cursor: pointer;
    border-radius: 6px;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.submission-delete:hover {
    background: rgba(255, 95, 87, 0.2);
}

.submission-entry p {
    color: var(--text-muted);
    margin-bottom: 0.3rem;
}

.submission-msg {
    font-style: italic;
    color: var(--text) !important;
    margin-top: 0.3rem;
}

.submission-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.btn-sm {
    padding: 0.5rem 1.2rem;
    font-size: 0.85rem;
}

/* === Footer === */
.footer {
    background: var(--dark-card);
    border-top: 1px solid var(--dark-border);
    padding: 4rem 0 2rem;
    position: relative;
    z-index: 1;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-brand h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--pink);
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.footer-ascii pre {
    font-family: 'Courier New', monospace;
    font-size: 0.8rem;
    color: var(--pink);
    text-shadow: var(--glow-pink);
    line-height: 1.3;
}

.footer-links h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--purple);
    margin-bottom: 1rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--dark-border);
}

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

.footer-bottom code {
    color: var(--neon-green);
    background: rgba(0, 0, 0, 0.3);
    padding: 0.1rem 0.4rem;
    border-radius: 4px;
    font-size: 0.8rem;
}

.footer-tagline {
    margin-top: 0.5rem;
    font-style: italic;
    color: var(--purple) !important;
}

/* === Responsive === */
@media (max-width: 1024px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 6rem;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-terminal {
        margin: 0 auto;
    }

    .hero-subtitle {
        margin: 0 auto 2rem;
    }

    .robot-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

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

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(15, 10, 26, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 1rem;
        border-bottom: 1px solid var(--dark-border);
    }

    .nav-links.active {
        display: flex;
    }

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

    .title-accent {
        font-size: 2.2rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 2rem;
    }

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

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

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

    .pricing-card.featured {
        transform: scale(1);
    }

    .pricing-card.featured:hover {
        transform: translateY(-5px);
    }

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

/* === Animations for scroll-reveal === */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

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

/* === Selection color === */
::selection {
    background: var(--pink);
    color: var(--white);
}

/* === Scrollbar === */
::-webkit-scrollbar {
    width: 10px;
}

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

::-webkit-scrollbar-thumb {
    background: linear-gradient(var(--pink), var(--purple));
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(var(--pink-dark), var(--purple-dark));
}
