/* Disable the entire website */
html,
body {
    overflow: hidden !important;
}

body > * {
    display: none !important;
    pointer-events: none !important;
    user-select: none !important;
}

/* Full-screen Coming Soon Overlay */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    background: linear-gradient(135deg, #0f172a, #111827, #1e3a8a);
    z-index: 999998;
}

body::after {
    content: "TECHODEP ELECTRONICS\A\A🚀 WEBSITE COMING SOON\A\AWe're building something amazing.\APlease check back soon.";
    white-space: pre-line;
    position: fixed;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;

    font-family: "Poppins", Arial, sans-serif;
    font-size: clamp(20px, 2vw, 36px);
    font-weight: 600;
    line-height: 1.8;
    color: #ffffff;

    background:
        radial-gradient(circle at top right, rgba(0,212,255,.15), transparent 40%),
        radial-gradient(circle at bottom left, rgba(59,130,246,.15), transparent 40%);

    z-index: 999999;
}