body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background: linear-gradient(45deg, #1a1a2e, #16213e, #0f3460);
    min-height: 100vh;  
    display: grid;
    place-items: center;
    color: var(--text-color);
    overflow-x: hidden;
}

:root {
    --glass-bg: rgba(255, 255, 255, 0.15);
    --glass-border: rgba(255, 255, 255, 0.2);
    --text-color: #ffffff;
    --accent-gold: #ffd700;
}

.glass-container {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 3em;
    width: 90%;
    max-width: 600px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    text-align: center;
    margin: 20px 0;
}
select, .primary-btn {
    width: 100%;
    padding: 12px;
    margin-top: 10px;
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
    outline: none;
}
option{
    background-color: #415d53;
}
.primary-btn {
    background: #e94560;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s;
    margin-top: 2rem;
    border: none;
}
.backgroundbody{
    position: fixed;
    z-index: -1;
    top:50%;
    left:50%;
    pointer-events: none;
    transform:translate(-50%,-50%);
    width: 600px; 
    height: 600px;
    background: radial-gradient(circle, rgba(233, 69, 96, 0.4), transparent 70%),
        url("null");
}
.hidden{
    display: none;
}

.deity-img{
    width: 100%;
    aspect-ratio: 16/9;
    
}