/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    /* The Gled Brand Gradient */
    background: linear-gradient(135deg, #facc15 0%, #10b981 50%, #0ea5e9 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    color: white;
    overflow-x: hidden;
    margin: 0;
}

/* Base Frosted Glass Panel */
.glass-panel {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* Legibility Utilities */
.text-outline {
    text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.7);
}
.text-outline-light {
    text-shadow: 0px 1px 3px rgba(0, 0, 0, 0.5);
}

/* Floating Background Shapes */
.bg-shapes {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: 0.5;
}