@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&family=Noto+Serif:wght@700&family=Public+Sans:wght@700&display=swap');

/* Typography & Core Configurations */
body {
    background-color: #0c1324;
    color: #dce2fa;
    font-family: 'Inter', sans-serif;
    -webkit-font-smoothing: antialiased;
}

/* Custom UI Branding Components */
.glass-panel {
    backdrop-filter: blur(12px);
    background: rgba(24, 31, 49, 0.8);
}

.gold-border {
    border: 1px solid #d4af37;
}

.high-trust-btn {
    background-color: #22c55e;
    color: #003915;
    font-family: 'Public Sans', sans-serif;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.high-trust-btn:hover {
    filter: brightness(1.1);
    transform: translateY(-1px);
    box-shadow: 0 10px 15px -3px rgba(34, 197, 94, 0.3);
}

.danger-btn {
    background-color: rgba(239, 68, 68, 0.1);
    border: 1px solid rgb(239, 68, 68);
    color: rgb(248, 113, 113);
    font-family: 'Public Sans', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all 0.2s ease;
}

.danger-btn:hover {
    background-color: rgb(239, 68, 68);
    color: white;
}

/* Motion Systems & Dynamic Keyframes */
@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.animate-marquee {
    animation: scroll 40s linear infinite;
}

.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideLeft { from { transform: translateX(-20px); } to { transform: translateX(0); } }
@keyframes slideRight { from { transform: translateX(20px); } to { transform: translateX(0); } }

.animate-fade-in { animation: fadeIn 0.8s ease-out forwards; }
.slide-left { animation: fadeIn 0.8s ease-out forwards, slideLeft 0.8s ease-out forwards; }
.slide-right { animation: fadeIn 0.8s ease-out forwards, slideRight 0.8s ease-out forwards; }