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

body {
    background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
    position: relative;
    overflow: hidden;
}

body::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(138, 43, 226, 0.4) 0%, transparent 70%);
    top: -100px;
    right: -100px;
    border-radius: 50%;
    filter: blur(80px);
    transition: transform 0.3s ease-out;
}

body::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(30, 144, 255, 0.3) 0%, transparent 70%);
    bottom: -150px;
    left: -150px;
    border-radius: 50%;
    filter: blur(100px);
    transition: transform 0.3s ease-out;
}

.glass-container {
    max-width: 600px;
    width: 100%;
    position: relative;
    z-index: 1;
}

.glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 60px 50px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    text-align: center;
    transition: transform 0.5s ease-out;
}

.icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.6), rgba(30, 144, 255, 0.6));
    backdrop-filter: blur(10px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 8px 24px rgba(138, 43, 226, 0.3);
}

h1 {
    color: rgba(255, 255, 255, 0.95);
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: -1px;
}

.tagline {
    color: rgba(255, 255, 255, 0.7);
    font-size: 22px;
    margin-bottom: 40px;
    font-weight: 300;
}

.divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, rgba(138, 43, 226, 0.8), rgba(30, 144, 255, 0.8));
    margin: 30px auto;
    border-radius: 2px;
}

.message {
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 12px;
}

.footnote {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    margin-top: 20px;
    font-style: italic;
}

/* Floating orbs */
.floating-orb {
    position: fixed;
    pointer-events: none;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
    will-change: transform;
    transition: left 0.1s linear, top 0.1s linear;
}

@media (max-width: 600px) {
    .glass-card {
        padding: 40px 30px;
    }

    h1 {
        font-size: 42px;
    }

    .tagline {
        font-size: 18px;
    }

    .icon {
        width: 80px;
        height: 80px;
        font-size: 36px;
    }
}
