* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;

    background:
        radial-gradient(
            circle at 80% 20%,
            rgba(255, 75, 0, 0.07),
            transparent 30%
        ),
        #080909;

    color: #eeeeee;

    font-family:
        Tahoma,
        Arial,
        sans-serif;
}


/* ==========================================================================
   NAVBAR
   ========================================================================== */

.forum-navbar {
    height: 75px;

    border-bottom:
        1px solid rgba(255,255,255,0.08);

    background:
        rgba(8,9,9,0.94);

    backdrop-filter: blur(15px);

    position: sticky;
    top: 0;

    z-index: 100;
}


.forum-nav-inner {
    max-width: 1240px;

    height: 100%;

    margin: auto;
    padding: 0 25px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}


.forum-logo {
    color: white;

    text-decoration: none;

    font-size: 18px;
    font-weight: 900;

    letter-spacing: -1px;
}


.forum-logo span {
    color: #ff4b00;
}


.forum-nav-links {
    display: flex;

    align-items: center;

    gap: 32px;
}


.forum-nav-links a {
    color: #777;

    text-decoration: none;

    font-size: 11px;

    transition: 0.25s;

    position: relative;
}


.forum-nav-links a:hover,
.forum-nav-links a.active {
    color: white;
}


.forum-nav-links a.active::after {
    content: "";

    position: absolute;

    right: 0;
    left: 0;

    bottom: -29px;

    height: 2px;

    background: #ff4b00;
}


/* ==========================================================================
   CONTAINER
   ========================================================================== */

.forum-container {
    max-width: 1240px;

    margin: auto;

    padding:
        70px 25px
        100px;
}


/* ==========================================================================
   HERO
   ========================================================================== */

.forum-hero {
    min-height: 270px;

    padding: 55px;

    border:
        1px solid rgba(255,255,255,0.07);

    background:

        radial-gradient(
            circle at 80% 50%,
            rgba(255,75,0,0.15),
            transparent 30%
        ),

        linear-gradient(
            120deg,
            #111,
            #0b0c0c
        );

    display: flex;

    align-items: center;

    margin-bottom: 35px;
}


.forum-label {
    color: #ff4b00;

    font-size: 9px;

    font-weight: bold;

    letter-spacing: 3px;
}


.forum-hero h1 {
    margin-top: 18px;

    font-size: 42px;

    letter-spacing: -2px;
}


.forum-hero h1 span {
    color: #ff4b00;
}


.forum-hero p {
    margin-top: 15px;

    color: #777;

    font-size: 12px;

    line-height: 2;
}


/* ==========================================================================
   SUPPORT / ERROR REPORT
   ========================================================================== */

.forum-support-card {
    width: 100%;

    min-height: 145px;

    margin-bottom: 35px;

    padding: 28px 30px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 35px;

    background:

        radial-gradient(
            circle at 85% 50%,
            rgba(255,75,0,0.10),
            transparent 45%
        ),

        #0d0e0e;

    border:
        1px solid rgba(255,255,255,0.07);

    position: relative;

    overflow: hidden;

    transition:
        border-color 0.25s ease,
        transform 0.25s ease,
        background 0.25s ease;
}


.forum-support-card::before {
    content: "";

    position: absolute;

    top: 0;
    right: 0;

    width: 3px;
    height: 100%;

    background: #ff4b00;

    opacity: 0.8;
}


.forum-support-card:hover {
    border-color:
        rgba(255,75,0,0.35);

    transform: translateY(-3px);

    background:

        radial-gradient(
            circle at 85% 50%,
            rgba(255,75,0,0.14),
            transparent 45%
        ),

        #0e0f0f;
}


/* SUPPORT CONTENT */

.forum-support-content {
    flex: 1;

    min-width: 0;
}


.forum-support-label {
    display: block;

    margin-bottom: 8px;

    color: #ff4b00;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 2.5px;
}


.forum-support-content h2 {
    margin: 0;

    color: #eeeeee;

    font-size: 22px;

    font-weight: 800;

    line-height: 1.6;
}


.forum-support-content h2 span {
    color: #ff4b00;
}


.forum-support-content p {
    max-width: 720px;

    margin-top: 7px;

    color: #777;

    font-size: 11px;

    line-height: 2;
}


/* SUPPORT ACTIONS */

.forum-support-actions {
    display: flex;

    align-items: center;

    gap: 9px;

    flex-shrink: 0;
}


.forum-support-button {
    min-height: 42px;

    padding: 0 18px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    background: #ff4b00;

    border:
        1px solid #ff4b00;

    color: white;

    text-decoration: none;

    font-family: inherit;

    font-size: 10px;

    font-weight: bold;

    white-space: nowrap;

    transition:
        background 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease;
}


