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

/* LOCK SCREEN */
html, body {
    height: 100%;
    /* overflow: hidden;  🚀 NO LONGER FIXED TO ALLOW SCROLLING ON LANDING */
    scroll-behavior: smooth;
    font-family: 'Orbitron', sans-serif;
    background: black;
    color: white;
}

/* BACKGROUND */
#gridCanvas {
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1; /* Strictly behind all content */
}

/* MAIN AREA (PERFECT FIT BETWEEN HEADER + FOOTER) */
.main-container {
    position: absolute;
    top: 70px;   /* header height */
    bottom: 50px; /* footer height */
    left: 0;
    right: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    z-index: 2;
}

/* CARD */
.glass-card {
    position: relative;

    backdrop-filter: blur(25px);
    background: rgba(10, 5, 25, 0.6);

    border-radius: 24px;

    padding: 65px 55px; /* 🔥 bigger */

    width: 100%;
    max-width: 560px; /* 🔥 wider */

    text-align: center;

    border: 1px solid rgba(98,39,149,0.5);

    box-shadow:
        0 0 60px rgba(98,39,149,0.25),
        inset 0 0 20px rgba(98,39,149,0.15);

    transition: 0.3s ease;
}
.glass-card h1 {
    font-size: 38px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.glass-card p {
    font-size: 16px;
    color: #ABAEB7;
    margin-bottom: 25px;
}

/* ✨ PREMIUM GLOW ON HOVER */
.glass-card:hover {
    box-shadow:
        0 0 80px rgba(98,39,149,0.5),
        inset 0 0 25px rgba(98,39,149,0.25);
    transform: translateY(-4px);
}

/* BUTTONS */
.btn-group-custom {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 35px;
}

.btn-main,
.btn-secondary-custom {
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    outline: none;
    display: inline-block;
    text-align: center;
    transition: all 0.3s ease;
}

/* Primary Neon Glowing Button */
.btn-main {
    background: linear-gradient(135deg, #622795, #7c3aed) !important;
    color: #ffffff !important;
    border: 1px solid rgba(124, 58, 237, 0.5) !important;
    box-shadow: 0 0 20px rgba(124, 58, 237, 0.4) !important;
}

.btn-main:hover {
    background: linear-gradient(135deg, #7c3aed, #9355ff) !important;
    color: #ffffff !important;
    transform: translateY(-3px);
    box-shadow: 0 0 35px rgba(124, 58, 237, 0.8), 0 0 10px rgba(255, 255, 255, 0.2) !important;
}

.btn-main:active {
    transform: translateY(0);
}

/* Secondary Glassmorphism Button */
.btn-secondary-custom {
    background: rgba(255, 255, 255, 0.05) !important;
    color: #e2e8f0 !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    backdrop-filter: blur(10px) !important;
}

.btn-secondary-custom:hover {
    background: rgba(255, 255, 255, 0.15) !important;
    color: #ffffff !important;
    border-color: rgba(255, 255, 255, 0.5) !important;
    transform: translateY(-3px);
}

.btn-secondary-custom:active {
    transform: translateY(0);
}