* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #ece9e6, #ffffff);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.context-container {
    text-align: center;
    padding: 2rem;
}

.context-container h2 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.logo-grid {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.logo-option {
    width: 120px;
    height: 120px;
    background: white;
    border-radius: 1rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    transition: transform 0.2s ease;
    cursor: pointer;
}

.logo-option:hover {
    transform: scale(1.05);
}

.logo-option img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.container {
    width: 90%;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.code-display {
    font-size: 2.5rem;
    height: 5rem;
    letter-spacing: 0.5rem;
    background: #f5f5f5;
    padding: 1rem 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    text-align: center;
    width: 100%;
}

.numpad {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    width: 100%;
}

.numpad button {
    font-size: 1.5rem;
    padding: 1rem 0;
    border: none;
    border-radius: 1rem;
    background: #ffffff;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: all 0.2s ease;
}

.numpad button:active {
    background: #e0e0e0;
    transform: scale(0.95);
}


.slide-to-unlock {
    margin-top: 2rem;
    width: 100%;
    height: 60px;
    background: #ddd;
    border-radius: 2rem;
    position: relative;
    overflow: hidden;
}

.slider {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 60%;
    background: #4caf50;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    border-radius: 30px;
    transition: width 0.2s ease;
    user-select: none;
}

.slider.active {
    background: #2e7d32;
}

#slidersContainer {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
}