/* assets/style.css */
:root {
    --bg-dark: #0f172a;
    --bg-card: #1e293b;
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --accent: #f7931a; /* Bitcoin Orange */
    --accent-hover: #fae100;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
}

.navbar {
    background-color: rgba(15, 23, 42, 0.95);
    border-bottom: 1px solid #334155;
}
/* Der Link (a) innerhalb des aktiven li - Die Textfarbe */
/* div .navbar-nav .nav-link.active{
 color:#f7931a;
}
*/
.margin-left-10{
	margin-left:10px;
}
.margin-left-20{
	margin-left:20px;
}
.margin-right-10{
	margin-right:10px;
}
.margin-right-20{
	margin-right:20px;
}
.navbar-brand {
    font-weight: 700;
    color: var(--accent) !important;
}


/* Der Link (a) innerhalb des aktiven li - Die Textfarbe */
#navbar-act .nav-item.active .nav-link {
    color: #f7931a !important;   
}

.card {
    background-color: var(--bg-card);
    border: 1px solid #334155;
    color: var(--text-main);
    transition: transform 0.2s;
}

.card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
}

.btn-primary {
    background-color: var(--accent);
    border-color: var(--accent);
    color: #000;
    font-weight: 600;
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    border-color: var(--accent-hover);
    color: #000;
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
}

footer {
    border-top: 1px solid #334155;
    margin-top: 50px;
    padding: 30px 0;
    color: var(--text-muted);
}
/* ================= FOOTER DESIGN ================= */
.site-footer {
    background-color: #151515; /* Sehr dunkles Grau */
    color: #aaaaaa;
    padding-top: 60px;
    margin-top: 50px;
    border-top: 3px solid #00e676; /* Grüner Akzent-Strich oben */
    font-size: 14px;
}

.footer-heading {
    color: #ffffff;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Links Styling */
.footer-links {
    list-style: none;
    padding: 0;
}
.footer-links li {
    margin-bottom: 10px;
}
.footer-links a {
    color: #aaaaaa;
    text-decoration: none;
    transition: 0.3s;
}
.footer-links a:hover {
    color: #00e676; /* Grün beim Drüberfahren */
    padding-left: 5px; /* Kleiner Ruck nach rechts */
}

/* Specs Liste */
.footer-specs {
    list-style: none;
    padding: 0;
}
.footer-specs li {
    margin-bottom: 12px;
    color: #ccc;
    display: flex;
    align-items: center;
}
.footer-specs i {
    color: #00e676;
    width: 25px;
    font-size: 16px;
}

/* Social Icons */
.social-icons a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 35px;
    height: 35px;
    background: #2a2a2a;
    color: #fff;
    border-radius: 50%; /* Rund */
    margin-right: 10px;
    text-decoration: none;
    transition: 0.3s;
}
.social-icons a:hover {
    background: #00e676;
    color: #000;
    transform: translateY(-3px);
}

div.sidebar-links, 
    div.sidebar-specs {
        list-style-type: none !important;
        padding-left: 0 !important;
        margin-left: 0 !important;
    }

    /* 3. Links reparieren (weg mit dem Standard-Blau) */
    div.sidebar-links a {
        color: #bbbbbb !important;
        text-decoration: none !important;
        font-size: 15px;
        transition: 0.3s;
        display: block;
        margin-bottom: 8px;
        margin-left: 10px;
    }

    /* Hover Effekt (gold) */
    div.sidebar-links a:hover {
        color: #f7931a !important;
        padding-left: 8px;
    }

/* Untere Leiste */
.footer-bottom {
    background-color: #0a0a0a; /* Fast Schwarz */
    padding: 20px 0;
    margin-top: 40px;
    border-top: 1px solid #222;
}
/* 1-4 BACK TO TOP BUTTON */

#btn-back-to-top {
  position: fixed;
  bottom: 140px;
  right: 20px;
  display: none;
}
#btn-back-to-top button:hover {
    background-color: #73aa33;
}
.gokby-bg-dark {
background: #1a1d20;
}