.forum-support-button:hover {
    background: #ff5d18;

    border-color: #ff5d18;

    transform: translateY(-2px);
}


.forum-support-button.secondary {
    background: transparent;

    border-color: #292b2b;

    color: #777;
}


.forum-support-button.secondary:hover {
    background: #111313;

    border-color: #444;

    color: white;
}


/* ==========================================================================
   CATEGORIES
   ========================================================================== */

.categories {
    display: flex;

    gap: 8px;

    margin-bottom: 25px;

    flex-wrap: wrap;
}


.category-btn {
    background: #101111;

    color: #777;

    border:
        1px solid #242525;

    padding:
        12px 18px;

    font-family: inherit;

    font-size: 10px;

    cursor: pointer;

    transition: 0.25s;
}


.category-btn:hover {
    color: white;

    border-color: #444;
}


.category-btn.active {
    color: white;

    background: #ff4b00;

    border-color: #ff4b00;
}


/* ==========================================================================
   ARTICLES
   ========================================================================== */

.articles {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 18px;
}


.article-card {
    min-height: 420px;

    border:
        1px solid rgba(255,255,255,0.07);

    background: #0d0e0e;

    transition: 0.3s;

    display: flex;

    flex-direction: column;
}


.article-card:hover {
    transform: translateY(-5px);

    border-color:
        rgba(255,75,0,0.4);
}


/* IMAGE */

.article-image {
    height: 190px;

    position: relative;

    overflow: hidden;

    background:

        radial-gradient(
            circle at 50% 50%,
            rgba(255,75,0,0.25),
            transparent 40%
        ),

        #101111;
}


.article-image img {
    width: 100%;

    height: 100%;

    object-fit: cover;

    opacity: 0.65;

    transition: 0.4s;
}


.article-card:hover
.article-image img {
    transform: scale(1.05);

    opacity: 0.8;
}


.article-image-number {
    position: absolute;

    top: 15px;
    left: 15px;

    color: #777;

    font-size: 10px;
}


/* CONTENT */

.article-content {
    padding: 25px;

    display: flex;

    flex-direction: column;

    flex: 1;
}


.article-category {
    color: #ff4b00;

    font-size: 9px;

    font-weight: bold;

    letter-spacing: 1px;

    margin-bottom: 14px;
}


.article-content h2 {
    font-size: 20px;

    line-height: 1.5;

    margin-bottom: 12px;
}


.article-content p {
    color: #777;

    font-size: 11px;

    line-height: 2;

    flex: 1;
}


/* BOTTOM */

.article-bottom {
    margin-top: 25px;

    padding-top: 18px;

    border-top:
        1px solid #1d1e1e;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 10px;
}


.article-date {
    color: #555;

    font-size: 9px;
}


.article-link {
    color: white;

    text-decoration: none;

    font-size: 10px;

    font-weight: bold;

    transition: 0.25s;
}


.article-link:hover {
    color: #ff4b00;
}


/* ==========================================================================
   EMPTY
   ========================================================================== */

.empty-message {
    display: none;

    padding: 50px;

    text-align: center;

    color: #555;

    border:
        1px solid #1b1c1c;
}


/* ==========================================================================
   FOOTER
   ========================================================================== */

.forum-footer {
    border-top:
        1px solid rgba(255,255,255,0.06);

    padding: 30px 25px;

    color: #444;

    font-size: 10px;
}


.forum-footer > div {
    max-width: 1240px;

    margin: auto;

    display: flex;

    justify-content: space-between;
}


.forum-footer strong {
    color: #777;
}


/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 900px) {

    .articles {
        grid-template-columns: 1fr 1fr;
    }


    .forum-support-card {
        gap: 25px;
    }

}


@media (max-width: 700px) {

    .forum-support-card {
        display: block;

        padding: 25px;
    }


    .forum-support-actions {
        margin-top: 20px;

        display: grid;

        grid-template-columns: 1fr 1fr;
    }


    .forum-support-button {
        width: 100%;
    }

}


@media (max-width: 650px) {

    .forum-nav-links {
        gap: 12px;
    }


    .forum-nav-links a:nth-child(2) {
        display: none;
    }


    .forum-hero {
        padding: 35px 25px;
    }


    .forum-hero h1 {
        font-size: 32px;
    }


    .articles {
        grid-template-columns: 1fr;
    }


    .forum-footer > div {
        flex-direction: column;

        gap: 10px;
    }

}


@media (max-width: 480px) {

    .forum-support-actions {
        grid-template-columns: 1fr;
    }


    .forum-support-content h2 {
        font-size: 19px;
    }

}