/* ======================================================
   SUPPORT PAGE
====================================================== */

.support-page {
    max-width: 1200px;
    margin: 120px auto 80px;
    padding: 0 20px;
}

/* ======================================================
   HEADER
====================================================== */

.support-header {
    margin-bottom: 60px;
}

.support-header h1 {
    color: #00c8ff;
    font-size: 2.8rem;
    margin-bottom: 15px;
    text-shadow: 0 0 12px rgba(0, 200, 255, .45);
    position: relative;
}

.support-header h1::after {
    content: "";
    display: block;
    width: 70px;
    height: 4px;
    margin-top: 10px;

    background: linear-gradient(90deg,
            #00c8ff,
            #0070ff);

    border-radius: 20px;

    box-shadow:
        0 0 10px rgba(0, 200, 255, .6),
        0 0 20px rgba(0, 200, 255, .2);
}

.support-header p {
    max-width: 700px;
    color: #cfcfcf;
    font-size: 1.05rem;
    line-height: 1.8;
}

/* ======================================================
   ANNOUNCEMENT CARD
====================================================== */

.announcement-card {

    display: flex;
    align-items: center;
    gap: 30px;

    margin-bottom: 60px;

    padding: 30px;

    background:
        rgba(255, 255, 255, .03);

    border:
        1px solid rgba(0, 200, 255, .18);

    border-radius: 16px;

    transition: .35s;

}

.announcement-card:hover {

    transform: translateY(-4px);

    border-color: #00c8ff;

    box-shadow:
        0 0 25px rgba(0, 200, 255, .18);

}

.card-icon {

    width: 80px;
    height: 80px;

    display: flex;
    justify-content: center;
    align-items: center;

    border-radius: 50%;

    background:
        radial-gradient(circle,
            rgba(0, 200, 255, .25),
            rgba(0, 200, 255, .05));

    color: #00c8ff;

    font-size: 2rem;

    box-shadow:
        0 0 18px rgba(0, 200, 255, .25);

}

.card-content {
    flex: 1;
}

.card-content h2 {

    color: #00c8ff;

    margin-bottom: 12px;

    font-size: 1.8rem;

}

.card-content p {

    color: #c8c8c8;

    line-height: 1.8;

    margin-bottom: 20px;

}

.card-content a {

    display: inline-flex;
    align-items: center;
    gap: 8px;

    color: #00c8ff;

    text-decoration: none;

    font-weight: 600;

    transition: .3s;

}

.card-content a:hover {

    color: #00e1ff;

    transform: translateX(4px);

}

/* ======================================================
   KNOWN ISSUES
====================================================== */

.known-issues {

    margin-bottom: 70px;

}

.known-issues h2 {

    color: #00c8ff;

    margin-bottom: 30px;

    font-size: 2rem;

    text-shadow:
        0 0 10px rgba(0, 200, 255, .4);

}

.issues-grid {

    display: grid;

    grid-template-columns:
        repeat(auto-fit, minmax(280px, 1fr));

    gap: 25px;

}

.issue-card {
    padding: 25px;
    background:
        rgba(255, 255, 255, .03);
    border:
        1px solid rgba(0, 200, 255, .15);
    border-radius: 14px;
    transition: .3s;
}

.issue-card:hover {

    transform: translateY(-5px);

    border-color: #00c8ff;

    box-shadow:
        0 0 25px rgba(0, 200, 255, .18);

}

.issue-card h3 {

    color: white;

    margin: 18px 0 12px;

    font-size: 1.3rem;

}

.issue-card p {

    color: #bdbdbd;

    line-height: 1.7;

}

/* ======================================================
   STATUS BADGES
====================================================== */

.status {

    display: inline-block;

    padding: 7px 15px;

    border-radius: 50px;

    font-size: .85rem;

    font-weight: 600;

    letter-spacing: .4px;

}

.status.operational {

    background:
        rgba(45, 210, 120, .15);

    color: #35ff9a;

    border:
        1px solid rgba(45, 210, 120, .3);

}

.status.investigating {

    background:
        rgba(255, 180, 0, .15);

    color: #ffc83d;

    border:
        1px solid rgba(255, 180, 0, .3);

}

.status.progress {

    background:
        rgba(0, 200, 255, .15);

    color: #00d7ff;

    border:
        1px solid rgba(0, 200, 255, .3);

}

/* ======================================================
   MOBILE
====================================================== */

@media(max-width:768px) {

    .support-page {

        margin-top: 100px;

        padding: 0 18px;

    }

    .support-header {

        text-align: center;

    }

    .support-header h1::after {

        margin:
            10px auto 0;

    }

    .support-header p {

        max-width: 100%;

    }

    .announcement-card {

        flex-direction: column;

        text-align: center;

    }

    .card-content a {

        justify-content: center;

    }

}

/* ======================================================
   SUPPORT CATEGORIES
====================================================== */

.support-categories {
    margin-bottom: 70px;
}

.support-categories h2 {
    color: #00c8ff;
    font-size: 2rem;
    margin-bottom: 30px;
    text-shadow: 0 0 10px rgba(0, 200, 255, .4);
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
}

.category-card {
    position: relative;

    padding: 35px;

    background: rgba(255, 255, 255, .03);

    border: 1px solid rgba(0, 200, 255, .15);

    border-radius: 16px;

    cursor: pointer;

    transition: all .35s ease;
}

.category-card:hover {
    transform: translateY(-6px);

    border-color: #00c8ff;

    box-shadow:
        0 0 30px rgba(0, 200, 255, .22);
}

.category-card.active {

    border-color: #00c8ff;

    background: rgba(0, 200, 255, .06);

    box-shadow:
        0 0 25px rgba(0, 200, 255, .28);

}

.category-card i {

    font-size: 2.5rem;

    color: #00c8ff;

    margin-bottom: 20px;

}

.category-card h3 {

    color: white;

    margin-bottom: 12px;

    font-size: 1.45rem;

}

.category-card p {

    color: #bdbdbd;

    line-height: 1.7;

}

/* ======================================================
   SUPPORT FORM
====================================================== */

.support-form-section {

    margin-bottom: 70px;

}

.support-form-section h2 {

    color: #00c8ff;

    margin-bottom: 30px;

    font-size: 2rem;

    text-shadow:
        0 0 10px rgba(0, 200, 255, .35);

}

#supportForm {

    background: rgba(255, 255, 255, .03);

    border: 1px solid rgba(0, 200, 255, .15);

    border-radius: 18px;

    padding: 40px;

}

