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

body {
    min-height: 100vh;
    background: #080810;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: 'Courier New', Courier, monospace;
    overflow: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    width: 520px;
    height: 320px;
    top: -100px;
    left: -120px;
    background: radial-gradient(ellipse, rgba(168,85,247,0.18) 0%, transparent 65%);
    pointer-events: none;
}

body::after {
    content: '';
    position: fixed;
    width: 420px;
    height: 320px;
    bottom: -100px;
    right: -100px;
    background: radial-gradient(ellipse, rgba(236,72,153,0.16) 0%, transparent 65%);
    pointer-events: none;
}h2 {
    font-family: 'Orbitron', monospace;
    font-weight: 900;
    font-size: clamp(1.1rem, 4vw, 2rem);
    letter-spacing: 0.45em;
    text-transform: uppercase;
    text-align: center;
    padding: 0 16px;
    margin-bottom: 28px;
    position: relative;
    z-index: 1;
    animation: rise 0.3s ease forwards;

    background: linear-gradient(135deg,
        rgba(255,255,255,0.95) 0%,
        rgba(200,160,255,0.90) 40%,
        rgba(244,114,182,0.85) 75%,
        rgba(34,211,238,0.80) 100%
    );
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;

    filter:
        drop-shadow(0 0 6px rgba(192,132,252,0.55))
        drop-shadow(0 0 18px rgba(192,132,252,0.25));
}


h1#h1 {
    position: relative;
    z-index: 1;
    font-size: clamp(2.4rem, 7vw, 4rem);
    font-weight: bold;
    letter-spacing: 0.1em;
    line-height: 1;
    padding: 36px 52px 32px 52px;
    border-radius: 24px;
    border: 1px solid rgba(168,85,247,0.35);
    background: rgba(255,255,255,0.03);

    color: transparent;
    background-image: linear-gradient(135deg, #c084fc 0%, #f472b6 45%, #22d3ee 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;

    animation: rise 0.9s ease forwards, shift 7s ease infinite;

    /* mobile: shrink padding and prevent overflow */
    word-break: break-all;
    text-align: center;
    max-width: 95vw;
}

h1#h1::after {
    content: '';
    display: block;
    width: 75%;
    height: 1px;
    margin: 22px auto 0;
    background: linear-gradient(90deg,
        transparent,
        rgba(192,132,252,0.5),
        rgba(244,114,182,0.5),
        rgba(34,211,238,0.5),
        transparent
    );
    background-clip: initial;
    -webkit-background-clip: initial;
    color: initial;
}

@keyframes rise {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes shift {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}



p {
    font-family: 'Orbitron', monospace;
    font-weight: 900;
    font-size: clamp(0.50rem, 2.4vw, 0.80rem);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    text-align: center;
    padding: 0 16px;
    margin-top: 28px;
    position: relative;
    z-index: 1;

    background: linear-gradient(135deg,
        rgba(200,160,255,0.5) 0%,
        rgba(244,114,182,0.45) 60%,
        rgba(34,211,238,0.4) 100%
    );
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;

    filter:
        drop-shadow(0 0 4px rgba(192,132,252,0.2))
        drop-shadow(0 0 10px rgba(192,132,252,0.08));
}




/* ── Mobile: small phones (≤ 480px) ── */
@media (max-width: 480px) {
    h2 {
        font-size: clamp(0.65rem, 5vw, 0.95rem);
        letter-spacing: 0.25em;
        margin-bottom: 16px;
        filter:
            drop-shadow(0 0 4px rgba(192,132,252,0.45))
            drop-shadow(0 0 12px rgba(192,132,252,0.18));
    }
}
    h1#h1 {
        font-size: clamp(1.4rem, 9vw, 2rem);
        padding: 24px 20px 20px 20px;
        border-radius: 16px;
        letter-spacing: 0.05em;
    }

    h1#h1::after {
        margin-top: 16px;
    }


/* ── Tablet: 481px – 768px ── */
@media (min-width: 481px) and (max-width: 768px) {
    h1#h1 {
        font-size: clamp(2rem, 8vw, 3rem);
        padding: 28px 36px 24px 36px;
    }
}




/* Made by Smit Batch-18 Student Zobia Khan */
