:root {
    --primary: #ff0076; /* Neon Pink */
    --secondary: #01fbff; /* Electric Blue */
    --accent: #ffeb3b; /* Cyber Yellow */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial Black', sans-serif;
}

body {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
    overflow: hidden;
}

/* Background Logic */
.bg-container {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.color-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Gradient mixing with your image */
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    mix-blend-mode: multiply;
    opacity: 0.8;
}

/* The Card */
.glass-card {
    padding: 3rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border: 3px solid var(--primary);
    border-radius: 0px; /* Sharp edges look more "aggressive" */
    text-align: center;
    box-shadow: 0 0 50px rgba(255, 0, 118, 0.5);
    animation: pulse 2s infinite alternate;
}

h1 {
    font-size: 5rem;
    color: #fff;
    text-shadow: 3px 3px var(--primary), 6px 6px var(--secondary);
    letter-spacing: -2px;
}

.divider {
    height: 8px;
    width: 100px;
    background: var(--accent);
    margin: 1rem auto;
}

p {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

button {
    padding: 1rem 2rem;
    background: var(--primary);
    color: white;
    border: none;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 5px 5px 0px var(--secondary);
    transition: 0.2s;
}

button:hover {
    transform: translate(-2px, -2px);
    box-shadow: 8px 8px 0px var(--accent);
}

@keyframes pulse {
    from { transform: scale(1); }
    to { transform: scale(1.02); }
}