/* ============================================================
   FMRP Application Portal — base stylesheet
   Same design language as the rest of the FMRP web infrastructure
   (Outfit / Bebas Neue, dark navy, orange + blue gradients).
   ============================================================ */

:root {
    --primary-orange: #FF8C42;
    --primary-blue: #0D7FFF;
    --dark-blue: #0A1628;
    --light-blue: #3B9AFF;
    --accent-yellow: #FFD700;
    --success-green: #2ECC71;
    --danger-red: #ff4444;
    --text-light: #F5F5F5;
    --text-dark: #1a1a1a;
    --gradient-1: linear-gradient(135deg, var(--primary-orange) 0%, #FF6B35 100%);
    --gradient-2: linear-gradient(135deg, var(--primary-blue) 0%, var(--light-blue) 100%);
    --shadow-glow: 0 0 40px rgba(255, 140, 66, 0.3);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    background: var(--dark-blue);
    background-image:
        radial-gradient(900px 600px at 85% 10%, rgba(13, 127, 255, 0.10), transparent 60%),
        radial-gradient(700px 500px at 10% 90%, rgba(255, 140, 66, 0.08), transparent 60%);
    background-attachment: fixed;
    color: var(--text-light);
    line-height: 1.8;
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.content {
    flex: 1;
    width: 100%;
}

a {
    color: var(--light-blue);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.85rem 2rem;
    border: none;
    border-radius: 10px;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.25s;
    color: white;
}

.btn-primary {
    background: var(--gradient-2);
    box-shadow: 0 0 25px rgba(13, 127, 255, 0.25);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 35px rgba(13, 127, 255, 0.45);
}

.btn-orange {
    background: var(--gradient-1);
    box-shadow: 0 0 25px rgba(255, 140, 66, 0.25);
}

.btn-orange:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 35px rgba(255, 140, 66, 0.45);
}

.btn-small {
    padding: 0.5rem 1.5rem;
    font-size: 0.9rem;
}

/* Footer */
footer {
    margin-top: auto;
    border-top: 1px solid rgba(255, 140, 66, 0.15);
    background: rgba(10, 22, 40, 0.9);
}

.footer-bottom {
    text-align: center;
    padding: 1.5rem 1rem;
    color: rgba(245, 245, 245, 0.6);
    font-size: 0.9rem;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--dark-blue);
}

::-webkit-scrollbar-thumb {
    background: rgba(13, 127, 255, 0.4);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(13, 127, 255, 0.6);
}
