/* Northern Light Cabal - Minimalist Premium */
:root {
    /* Contrast Palette */
    --primary-green: #39ff14;
    --primary-cyan: #00f3ff;
    --dark-bg: #0b0f19;
    --panel-bg: #151b2b;
    --border-color: #2a3449;

    --text-primary: #ffffff;
    --text-secondary: #94a3b8;

    /* Bringer Colors */
    --procyon-color: #0ea5e9;
    --capella-color: #d946ef;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--dark-bg);
    background-image: linear-gradient(rgba(11, 15, 25, 0.85), rgba(11, 15, 25, 0.7)), url('../img/bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Wider Container for Modern Feel */
@media (min-width: 1400px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: 1600px;
    }
}

/* Section Spacing */
section {
    position: relative;
    z-index: 1;
}

/* Sidebar Widgets */
.sidebar-widget {
    background: var(--panel-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.widget-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 0.5rem;
}

.status-indicator {
    display: inline-block;
    width: 10px;
    height: 10px;
    background-color: var(--primary-green);
    border-radius: 50%;
    margin-right: 8px;
    box-shadow: 0 0 10px var(--primary-green);
}

/* Sidebar Tab Styles */
.list-group-item.active {
    background-color: rgba(57, 255, 20, 0.1) !important;
    border-color: var(--primary-green) !important;
    color: var(--primary-green) !important;
    font-weight: 700;
}

.list-group-item:hover {
    background-color: rgba(255, 255, 255, 0.03) !important;
}

/* Bringer Styles */
.bringer-badge {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    letter-spacing: 0.5px;
}

.text-procyon {
    color: var(--procyon-color);
}

.text-capella {
    color: var(--capella-color);
}

/* Typography Overrides */
h1,
h2,
h3,
h4,
h5,
h6 {
    color: white !important;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.text-gradient {
    background: linear-gradient(to right, var(--primary-green), var(--primary-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-muted {
    color: var(--text-secondary) !important;
}

/* Premium Navbar - The "Best" Design */
.navbar {
    background: rgba(11, 15, 25, 0.95) !important;
    backdrop-filter: blur(20px);
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.navbar-brand {
    font-weight: 800;
    letter-spacing: -0.5px;
}

.nav-link {
    color: #e2e8f0 !important;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.5rem 1.5rem !important;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-green) !important;
}

/* Glow indicator for active/hover */
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--primary-green);
    box-shadow: 0 0 10px var(--primary-green);
    border-radius: 10px;
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 25px;
}

/* Buttons */
.btn-aurora {
    background: var(--primary-green);
    color: #000;
    font-weight: 700;
    border-radius: 8px;
    padding: 12px 30px;
    border: none;
    transition: all 0.2s;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.btn-aurora:hover {
    background: #2ce60b;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(57, 255, 20, 0.2);
}

.btn-outline-aurora {
    background: transparent;
    border: 2px solid var(--border-color);
    color: white;
    font-weight: 600;
    border-radius: 8px;
    padding: 10px 28px;
    transition: all 0.2s;
}

.btn-outline-aurora:hover {
    border-color: var(--primary-green);
    color: var(--primary-green);
}

/* Minimalist Cards */
.glass-card {
    background: var(--panel-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2.5rem;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-green);
}

/* Inputs */
.form-control {
    background: var(--dark-bg);
    border: 1px solid var(--border-color);
    color: white;
    border-radius: 8px;
    padding: 0.8rem 1rem;
}

.form-control:focus {
    background: var(--dark-bg);
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(57, 255, 20, 0.1);
    color: white;
}

/* Utilities */
.hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(57, 255, 20, 0.05) 0%, rgba(0, 0, 0, 0) 70%);
    z-index: -1;
    pointer-events: none;
}

/* Standard Page Spacing */
.page-content-wrapper {
    padding-top: 160px;
    padding-bottom: 4rem;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.hero-section {
    position: relative;
    padding-top: 160px;
    /* More space for navbar */
    padding-bottom: 80px;
    overflow: visible;
    /* Allow logo to pop out */
}

.hero-img {
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.hero-logo {
    max-height: 500px;
    object-fit: contain;
    filter: drop-shadow(0 0 20px rgba(57, 255, 20, 0.2));
    /* Add glow instead of border */
}

footer {
    background: var(--panel-bg);
    border-top: 1px solid var(--border-color);
    margin-top: auto;
}