:root {
    --butterfly-bush: #6453A7;
    --london-hue: #D0B1D5;
    --bastille: #141015;
    --cold-purple: #ABAEE2;
}

body {
    font-family: 'Be Vietnam Pro', sans-serif;
    background-color: var(--london-hue);
    background-image: linear-gradient(to bottom right, #6240A5, #6843B5, #9D79DB, #A496E4, #A68AF1, #BEA5F1, #C7A9E0, #CFB3E1, #BA82DF, #C883CF);
}
.floating-bg-container {
    position: relative;
}
#container {
    position: relative;
}
#bg-pieces-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    pointer-events: auto;
}
.card, header, footer {
    position: relative;
    z-index: 1;
}
.card {
    background-color: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.recruitment-title {
    font-family: 'Times New Roman', Times, serif;
    font-weight: 700;
    color: #FFFFFF;
    text-shadow: 
        0 0 6px rgba(255, 255, 255, 0.9), 
        0 0 10px rgba(220, 200, 255, 0.7);
    letter-spacing: 0.05em;
}
.answer-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
.progress-bar-inner {
    transition: width 0.5s ease-in-out;
    background: linear-gradient(to right, var(--butterfly-bush), var(--cold-purple), var(--london-hue));
}
.result-bar {
    animation: grow 1s ease-out forwards;
    transform-origin: left;
}

@keyframes grow {
    from { transform: scaleX(0); }
    to { transform: scaleX(1); }
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
.fade-in {
    animation: fadeIn 0.6s ease-out forwards;
}

@media (max-width: 449px) {
    .xs\:inline {
        display: none !important;
    }
}

@media (min-width: 450px) {
    .xs\:inline {
        display: inline !important;
    }
}