body {
    min-height: 100vh;
    margin: 0;
    background: linear-gradient(135deg, #2d0036 0%, #1a0022 100%);
    width: 100vw;
    padding: 2rem 0;
}

.frosted-glass {
    background: rgba(60, 0, 90, 0.7);
    box-shadow: 0 8px 32px 0 rgba(31, 0, 50, 0.37), 0 0 80px 10px #a259ff55;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    padding: 3rem 4rem;
    position: relative;
    overflow: hidden;
    max-width: 1200px;
    margin: 2rem auto;
}

.frosted-glass::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80%;
    height: 60px;
    background: radial-gradient(circle, #fff6 0%, transparent 80%);
    filter: blur(8px);
    z-index: 0;
}

h1 {
    color: #fff;
    font-size: 5rem;
    font-weight: 900;
    letter-spacing: 2px;
    text-shadow: 0 2px 24px #a259ffcc, 0 1px 0 #fff2;
    z-index: 1;
    position: relative;
    margin: 0 0 2rem 0;
    text-align: center;
}

.intro-paragraph {
    color: #fff;
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 3rem;
    opacity: 0.9;
}

h2 {
    color: #fff;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 1px 12px #a259ff88;
}

.content-text {
    color: #fff;
    opacity: 0.85;
    line-height: 1.6;
}