:root {
    --primary: #ff4d4d;
    --primary-hover: #e63e3e;
    --primary-glow: rgba(255, 77, 77, 0.2);
    --bg-light: #fefefe;
    --bg-accent: #f8fafc;
    --text-main: #1a1a1e;
    --text-dim: #64748b;
    --glass: rgba(255, 255, 255, 0.8);
    --glass-border: rgba(0, 0, 0, 0.06);
    --card-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;800&family=Pacifico&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

body {
    background-color: var(--bg-accent);
    background-image:
        radial-gradient(circle at 10% 20%, rgba(255, 77, 77, 0.03) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(255, 77, 77, 0.03) 0%, transparent 40%);
    color: var(--text-main);
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.container {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 2rem;
    max-width: 580px;
    width: 90%;
}

.glass-card {
    background: var(--glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 40px;
    padding: 4rem 2.5rem;
    box-shadow: var(--card-shadow);
    animation: slideUp 1s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Logo Styling - Replicating the provided images */
.logo-container {
    margin-bottom: 2.5rem;
    position: relative;
    display: inline-block;
}

.logo-link {
    display: block;
    width: 130px;
    height: 130px;
    background: white;
    border-radius: 28px;
    padding: 10px;
    box-shadow: 0 12px 20px -8px rgba(255, 77, 77, 0.15);
    border: 4px solid var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: transform 0.3s ease;
}

.logo-link:hover {
    transform: scale(1.05) rotate(-2deg);
}

.logo-w {
    font-family: 'Pacifico', cursive;
    color: var(--primary);
    font-size: 75px;
    line-height: 1;
    transform: translateY(-4px);
    user-select: none;
}

.sparkle {
    position: absolute;
    color: var(--primary);
    animation: twinkle 2s infinite ease-in-out;
}

.sparkle-1 {
    top: 18px;
    right: 18px;
    font-size: 20px;
}

.sparkle-2 {
    top: 40px;
    right: 28px;
    font-size: 14px;
    animation-delay: 0.5s;
}

/* Construction Animation */
.animation-box {
    margin: 2.5rem 0;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* SVG Rocket Animation Customization */
#rocket-path {
    stroke: var(--primary);
    stroke-dasharray: 10;
    animation: dash 10s linear infinite;
}

@keyframes dash {
    to {
        stroke-dashoffset: 100;
    }
}

/* Text Content */
h1 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    color: var(--text-main);
    letter-spacing: -0.04em;
}

p {
    color: var(--text-dim);
    font-size: 1.15rem;
    line-height: 1.6;
    max-width: 420px;
    margin: 0 auto 2.5rem;
}

p strong {
    color: var(--primary);
    font-weight: 600;
}

/* Notification Form */
.notify-box {
    display: flex;
    background: white;
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 6px;
    margin-top: 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.notify-box:focus-within {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(255, 77, 77, 0.1);
    transform: translateY(-2px);
}

input {
    background: transparent;
    border: none;
    color: var(--text-main);
    padding: 14px 20px;
    flex: 1;
    outline: none;
    font-size: 1rem;
    font-weight: 500;
}

input::placeholder {
    color: #94a3b8;
}

button {
    background: var(--primary);
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 77, 77, 0.3);
}

button:hover {
    background: var(--primary-hover);
    transform: scale(1.02);
    box-shadow: 0 6px 20px rgba(255, 77, 77, 0.4);
}

/* Loading Dots */
.loading-dots {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-bottom: 1rem;
}

.dot {
    width: 10px;
    height: 10px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse 1.5s infinite ease-in-out;
    opacity: 0.3;
}

.dot:nth-child(2) {
    animation-delay: 0.2s;
}

.dot:nth-child(3) {
    animation-delay: 0.4s;
}

/* Animations */
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.3;
    }

    50% {
        transform: scale(1.4);
        opacity: 1;
    }
}

@keyframes twinkle {

    0%,
    100% {
        opacity: 0.4;
        transform: scale(0.9);
    }

    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

/* Responsive */
@media (max-width: 480px) {
    h1 {
        font-size: 2.2rem;
    }

    .glass-card {
        padding: 3rem 1.5rem;
    }

    .logo-link {
        width: 110px;
        height: 110px;
    }

    .logo-w {
        font-size: 60px;
    }
}