/* Fanta Ranking Styles */

body {
    font-family: 'Fredoka One', cursive;
    background-color: white;
    min-height: 100vh;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('background-horizontal.webp');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    z-index: -1;
}

body.login-view {
    display: flex;
    align-items: center;
    justify-content: center;
}

body.app-view {
    padding: 1rem;
    padding-bottom: 5rem;
}

.fanta-card {
    border: 4px solid #003876;
    border-radius: 25px;
}

.bubbly-shadow {
    box-shadow: 8px 8px 0px #003876;
}

/* Keypad Styles */
.keypad {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    max-width: 250px;
    margin: 0 auto;
}

.keypad-button {
    aspect-ratio: 1;
    font-size: 24px;
    font-weight: bold;
    background: #F7941D;
    color: white;
    border: 3px solid #003876;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 4px 4px 0px #003876;
}

.keypad-button:hover {
    background: #FF9A00;
    transform: translateY(-2px);
    box-shadow: 6px 6px 0px #003876;
}

.keypad-button:active {
    transform: translateY(0);
    box-shadow: 2px 2px 0px #003876;
}

.keypad-button.clear {
    background: #FF9A00;
    grid-column: 1;
}

.keypad-button.clear:hover {
    background: #FF8800;
}

.keypad-button.zero {
    grid-column: 2;
}

.keypad-button.backspace {
    background: #FF6B6B;
    grid-column: 3;
}

.keypad-button.backspace:hover {
    background: #FF5252;
}

.passcode-display {
    min-height: 60px;
    font-size: 32px;
    letter-spacing: 8px;
    color: #003876;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FFF3E0;
    border: 3px solid #003876;
    border-radius: 15px;
    margin-bottom: 24px;
    font-weight: bold;
}