/* ======================================================
   FORM GROUPS
====================================================== */

.form-group {

    margin-bottom: 25px;

}

.form-group label {

    display: block;

    color: #00c8ff;

    font-weight: 600;

    margin-bottom: 10px;

}

.form-group input,
.form-group textarea,
.form-group select {

    width: 100%;

    padding: 14px 16px;

    background: rgba(255, 255, 255, .04);

    border: 1px solid rgba(0, 200, 255, .18);

    border-radius: 10px;

    color: white;

    font-size: 1rem;

    transition: .25s;

}

.form-group textarea {

    resize: vertical;

    min-height: 180px;

}

/* ======================================================
   PLACEHOLDER
====================================================== */

.form-group input::placeholder,
.form-group textarea::placeholder {

    color: rgba(255, 255, 255, .45);

}

/* ======================================================
   FOCUS
====================================================== */

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {

    outline: none;

    border-color: #00c8ff;

    background: rgba(255, 255, 255, .06);

    box-shadow:
        0 0 18px rgba(0, 200, 255, .18);

}

/* ======================================================
   SELECT
====================================================== */

.form-group select {

    cursor: pointer;

}

/* ======================================================
   SUBMIT BUTTON
====================================================== */

#supportForm button {

    margin-top: 10px;

    padding: 15px 40px;

    background:
        linear-gradient(90deg,
            #00c8ff,
            #0077ff);

    border: none;

    border-radius: 10px;

    color: white;

    font-size: 1rem;

    font-weight: 600;

    cursor: pointer;

    transition: .3s;

    box-shadow:
        0 0 20px rgba(0, 200, 255, .28);

}

#supportForm button:hover {

    transform: translateY(-3px);

    box-shadow:
        0 0 30px rgba(0, 200, 255, .5);

}

/* ======================================================
   OPTIONAL FIELD
====================================================== */

.form-group.optional {

    opacity: .95;

}

/* ======================================================
   FORM ROW
====================================================== */

.form-row {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 20px;

}

/* ======================================================
   REQUIRED STAR
====================================================== */

.required {

    color: #ff6767;

}

/* ======================================================
   MOBILE
====================================================== */

