body {
    background-color: #051424;
    overflow: hidden;
    font-family: 'Montserrat', sans-serif;
}

img {
    display: none !important;
}

.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

.fade-in {
    animation: fadeIn 0.4s ease-out forwards;
}

.pop-in {
    animation: popIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

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

.glow-button {
    box-shadow: 0 0 20px rgba(245, 158, 11, 0.2);
    transition: all 0.3s ease;
}

.glow-button:hover {
    box-shadow: 0 0 30px rgba(245, 158, 11, 0.4);
    transform: translateY(-2px);
}

.glow-button:active {
    transform: scale(0.95);
}

.card-gradient-border {
    position: relative;
    background: #1e293b;
    border-radius: 1.5rem;
    padding: 2px;
    background-clip: padding-box;
    border: 2px solid transparent;
}

.card-gradient-border::before {
    content: '';
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    z-index: -1;
    margin: -2px;
    border-radius: inherit;
    background: linear-gradient(135deg, #f59e0b, #f97316);
}