:root {
    --bg-color: #0a0e17;
    --bg-gradient-start: #0f172a;
    --bg-gradient-end: #020617;
    --text-primary: #e2e8f0;
    --text-secondary: #94a3b8;
    --accent-primary: #3b82f6;
    /* Electric Blue */
    --accent-secondary: #f97316;
    /* Orange */
    --font-main: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-color);
    background: radial-gradient(circle at center, var(--bg-gradient-start), var(--bg-gradient-end));
    color: var(--text-primary);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
    position: relative;
}

/* Background Animation */
.background-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(59, 130, 246, 0.2);
    border-radius: 50%;
    animation: float 15s infinite linear;
}

.particle:nth-child(1) {
    top: 10%;
    left: 20%;
    animation-duration: 20s;
}

.particle:nth-child(2) {
    top: 30%;
    left: 80%;
    animation-duration: 25s;
    animation-delay: -5s;
}

.particle:nth-child(3) {
    top: 70%;
    left: 10%;
    animation-duration: 18s;
    animation-delay: -10s;
}

.particle:nth-child(4) {
    top: 80%;
    left: 70%;
    animation-duration: 22s;
    animation-delay: -2s;
}

.particle:nth-child(5) {
    top: 50%;
    left: 50%;
    width: 6px;
    height: 6px;
    background: rgba(249, 115, 22, 0.15);
    animation-duration: 30s;
}

.particle:nth-child(6) {
    top: 20%;
    left: 60%;
    width: 3px;
    height: 3px;
    animation-duration: 15s;
}

@keyframes float {
    0% {
        transform: translate(0, 0);
        opacity: 0.3;
    }

    50% {
        transform: translate(20px, -20px);
        opacity: 0.6;
    }

    100% {
        transform: translate(0, 0);
        opacity: 0.3;
    }
}

.container {
    text-align: center;
    padding: 2rem;
    max-width: 600px;
    width: 100%;
    z-index: 1;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    justify-content: space-between;
}

/* Header & Logo */
.header {
    padding-top: 2rem;
    margin-bottom: 2rem;
}

.logo {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -0.05em;
    color: var(--text-primary);
    cursor: default;
    transition: transform 0.3s ease;
    display: inline-block;
}

.logo:hover {
    transform: scale(1.05);
}

.logo-dot {
    color: var(--accent-secondary);
}

/* Main Content */
.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

/* Mascot */
.mascot-container {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto;
}

.jerry-mascot {
    width: 100%;
    height: 100%;
    position: relative;
    animation: bounce 3s ease-in-out infinite;
}

.head {
    width: 80px;
    height: 70px;
    background: var(--accent-primary);
    border-radius: 40px 40px 30px 30px;
    position: absolute;
    top: 10px;
    left: 20px;
    z-index: 2;
    box-shadow: inset -5px -5px 10px rgba(0, 0, 0, 0.2);
}

.ear {
    width: 25px;
    height: 35px;
    background: var(--accent-primary);
    position: absolute;
    top: -15px;
    border-radius: 15px;
    z-index: 1;
}

.ear.left {
    left: 5px;
    transform: rotate(-15deg);
}

.ear.right {
    right: 5px;
    transform: rotate(15deg);
}

.face {
    position: relative;
    width: 100%;
    height: 100%;
}

.eye {
    width: 12px;
    height: 12px;
    background: white;
    border-radius: 50%;
    position: absolute;
    top: 25px;
    animation: blink 4s infinite;
}

.eye.left {
    left: 20px;
}

.eye.right {
    right: 20px;
}

.muzzle {
    width: 30px;
    height: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    position: absolute;
    bottom: 10px;
    left: 25px;
}

.body {
    width: 60px;
    height: 50px;
    background: var(--accent-primary);
    /* Same as head for unified look */
    border-radius: 20px;
    position: absolute;
    bottom: 0;
    left: 30px;
    z-index: 1;
    opacity: 0.9;
}

.arm {
    width: 15px;
    height: 25px;
    background: var(--accent-primary);
    position: absolute;
    top: 10px;
    border-radius: 10px;
}

.arm.left {
    left: -5px;
    transform: rotate(20deg);
}

.arm.right {
    right: -5px;
    transform: rotate(-20deg);
    animation: work 1s ease-in-out infinite alternate;
}

.wrench {
    width: 30px;
    height: 8px;
    background: #94a3b8;
    position: absolute;
    bottom: -5px;
    right: -10px;
    border-radius: 2px;
    transform: rotate(45deg);
}

.wrench::before {
    content: '';
    position: absolute;
    top: -4px;
    right: -4px;
    width: 12px;
    height: 12px;
    border: 3px solid #94a3b8;
    border-radius: 50%;
    border-top-color: transparent;
}

.shadow {
    width: 80px;
    height: 10px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    position: absolute;
    bottom: -10px;
    left: 20px;
    animation: shadow-scale 3s ease-in-out infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

@keyframes shadow-scale {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.3;
    }

    50% {
        transform: scale(0.8);
        opacity: 0.1;
    }
}

@keyframes blink {

    0%,
    96%,
    100% {
        transform: scaleY(1);
    }

    98% {
        transform: scaleY(0.1);
    }
}

@keyframes work {
    0% {
        transform: rotate(-20deg);
    }

    100% {
        transform: rotate(-40deg);
    }
}

/* Text Content */
.text-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(to right, #fff, #94a3b8);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.description {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.progress-indicator {
    width: 100%;
    max-width: 300px;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    margin: 0 auto 1rem;
    overflow: hidden;
}

.bar {
    width: 30%;
    height: 100%;
    background: var(--accent-secondary);
    border-radius: 2px;
    animation: loading 2s infinite ease-in-out;
    transform-origin: left;
}

@keyframes loading {
    0% {
        transform: translateX(-100%);
    }

    50% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(300%);
    }
}

.eta {
    font-size: 0.9rem;
    color: var(--accent-primary);
    font-weight: 600;
}

/* Contact Area */
.contact-area {
    margin-top: 2rem;
    width: 100%;
}

.contact-area p {
    margin-bottom: 1rem;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.notify-form {
    display: flex;
    gap: 0.5rem;
    max-width: 400px;
    margin: 0 auto;
}

input[type="email"] {
    flex: 1;
    padding: 0.8rem 1rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: white;
    font-family: var(--font-main);
    outline: none;
    transition: all 0.3s ease;
}

input[type="email"]:focus {
    border-color: var(--accent-primary);
    background: rgba(255, 255, 255, 0.1);
}

button {
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    border: none;
    background: var(--accent-primary);
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-main);
}

button:hover {
    background: #2563eb;
    transform: translateY(-1px);
}

.success-message {
    margin-top: 1rem;
    color: #4ade80;
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 1;
    transition: opacity 0.5s ease;
}

.hidden {
    opacity: 0;
    pointer-events: none;
}

/* Footer */
.footer {
    padding-bottom: 2rem;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.3);
    margin-top: 3rem;
}

.contact-link {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    margin-top: 0.5rem;
    display: inline-block;
    transition: color 0.3s;
}

.contact-link:hover {
    color: var(--accent-primary);
}

/* Responsive */
@media (max-width: 480px) {
    .notify-form {
        flex-direction: column;
    }

    .logo {
        font-size: 2rem;
    }

    .text-content h1 {
        font-size: 2rem;
    }
}