:root {
    --bg-color: #080b11;
    --card-bg: rgba(255, 255, 255, 0.02);
    --border-color: rgba(255, 255, 255, 0.06);
    --text-color: #ffffff;
    
    /* Vibrant gradients for modern look */
    --accent-glow-1: rgba(127, 0, 255, 0.18);
    --accent-glow-2: rgba(0, 240, 255, 0.12);
    --accent-color-pink: #ff2e93;
    --accent-color-blue: #00f0ff;
    
    --font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-family);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
}

/* Ambient glow animations */
.background-glow {
    position: absolute;
    width: 80vw;
    height: 80vw;
    max-width: 800px;
    max-height: 800px;
    background: radial-gradient(circle, var(--accent-glow-1) 0%, rgba(127, 0, 255, 0.02) 50%, rgba(0, 0, 0, 0) 70%);
    top: 30%;
    left: 20%;
    transform: translate(-50%, -50%);
    z-index: 1;
    filter: blur(100px);
    animation: floatGlow1 20s ease-in-out infinite alternate;
    pointer-events: none;
}

.background-glow-2 {
    position: absolute;
    width: 80vw;
    height: 80vw;
    max-width: 800px;
    max-height: 800px;
    background: radial-gradient(circle, var(--accent-glow-2) 0%, rgba(0, 240, 255, 0.02) 50%, rgba(0, 0, 0, 0) 70%);
    top: 70%;
    left: 80%;
    transform: translate(-50%, -50%);
    z-index: 1;
    filter: blur(100px);
    animation: floatGlow2 25s ease-in-out infinite alternate;
    pointer-events: none;
}

@keyframes floatGlow1 {
    0% {
        transform: translate(-50%, -50%) scale(1) translate(0px, 0px);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.15) translate(50px, -50px);
    }
    100% {
        transform: translate(-50%, -50%) scale(0.9) translate(-30px, 40px);
    }
}

@keyframes floatGlow2 {
    0% {
        transform: translate(-50%, -50%) scale(0.9) translate(0px, 0px);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2) translate(-60px, 60px);
    }
    100% {
        transform: translate(-50%, -50%) scale(1) translate(40px, -30px);
    }
}

/* Main Container */
.container {
    position: relative;
    z-index: 2;
    padding: 24px;
    width: 100%;
    max-width: 600px;
    display: flex;
    justify-content: center;
}

/* Premium Glassmorphic Card */
.card {
    background: var(--card-bg);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid var(--border-color);
    border-radius: 28px;
    padding: 3.5rem 4rem;
    width: 100%;
    position: relative;
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.4), 
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    overflow: hidden;
    transition: 
        transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), 
        box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1), 
        border-color 0.5s ease;
    cursor: default;
}

.card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 
        0 40px 80px rgba(0, 0, 0, 0.5), 
        0 0 50px rgba(127, 0, 255, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* Text Styling with a premium text-gradient */
.message {
    font-size: 3rem;
    font-weight: 800;
    text-align: center;
    background: linear-gradient(135deg, #ffffff 10%, #e2e8f0 50%, #94a3b8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.03em;
    position: relative;
    z-index: 3;
    user-select: none;
    animation: textEntrance 1.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes textEntrance {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Card hover shine effect */
.card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -100%;
    width: 50%;
    height: 200%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.04) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: rotate(30deg);
    transition: all 0.9s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
}

.card:hover::after {
    left: 150%;
}

/* Secondary internal glow effect */
.glow-effect {
    position: absolute;
    bottom: -60px;
    right: -60px;
    width: 140px;
    height: 140px;
    background: radial-gradient(circle, rgba(0, 240, 255, 0.25) 0%, rgba(0, 240, 255, 0) 70%);
    filter: blur(20px);
    opacity: 0.5;
    pointer-events: none;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.card:hover .glow-effect {
    opacity: 0.8;
    transform: scale(1.2);
}

/* Responsive adjustments */
@media (max-width: 640px) {
    .card {
        padding: 2.5rem 2rem;
        border-radius: 20px;
    }
    .message {
        font-size: 2.25rem;
    }
}
