﻿:root {
    --gold: #d68400;
    --gold-bright: #ff9d00;
    --red: #ef0206;
    --bg: #0d0d0f;
    --card-bg: #16161a;
    --border: #2a2a2e;
    --blue: #007bff;
}

@font-face {
    font-family: 'Figtree';
    src: url('Assets/Figtree-VariableFont_wght.ttf') format('truetype');
    font-weight: 400;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

.footer-link {
    text-align: center;
    margin-top: 2.5rem;
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: center;
}

.footer-link a {
    color: var(--gold-bright);
    text-decoration: none;
    font-weight: 700;
    border: 1px solid var(--gold);
    padding: 0.6rem 1.6rem;
    border-radius: 6px;
    display: inline-block;
}

.footer-link a:hover {
    transition: 0.6s;
    background-color: var(--gold);
    color: #f0f0f0;
}

.footer-link a:active{
    font-size: 14px;
}

body {
    background: var(--bg);
    color: #f0f0f0;
    font-family: 'Figtree', Roboto, Arial, sans-serif;
    min-height: 100vh;
    padding: 3rem 1.5rem;
    line-height: 1.6;
    background-image: url('Assets/bg.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 70px;
    background: rgba(13, 13, 15, 0.92);
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1.5rem;
    z-index: 100;
    border-bottom: 3px solid var(--gold);
}

.navbar .brand {
    background: linear-gradient(90deg, #F70505, #BB0A41, #671195, #4F13AD, #001AFF);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 800;
    font-size: 1.5rem;
    text-decoration: none;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.navbar .nav-links {
    display: flex;
    gap: 1rem;
    vertical-align: middle;
}

.navbar .nav-links a {
    color: #e5e5e5;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: transform 0.5s;
    vertical-align: middle;
    border: 3px solid rgba(13, 13, 15, 0.92);
    border-radius: 8px;
    padding: 0.3rem 0.5rem;
    border-left: 3px solid var(--gold);
}

.nav-links img {
    height: 25px;
    width: auto;
    vertical-align: middle;
}

.navbar .nav-links a:hover {
    transform: scale(1.05);
    border: 3px solid var(--gold);
}

.navbar .nav-links a:active{
    transform: scale(0.9);
    background: var(--gold);
}

.container {
    max-width: 720px;
    margin: 0 auto;
    padding-top: 56px;
}

.title {
    -webkit-background-clip: text;
    background-clip: text;
    color: var(--gold-bright);
    font-weight: 800;
    font-size: 3rem;
    text-decoration: none;
    letter-spacing: 0.5px;
    text-align: center;
}

.subtitle {
    text-align: center;
    color: var(--gold-bright);
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 2.5rem;
    text-transform: uppercase;
}

.item {
    background: var(--card-bg);
    border-left: 3px solid var(--gold);
    border-radius: 6px;
    padding: 1rem 1.25rem;
    margin-bottom: 0.85rem;
    font-size: 1rem;
    font-weight: 450;
    color: #cfcfcf;
}


.item-title{
    font-size: 1.5rem;
    color: var(--gold-bright);
    font-weight: 600;
}

.highlight {
    color: var(--gold-bright);
    font-weight: 500;
}

.divider {
    text-align: center;
    color: var(--red);
    letter-spacing: 2px;
    margin: 2rem 0;
    font-size: 0.9rem;
    opacity: 0.7;
    word-break: break-all;
}

.status-dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    flex-shrink: 0;
}

.status {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    border-radius: 6px;
    padding: 0.25rem 0.6rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    vertical-align: middle;
}

.status-online {
    background: #1b3a22;
    border: 1px solid #2e7d32;
    color: #7ee08a;
}
.status-online .status-dot {
    background-color: #4caf50;
}

.status-idle {
    background: #3a2e08;
    border: 1px solid #8a6d1a;
    color: var(--gold-bright);
}
.status-idle .status-dot {
    background-color: var(--gold-bright);
}

.status-offline {
    background: #2a2a2e;
    border: 1px solid #444;
    color: #999;
}
.status-offline .status-dot {
    background-color: #888;
}