:root {
    --bg-dark: #0a0e17;
    --bg-panel: rgba(20, 25, 40, 0.75);
    --primary-cyan: #00f3ff;
    --primary-violet: #bc13fe;
    --primary-pink: #ff0055;
    --text-white: #ffffff;
    --text-muted: #a0a0a0;
    --glass-border: rgba(255, 255, 255, 0.1);
    --transition-speed: 0.3s;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-white);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    position: relative;
}

/* --- ANIMATED BACKGROUND --- */
.background-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: radial-gradient(ellipse at bottom, #1B2735 0%, #090A0F 100%);
    overflow: hidden;
}

/* Cyber Grid */
.background-container::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background-image:
        linear-gradient(rgba(0, 243, 255, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 243, 255, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    transform: perspective(500px) rotateX(60deg);
    animation: gridMove 20s linear infinite;
    opacity: 0.3;
}

@keyframes gridMove {
    0% {
        transform: perspective(500px) rotateX(60deg) translateY(0);
    }

    100% {
        transform: perspective(500px) rotateX(60deg) translateY(50px);
    }
}

/* Floating Gamer Shapes */
.gamer-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.shape {
    position: absolute;
    color: rgba(255, 255, 255, 0.05);
    font-size: 2rem;
    animation: floatUp 15s linear infinite;
    bottom: -100px;
}

.shape i {
    filter: drop-shadow(0 0 10px rgba(0, 243, 255, 0.5));
}

.shape-1 {
    left: 10%;
    animation-duration: 12s;
    font-size: 3rem;
    color: rgba(0, 243, 255, 0.1);
}

.shape-2 {
    left: 25%;
    animation-duration: 18s;
    animation-delay: 2s;
    font-size: 2rem;
    color: rgba(188, 19, 254, 0.1);
}

.shape-3 {
    left: 40%;
    animation-duration: 10s;
    animation-delay: 5s;
    font-size: 4rem;
    color: rgba(255, 0, 85, 0.1);
}

.shape-4 {
    left: 60%;
    animation-duration: 20s;
    animation-delay: 1s;
    font-size: 2.5rem;
    color: rgba(0, 243, 255, 0.1);
}

.shape-5 {
    left: 75%;
    animation-duration: 14s;
    animation-delay: 3s;
    font-size: 3rem;
    color: rgba(188, 19, 254, 0.1);
}

.shape-6 {
    left: 90%;
    animation-duration: 16s;
    animation-delay: 7s;
    font-size: 2.5rem;
    color: rgba(255, 0, 85, 0.1);
}

@keyframes floatUp {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translateY(-110vh) rotate(360deg);
        opacity: 0;
    }
}

/* Main Container */
.main-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

/* Hero Section */
.hero-section {
    text-align: center;
    margin-bottom: 2rem;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -1px;
    background: linear-gradient(135deg, #fff 0%, #00f3ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(0, 243, 255, 0.3);
    margin-bottom: 0.5rem;
}

.hero-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: fadeIn 2s ease-out;
}

/* Glass Panel */
.glass-panel {
    background: var(--bg-panel);
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

/* Order Card */
.order-card {
    width: 100%;
    padding: 2.5rem;
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
}

/* Neon Border Animation */
.order-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-cyan), transparent);
    animation: scanline 4s linear infinite;
}

@keyframes scanline {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

.card-header h2 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--text-white);
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Form Inputs */
.input-group {
    position: relative;
    margin-bottom: 2rem;
}

.glass-input {
    width: 100%;
    background: rgba(0, 0, 0, 0.2);
    border: none;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px 8px 0 0;
    padding: 12px 15px;
    color: var(--text-white);
    font-size: 1rem;
    outline: none;
    transition: var(--transition-speed);
}

.glass-input:focus {
    background: rgba(0, 243, 255, 0.05);
    border-bottom-color: var(--primary-cyan);
    box-shadow: 0 10px 20px -10px rgba(0, 243, 255, 0.2);
}

.floating-label {
    position: absolute;
    top: 12px;
    left: 15px;
    color: var(--text-muted);
    pointer-events: none;
    transition: 0.2s ease all;
}

.glass-input:focus~.floating-label,
.glass-input:not(:placeholder-shown)~.floating-label {
    top: -22px;
    left: 0;
    font-size: 0.85rem;
    color: var(--primary-cyan);
    font-weight: 600;
}

.input-border {
    /* Animated via CSS focus state on input */
}

/* Trust Signals */
.trust-signals {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.trust-badge {
    font-size: 0.85rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 5px 10px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.trust-badge i {
    color: var(--primary-cyan);
}

/* Action Area */
.cta-button {
    width: 100%;
    padding: 1.2rem;
    border: none;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary-violet), var(--primary-pink));
    color: var(--text-white);
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
    box-shadow: 0 0 20px rgba(188, 19, 254, 0.4);
    z-index: 1;
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 0 40px rgba(255, 0, 85, 0.6);
}

/* Glitch Effect on Hover is hard to do purely with clean CSS without JS or complex keyframes, 
   so we'll stick to a high-energy pulse */
.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: translateX(-100%);
    transition: 0.5s;
    z-index: -1;
}

.cta-button:hover::before {
    transform: translateX(100%);
}

/* Process Track */
.process-track {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 450px;
    margin-top: 2rem;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    opacity: 0.4;
    transition: opacity 0.3s;
    position: relative;
}

.step.active {
    opacity: 1;
}

.step-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(10, 14, 23, 0.8);
    border: 1px solid var(--glass-border);
    font-size: 1.2rem;
    position: relative;
    z-index: 2;
}

.step.active .step-icon {
    border-color: var(--primary-cyan);
    color: var(--primary-cyan);
    box-shadow: 0 0 20px rgba(0, 243, 255, 0.3);
}

.step-label {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.track-line {
    flex: 1;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    margin: 0 10px;
    margin-bottom: 28px;
    /* Align with icon center */
    position: relative;
}

.track-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: var(--primary-cyan);
    box-shadow: 0 0 10px var(--primary-cyan);
    animation: lineFill 2s ease-out forwards;
}

@keyframes lineFill {
    from {
        width: 0%;
    }

    to {
        width: 100%;
    }
}

/* Footer */
.minimal-footer {
    width: 100%;
    padding: 2rem;
    text-align: center;
    margin-top: auto;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1rem;
}

.footer-item {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-item:hover {
    color: var(--primary-cyan);
}

.copyright {
    color: rgba(255, 255, 255, 0.2);
    font-size: 0.8rem;
}

/* Mobile Responsiveness */
@media (max-width: 480px) {
    .main-container {
        padding: 1rem;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .order-card {
        padding: 1.5rem;
    }

    .step-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .track-line {
        display: none;
    }

    .shape {
        opacity: 0.3;
        /* Dim shapes on mobile to save distraction */
    }
}