/* =========================
GLOBAL SITE STYLING
========================= */

body {
    background: #0f1115;
    color: #e6e6e6;
    font-family: 'Inter', 'Segoe UI', sans-serif;
}

.container {
    max-width: 1200px;
}

/* Subtle grid texture (industrial feel) */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    background-image: linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

/* =========================
TYPOGRAPHY
========================= */

h1, h2, h3, h4 {
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

h1 {
    font-size: 2.5rem;
    color: #00d084;
}

h2::after, h3::after {
    content: "";
    display: block;
    width: 80px;
    height: 3px;
    margin-top: 8px;
    background: linear-gradient(90deg, #00d084, #ffb800);
}

/* =========================
LINKS
========================= */

a {
    color: #00d084;
    text-decoration: none;
    transition: all 0.2s ease;
}

a:hover {
    color: #ffb800;
}

/* =========================
NAVBAR
========================= */

.navbar {
    background: #1a1d23 !important;
    border-bottom: 2px solid #00d084;
}

.navbar .nav-link {
    color: #e6e6e6 !important;
    font-weight: 600;
}

.navbar .nav-link:hover {
    color: #00d084 !important;
}

/* =========================
CARDS / CONTENT BLOCKS
========================= */

.card {
    background: #1a1d23;
    border: 1px solid #2a2f38;
    border-radius: 12px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 208, 132, 0.2);
}

.card-title {
    color: #00d084;
}

/* =========================
BUTTONS
========================= */

.btn {
    border-radius: 8px;
    font-weight: 700;
}

.btn-success {
    background: #00d084;
    border: none;
    color: #000;
}

.btn-success:hover {
    background: #00ff9c;
    box-shadow: 0 0 15px rgba(0, 208, 132, 0.6);
}

.btn-primary {
    background: #ffb800;
    border: none;
    color: #000;
}

.btn-primary:hover {
    background: #ffc933;
}

/* =========================
FORMS
========================= */

.form-control {
    background: #0f1115;
    border: 1px solid #2a2f38;
    color: #fff;
}

.form-control:focus {
    border-color: #00d084;
    box-shadow: 0 0 0 0.2rem rgba(0, 208, 132, 0.25);
}

/* =========================
ACCORDIONS (ACCOUNT PAGE)
========================= */

.accordion-button {
    background: #1a1d23;
    color: #fff;
}

.accordion-button:not(.collapsed) {
    background: #00d084;
    color: #000;
}

.accordion-body {
    background: #121418;
}

/* =========================
IMAGES
========================= */

img {
    border-radius: 8px;
    transition: transform 0.3s ease;
}

img:hover {
    transform: scale(1.02);
}

/* =========================
CODE BLOCKS
========================= */

pre {
    background: #000;
    color: #00ff9c;
    padding: 15px;
    border-radius: 8px;
}

/* =========================
BREADCRUMBS
========================= */

.breadcrumb {
    background: #1a1d23;
    border-radius: 10px;
}

/* =========================
PAGINATION
========================= */

.page-link {
    background: #1a1d23;
    color: #00d084;
    border: none;
}

.page-link:hover {
    background: #00d084;
    color: #000;
}

/* =========================
COOKIE BANNER
========================= */

.cookie-banner {
    background: #1a1d23;
    border-top: 2px solid #00d084;
}

/* =========================
EMBEDDED VIDEO
========================= */

iframe {
    width: 100%;
    height: 450px;
    border-radius: 10px;
}

/* =========================
RESPONSIVE IMPROVEMENTS
========================= */

@media (max-width: 768px) {
    h1 {
        font-size: 1.8rem;
    }

    .card {
        margin-bottom: 20px;
    }
}