body {
    font-family: 'Inter', sans-serif;
    background-color: #f8fafc;
    -webkit-tap-highlight-color: transparent;
}

.hide-scrollbar::-webkit-scrollbar { display: none; }
.hide-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }

.glass {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.option-card { transition: all 0.2s ease-in-out; border-width: 2px; }
.option-card.selected {
    border-color: #dc2626 !important;
    background-color: #fef2f2 !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(220, 38, 38, 0.1);
}

.option-card.selected .icon-container {
    background-color: #dc2626 !important;
    border-color: #dc2626 !important;
}

.option-card.selected .icon-container {
    background-color: #dc2626 !important;
    border-color: #dc2626 !important;
}
.option-card.selected .icon-container i { opacity: 1 !important; }

.modal-enter { animation: slideUp 0.3s ease-out forwards; }
.modal-leave { animation: slideDown 0.3s ease-in forwards; }
@keyframes slideUp { from { transform: translateY(100%); } to { transform: translateY(0); } }
@keyframes slideDown { from { transform: translateY(0); } to { transform: translateY(100%); } }

.img-fallback { background-color: #f1f5f9; position: relative; }
.img-fallback::after {
    content: "\f2e7";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #cbd5e1;
    font-size: 1.5rem;
    z-index: 0;
}
.img-fallback img { z-index: 10; position: relative; transition: opacity 0.3s ease; }

/* Profile modal animation */
#profile-modal {
    animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}
