body {
    background-color: #222;
    color: #FFF;
}

.opt {
    display: inline-block;
    font-weight: bold;
    margin-left: 1rem;
    font-size: 1.1rem;;
}

.title {
    display: inline-block;
    min-width: 20vw;
    font-size: 1rem;
    color: #EEE;
}

.centered {
    text-align: center;
}

.app-button {
    display: inline-block;
    min-width: 70vw;
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 12px;
    margin-top: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #ffb02e 0%, #ffcf2c 100%);
    color: #010101;
    box-shadow: 0 4px 15px rgba(255, 176, 46, 0.3);
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.app-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 176, 46, 0.4);
    background: linear-gradient(135deg, #ffcf2c 0%, #ffb02e 100%);
}

.app-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(255, 176, 46, 0.3);
}

.app-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.app-button:hover::before {
    left: 100%;
}

button {
    background-color: #444;
    color: #EAEAEA;
}



.wait-view {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    
    width: 80vw;
    max-width: 500px;
    
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    
    text-align: center;
    border-radius: 8px;
    font-size: 1rem;
    padding: 2rem;
}
.logo {
    max-width: 400px;
}

.debug-view {
    display: none;
}

.gray {
    color: #999;
}

.bottom-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    padding-bottom: max(10px, env(safe-area-inset-bottom));
    background: rgba(34, 34, 34, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
}

.bottom-banner-image {
    max-width: 200px;
    height: auto;
    display: block;
}