@media(max-width:768px) {

    .category-grid {

        grid-template-columns: 1fr;

    }

    .category-card {

        padding: 28px;

    }

    #supportForm {

        padding: 25px;

    }

    .form-row {

        grid-template-columns: 1fr;

    }

    #supportForm button {

        width: 100%;

    }

}

/* ======================================================
   BAN APPEAL RULES
====================================================== */

.ban-rules {
    margin-bottom: 70px;
}

.ban-rules h2 {
    color: #00c8ff;
    font-size: 2rem;
    margin-bottom: 25px;
    text-shadow: 0 0 10px rgba(0, 200, 255, .4);
}

.ban-rules ul {
    list-style: none;
    padding: 0;
    margin: 0;

    background: rgba(255, 255, 255, .03);

    border: 1px solid rgba(0, 200, 255, .15);

    border-radius: 16px;

    padding: 30px;
}

.ban-rules ul li {

    position: relative;

    padding-left: 28px;

    margin-bottom: 16px;

    color: #d7d7d7;

    line-height: 1.8;

}

.ban-rules ul li:last-child {
    margin-bottom: 0;
}

.ban-rules ul li::before {

    content: "✓";

    position: absolute;

    left: 0;

    color: #00c8ff;

    font-weight: bold;

    text-shadow: 0 0 10px rgba(0, 200, 255, .6);

}

/* ======================================================
   FAQ
====================================================== */

.faq-section {
    margin-bottom: 80px;
}

.faq-section h2 {

    color: #00c8ff;

    font-size: 2rem;

    margin-bottom: 30px;

    text-shadow: 0 0 10px rgba(0, 200, 255, .4);

}

.faq-item {

    background: rgba(255, 255, 255, .03);

    border: 1px solid rgba(0, 200, 255, .15);

    border-radius: 14px;

    margin-bottom: 18px;

    overflow: hidden;

    transition: .3s;

}

.faq-item:hover {

    border-color: #00c8ff;

    box-shadow: 0 0 20px rgba(0, 200, 255, .18);

}

.faq-question {

    width: 100%;

    padding: 20px 25px;

    background: transparent;

    border: none;

    color: white;

    font-size: 1.05rem;

    font-weight: 600;

    cursor: pointer;

    display: flex;

    justify-content: space-between;

    align-items: center;

    transition: .3s;

}

.faq-question:hover {

    color: #00c8ff;

}

.faq-question i {

    transition: .3s;

    color: #00c8ff;

}

.faq-item.active .faq-question i {

    transform: rotate(180deg);

}

/* ======================================================
   FAQ ANSWER
====================================================== */

.faq-answer {

    max-height: 0;

    overflow: hidden;

    transition:
        max-height .35s ease,
        padding .35s ease;

    padding: 0 25px;

}

.faq-item.active .faq-answer {

    max-height: 250px;

    padding: 0 25px 25px;

}

.faq-answer p {

    color: #bdbdbd;

    line-height: 1.8;

}

/* ======================================================
   SMOOTH SECTION TRANSITION
====================================================== */

.support-header,
.announcement-card,
.known-issues,
.support-categories,
.support-form-section,
.ban-rules,
.faq-section {

    animation: fadeUp .7s ease both;

}

.support-header {
    animation-delay: .05s;
}

.announcement-card {
    animation-delay: .1s;
}

.known-issues {
    animation-delay: .15s;
}

.support-categories {
    animation-delay: .2s;
}

.support-form-section {
    animation-delay: .25s;
}

.ban-rules {
    animation-delay: .3s;
}

.faq-section {
    animation-delay: .35s;
}

/* ======================================================
   FADE ANIMATION
====================================================== */

@keyframes fadeUp {

    from {

        opacity: 0;

        transform: translateY(30px);

    }

    to {

        opacity: 1;

        transform: translateY(0);

    }

}

/* ======================================================
   SELECTION
====================================================== */

::selection {

    background: rgba(0, 200, 255, .3);

    color: white;

}

/* ======================================================
   MOBILE
====================================================== */

@media (max-width:768px) {

    .ban-rules ul {

        padding: 22px;

    }

    .faq-question {

        padding: 18px;

        font-size: 1rem;

    }

    .faq-item.active .faq-answer {

        padding: 0 18px 18px;

    }

    .faq-answer {

        padding: 0 18px;

    }

}