:root {
    --navy: #0a1d37;
    --maroon: #800000;
    --gold: #ffcc00;
    --light-blue: #00a8e8;
}

html {
    overscroll-behavior: none;
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #0a1d37 0%, #2d0d1e 50%, #800000 100%);
    background-attachment: fixed;
    color: #f8fafc;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overscroll-behavior: none;
    position: relative;
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../assets/Background_Event.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.25;
    filter: brightness(0.6) contrast(1.15) saturate(0.9);
    z-index: -1;
    pointer-events: none;
}

h1, h2, h3, .font-heading {
    font-family: 'Montserrat', sans-serif;
}

.glass-panel {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.5rem;
}

.glass-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-card:hover {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}
