/* ============================================================
   ArakNet 2.0 — Main Style Sheet
   PART 1/4
   ROOT / GLOBAL / HEADER / LOGIN / SPLASH
   ============================================================ */

:root {
    --bg: #020902;
    --panel: rgba(0, 24, 0, 0.88);
    --panel2: rgba(0, 40, 0, 0.72);

    --green: #39ff14;
    --green-soft: #99ff99;
    --green-dim: #1ea81e;

    --text: #d9ffd9;
    --muted: #7ecf7e;

    --border: rgba(57,255,20,0.28);

    --danger: #ff5d5d;
    --warning: #ffbf42;
}

* {
    box-sizing: border-box;
}

html,
body {
    min-height: 100%;
}

body,
.arak-body {
    margin: 0;

    background:
        linear-gradient(
            rgba(0,0,0,0.82),
            rgba(0,0,0,0.92)
        ),
        url('../img/araknet-chalkboard-bg.png');

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;

    color: var(--text);

    font-family:
        "Segoe UI",
        Tahoma,
        Geneva,
        Verdana,
        sans-serif;
}

body.arak-body::after {
    content: "";

    position: fixed;
    inset: 0;

    pointer-events: none;

    background:
        radial-gradient(
            circle at top,
            rgba(57,255,20,0.08),
            transparent 40%
        );

    z-index: -1;
}

body::before {
    content: "";

    position: fixed;
    inset: 0;

    pointer-events: none;

    background:
        repeating-linear-gradient(
            to bottom,
            rgba(255,255,255,0.03),
            rgba(255,255,255,0.03) 1px,
            transparent 1px,
            transparent 4px
        );

    opacity: 0.18;

    z-index: 0;
}

.site-header,
.arak-main,
.rof-footer {
    position: relative;
    z-index: 1;
}

a {
    color: var(--green);
    text-decoration: none;
}

a:hover {
    color: #fff;
}

img {
    max-width: 100%;
}

main,
.arak-main {
    width: min(1180px, calc(100% - 28px));
    margin: 28px auto;
}
/* ============================================================
   HEADER
   ============================================================ */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;

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

    gap: 20px;

    padding: 14px 24px;

    background:
        linear-gradient(
            180deg,
            rgba(0,20,0,0.96),
            rgba(0,10,0,0.92)
        );

    border-bottom: 1px solid rgba(57,255,20,0.18);

    backdrop-filter: blur(10px);

    box-shadow:
        0 0 18px rgba(57,255,20,0.08);
}

.site-brand {
    display: flex;
    align-items: center;

    flex-shrink: 0;
}

.brand-link-wrap {
    display: flex;
    align-items: center;
    gap: 14px;

    color: inherit;
}

.site-logo {
    width: 58px;
    height: 58px;

    object-fit: contain;

    flex-shrink: 0;

    display: block;

    filter:
        drop-shadow(0 0 10px rgba(57,255,20,0.35));
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-title {
    color: var(--green);

    font-size: 1.35rem;
    font-weight: bold;

    letter-spacing: 1px;

    text-shadow:
        0 0 10px rgba(57,255,20,0.45);
}

.brand-subtitle {
    color: var(--muted);

    font-size: 0.82rem;
    letter-spacing: 1px;
}

.site-nav {
    margin-left: auto;

    display: flex;
    flex-direction: column;
    align-items: flex-end;

    gap: 10px;
}

.nav-links {
    display: flex;
    align-items: center;
    justify-content: flex-end;

    gap: 12px;

    flex-wrap: wrap;
}

.logout-row {
    display: flex;
    justify-content: flex-end;

    width: 100%;
}

.logout-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;

    padding: 8px 14px;

    border-radius: 999px;

    border: 1px solid rgba(255,80,80,0.28);

    background: rgba(40,0,0,0.35);

    color: #ff9b9b;

    font-size: 0.88rem;
    font-weight: bold;

    transition: 0.18s ease;
}

.logout-link:hover {
    border-color: rgba(255,80,80,0.55);

    color: #fff;

    box-shadow:
        0 0 14px rgba(255,80,80,0.16);
}
.nav-links a {
    display: inline-flex;
    align-items: center;
    gap: 7px;

    padding: 10px 14px;

    border-radius: 999px;
    border: 1px solid rgba(57,255,20,0.18);

    background: rgba(0,35,0,0.28);
    color: var(--green-soft);

    transition: 0.18s ease;
}

.nav-links a:hover {
    border-color: rgba(57,255,20,0.55);
    color: #fff;
    box-shadow: 0 0 14px rgba(57,255,20,0.14);
}
/* ============================================================
   LOGIN PAGE
   ============================================================ */

.arak-login-body {
    display: flex;
    align-items: center;
    justify-content: center;

    min-height: 100vh;
}

.login-wrap {
    width: min(520px, calc(100% - 24px));
}

.login-card {
    background:
        linear-gradient(
            180deg,
            rgba(0,35,0,0.42),
            rgba(0,18,0,0.82)
        );

    border: 1px solid rgba(57,255,20,0.20);

    border-radius: 22px;

    padding: 34px;

    box-shadow:
        0 0 18px rgba(57,255,20,0.08),
        inset 0 0 40px rgba(57,255,20,0.02);

    text-align: center;
}

.login-card-wide {
    width: min(620px, 100%);
}

.login-logo {
    width: 120px;

    margin-bottom: 18px;

    filter:
        drop-shadow(0 0 14px rgba(57,255,20,0.35));
}

.login-card h1 {
    color: var(--green);

    margin-bottom: 10px;

    text-shadow:
        0 0 10px rgba(57,255,20,0.45);
}

.login-subtitle {
    color: var(--muted);

    margin-bottom: 26px;
}

.login-form {
    display: grid;
    gap: 16px;

    text-align: left;
}

.access-strip {
    margin-top: 24px;
    padding-top: 18px;

    border-top: 1px solid rgba(57,255,20,0.22);

    text-align: center;
}

.access-strip h2 {
    color: var(--green);
    font-size: 1.05rem;
    margin-bottom: 12px;
}

.access-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;

    margin-bottom: 12px;
}

.access-actions a {
    display: inline-flex;
    align-items: center;
    gap: 7px;

    padding: 9px 13px;

    border: 1px solid rgba(57,255,20,0.35);
    border-radius: 999px;

    background: rgba(0,35,0,0.45);

    color: var(--green-soft);

    font-size: 0.9rem;
    font-weight: bold;

    transition: 0.18s ease;
}

.access-actions a:hover {
    border-color: var(--green);
    color: #fff;

    box-shadow:
        0 0 14px rgba(57,255,20,0.18);
}

.access-strip p {
    color: var(--muted);
    font-size: 0.84rem;
    line-height: 1.5;
}

/* ============================================================
   SPLASH SCREEN
   ============================================================ */

.arak-splash-body {
    margin: 0;
    overflow: hidden;

    background: #000;

    color: var(--green);

    font-family: "Courier New", monospace;
}

#loader {
    position: fixed;
    inset: 0;

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

    background:
        radial-gradient(circle at center, #021b02 0%, #000 80%);
}

.loader-panel {
    text-align: center;
    position: relative;

    width: min(900px, 92vw);
}

.splash-logo {
    width: 180px;

    margin-bottom: 18px;

    filter:
        drop-shadow(0 0 14px rgba(57,255,20,0.6));
}

.title {
    color: var(--green);

    font-size: clamp(2rem, 6vw, 4.5rem);

    font-weight: bold;

    letter-spacing: 4px;

    text-shadow:
        0 0 10px rgba(57,255,20,0.8),
        0 0 25px rgba(57,255,20,0.4);
}

.title2 {
    color: var(--green-soft);

    font-size: clamp(1rem, 2vw, 1.4rem);

    margin-top: 8px;

    letter-spacing: 3px;
}
/* ============================================================
   ArakNet 2.0 — Main Style Sheet
   PART 2/4
   DASHBOARD / PANELS / ROSTER / LOGIN HISTORY
   ============================================================ */

/* ============================================================
   WELCOME STRIP
   ============================================================ */

.welcome-strip {
    display: flex;
    align-items: center;
    gap: 18px;

    margin-bottom: 24px;
    padding: 22px 24px;

    background:
        linear-gradient(
            180deg,
            rgba(0,35,0,0.42),
            rgba(0,18,0,0.82)
        );

    border: 1px solid rgba(57,255,20,0.18);
    border-radius: 22px;

    box-shadow:
        0 0 18px rgba(57,255,20,0.08),
        inset 0 0 40px rgba(57,255,20,0.02);
}

.welcome-avatar-small {
    width: 78px;
    height: 78px;

    border-radius: 50%;

    object-fit: cover;

    border: 2px solid rgba(57,255,20,0.35);

    box-shadow:
        0 0 16px rgba(57,255,20,0.18);
}

.welcome-strip h1 {
    margin: 0 0 6px;

    color: var(--green);

    font-size: clamp(1.4rem, 3vw, 2rem);

    text-shadow:
        0 0 10px rgba(57,255,20,0.35);
}

.welcome-strip p {
    margin: 0;
    color: var(--muted);
}

/* ============================================================
   DASHBOARD LAYOUT
   ============================================================ */

.dashboard-layout {
    display: grid;
    grid-template-columns: minmax(0, 3fr) minmax(260px, 1fr);

    gap: 24px;

    align-items: start;
}

/* ============================================================
   PANELS
   ============================================================ */

.panel {
    background:
        linear-gradient(
            180deg,
            rgba(0,35,0,0.42),
            rgba(0,18,0,0.82)
        );

    border: 1px solid rgba(57,255,20,0.18);
    border-radius: 22px;

    padding: 24px;

    box-shadow:
        0 0 18px rgba(57,255,20,0.08),
        inset 0 0 40px rgba(57,255,20,0.02);
}

.panel-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;

    margin-bottom: 20px;
    padding-bottom: 14px;

    border-bottom: 1px solid rgba(57,255,20,0.12);
}

.panel-heading h2 {
    margin: 0;

    color: var(--green);

    font-size: 1.15rem;

    display: flex;
    align-items: center;
    gap: 10px;
}

.panel-heading span {
    color: var(--muted);
    font-size: 0.92rem;
}

.muted {
    color: var(--muted);
}

/* ============================================================
   MEMBER GRID
   ============================================================ */

.member-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));

    gap: 16px;
}

.member-card {
    display: flex;
    align-items: center;
    gap: 16px;

    padding: 16px;

    border-radius: 18px;

    background:
        linear-gradient(
            180deg,
            rgba(0,40,0,0.30),
            rgba(0,15,0,0.72)
        );

    border: 1px solid rgba(57,255,20,0.14);

    transition:
        transform 0.18s ease,
        border-color 0.18s ease,
        box-shadow 0.18s ease;
}

.member-card:hover {
    transform: translateY(-3px);

    border-color: rgba(57,255,20,0.45);

    box-shadow:
        0 0 18px rgba(57,255,20,0.12);
}

.member-card img {
    width: 72px;
    height: 72px;

    border-radius: 50%;

    object-fit: cover;

    border: 2px solid rgba(57,255,20,0.25);

    background: #000;

    flex-shrink: 0;
}

.member-info {
    min-width: 0;
}

.member-info h3 {
    margin: 0 0 6px;

    color: var(--green-soft);

    font-size: 1rem;

    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.member-info p {
    margin: 0 0 6px;

    color: #fff;

    font-size: 0.92rem;
}

.member-info span {
    display: inline-flex;
    align-items: center;

    padding: 5px 10px;

    border-radius: 999px;

    background: rgba(57,255,20,0.08);

    border: 1px solid rgba(57,255,20,0.18);

    color: var(--green);

    font-size: 0.78rem;
    font-weight: bold;

    letter-spacing: 0.5px;
}

/* ============================================================
   LOGIN HISTORY SIDEBAR
   ============================================================ */

.login-sidebar {
    position: sticky;
    top: 92px;
}

.login-box h2 {
    margin-top: 0;
    margin-bottom: 18px;

    color: var(--green);

    display: flex;
    align-items: center;
    gap: 10px;
}

.login-line {
    display: grid;
    gap: 4px;

    padding: 12px 0;

    border-bottom: 1px solid rgba(57,255,20,0.10);
}

.login-line:last-child {
    border-bottom: none;
}

.login-line strong {
    color: var(--green-soft);
}

.login-line span {
    color: #fff;
    font-size: 0.9rem;
}

.login-line small {
    color: var(--muted);
    font-size: 0.78rem;
}

/* ============================================================
   ALERTS
   ============================================================ */

.alert,
.profile-alert {
    padding: 14px 16px;

    border-radius: 14px;

    margin-bottom: 18px;

    font-size: 0.92rem;
}

.alert-danger,
.profile-alert.error {
    background: rgba(255,60,60,0.10);

    border: 1px solid rgba(255,60,60,0.22);

    color: #ffb3b3;
}

.profile-alert.success {
    background: rgba(57,255,20,0.10);

    border: 1px solid rgba(57,255,20,0.22);

    color: #c9ffc9;
}

/* ============================================================
   BUTTONS
   ============================================================ */

.btn-neon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    padding: 11px 18px;

    border: 1px solid rgba(57,255,20,0.28);
    border-radius: 12px;

    background:
        linear-gradient(
            180deg,
            rgba(0,45,0,0.85),
            rgba(0,18,0,0.95)
        );

    color: var(--green-soft);

    font-weight: bold;

    transition:
        transform 0.18s ease,
        border-color 0.18s ease,
        box-shadow 0.18s ease;
}

.btn-neon:hover {
    transform: translateY(-2px);

    border-color: rgba(57,255,20,0.65);

    color: #fff;

    box-shadow:
        0 0 18px rgba(57,255,20,0.14);
}

.w-100 {
    width: 100%;
}

.mt-2 {
    margin-top: 12px;
}

.mt-3 {
    margin-top: 18px;
}

.mt-4 {
    margin-top: 24px;
}
/* ============================================================
   ArakNet 2.0 — Main Style Sheet
   PART 3/4
   PROFILE / EDIT PROFILE / APPLICANTS / ONELINER
   ============================================================ */

/* ============================================================
   PROFILE PAGE
   ============================================================ */

.profile-view {
    display: grid;
    gap: 24px;
}

.profile-card-main {
    display: flex;
    align-items: center;
    gap: 28px;

    padding: 28px;

    background:
        linear-gradient(
            180deg,
            rgba(0,35,0,0.42),
            rgba(0,18,0,0.82)
        );

    border: 1px solid rgba(57,255,20,0.18);
    border-radius: 24px;

    box-shadow:
        0 0 18px rgba(57,255,20,0.08),
        inset 0 0 40px rgba(57,255,20,0.02);
}

.profile-avatar-wrap {
    flex-shrink: 0;
}

.profile-avatar-xl {
    width: 180px;
    height: 180px;

    border-radius: 50%;

    object-fit: cover;

    background: #000;

    border: 3px solid rgba(57,255,20,0.28);

    box-shadow:
        0 0 24px rgba(57,255,20,0.18);
}

.profile-title-block h1 {
    margin: 0 0 8px;

    color: var(--green);

    font-size: clamp(1.8rem, 4vw, 2.6rem);

    text-shadow:
        0 0 10px rgba(57,255,20,0.35);
}

.profile-subtitle {
    margin: 0 0 14px;

    color: #fff;

    font-size: 1.1rem;
}

.node-badge {
    display: inline-flex;
    align-items: center;

    padding: 7px 14px;

    border-radius: 999px;

    background: rgba(57,255,20,0.10);

    border: 1px solid rgba(57,255,20,0.25);

    color: var(--green);

    font-size: 0.88rem;
    font-weight: bold;

    letter-spacing: 1px;
}

.profile-grid-layout {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 24px;
}

.detail-list {
    display: grid;
    gap: 14px;
}

.detail-list div {
    display: flex;
    flex-direction: column;
    gap: 5px;

    padding-bottom: 12px;

    border-bottom: 1px solid rgba(57,255,20,0.08);
}

.detail-list div:last-child {
    border-bottom: none;
}

.detail-list strong {
    color: var(--green-soft);

    font-size: 0.84rem;

    text-transform: uppercase;
    letter-spacing: 1px;
}

.detail-list span,
.detail-list a {
    color: #fff;
    word-break: break-word;
}

.bio-box {
    line-height: 1.8;

    color: #fff;

    white-space: pre-wrap;
}

/* ============================================================
   EDIT PROFILE
   ============================================================ */

.edit-profile-layout {
    display: grid;
    gap: 24px;
}

.edit-avatar-preview {
    display: flex;
    justify-content: center;

    margin-bottom: 22px;
}

.edit-avatar-preview img {
    width: 140px;
    height: 140px;

    border-radius: 50%;

    object-fit: cover;

    border: 3px solid rgba(57,255,20,0.25);

    background: #000;

    box-shadow:
        0 0 20px rgba(57,255,20,0.12);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 18px;
}

.form-grid .full-width {
    grid-column: 1 / -1;
}

/* ============================================================
   APPLICANTS PAGE
   ============================================================ */

.applicant-grid {
    display: grid;
    gap: 20px;
}

.applicant-card {
    background:
        linear-gradient(
            180deg,
            rgba(0,40,0,0.30),
            rgba(0,15,0,0.72)
        );

    border: 1px solid rgba(57,255,20,0.16);
    border-radius: 22px;

    padding: 22px;

    transition:
        border-color 0.18s ease,
        transform 0.18s ease,
        box-shadow 0.18s ease;
}

.applicant-card:hover {
    transform: translateY(-2px);

    border-color: rgba(57,255,20,0.42);

    box-shadow:
        0 0 18px rgba(57,255,20,0.10);
}

.applicant-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 18px;

    margin-bottom: 18px;
}

.applicant-header h3 {
    margin: 0 0 6px;

    color: var(--green);

    font-size: 1.2rem;
}

.applicant-header p {
    margin: 0;

    color: var(--muted);
}

.vote-badge {
    display: inline-flex;
    align-items: center;

    padding: 6px 12px;

    border-radius: 999px;

    background: rgba(57,255,20,0.10);

    border: 1px solid rgba(57,255,20,0.20);

    color: var(--green-soft);

    font-size: 0.82rem;
    font-weight: bold;
}

.applicant-details {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 14px;

    margin-bottom: 18px;
}

.applicant-details div {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.applicant-details strong {
    color: var(--green-soft);

    font-size: 0.8rem;

    text-transform: uppercase;
    letter-spacing: 1px;
}

.applicant-details span,
.applicant-details a {
    color: #fff;
}

.applicant-why {
    margin-bottom: 18px;

    padding: 18px;

    border-radius: 16px;

    background: rgba(0,0,0,0.32);

    border: 1px solid rgba(57,255,20,0.10);

    line-height: 1.7;

    white-space: pre-wrap;
}

.vote-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* ============================================================
   ONE-LINER PAGE
   ============================================================ */

.oneliner-form {
    display: grid;
    gap: 16px;
}

.oneliner-user {
    display: flex;
    align-items: center;
    gap: 14px;
}

.oneliner-avatar {
    width: 54px;
    height: 54px;

    min-width: 54px;
    min-height: 54px;
    max-width: 54px;
    max-height: 54px;

    border-radius: 50%;
    object-fit: cover;

    background: #000;

    border: 2px solid rgba(57,255,20,0.24);

    box-shadow:
        0 0 14px rgba(57,255,20,0.12);

    flex-shrink: 0;
}

.oneliner-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 14px;
}

#oneliner-list {
    display: grid;
    gap: 18px;
}

.oneliner-post {
    display: flex;
    gap: 16px;

    padding: 18px;

    border-radius: 20px;

    background:
        linear-gradient(
            180deg,
            rgba(0,45,0,0.30),
            rgba(0,12,0,0.82)
        );

    border: 1px solid rgba(57,255,20,0.14);

    box-shadow:
        inset 0 0 20px rgba(57,255,20,0.03),
        0 0 14px rgba(57,255,20,0.05);

    transition:
        border-color 0.18s ease,
        transform 0.18s ease,
        box-shadow 0.18s ease;
}

.oneliner-post:hover {
    transform: translateY(-2px);

    border-color: rgba(57,255,20,0.34);

    box-shadow:
        0 0 18px rgba(57,255,20,0.12);
}

.oneliner-content {
    flex: 1;
    min-width: 0;
}

.oneliner-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 14px;

    margin-bottom: 12px;
    padding-bottom: 10px;

    border-bottom: 1px solid rgba(57,255,20,0.10);
}

.oneliner-meta strong {
    color: var(--green);

    font-size: 1rem;
    font-weight: bold;

    letter-spacing: 0.5px;

    text-shadow:
        0 0 8px rgba(57,255,20,0.22);
}

.oneliner-meta span {
    color: #8fbf8f;

    font-size: 0.76rem;

    letter-spacing: 1px;

    text-transform: uppercase;
}

.oneliner-message {
    color: #f3fff3;

    line-height: 1.8;

    font-size: 1rem;

    white-space: pre-wrap;
    word-break: break-word;
}

@media (max-width: 700px) {
    .oneliner-post {
        padding: 16px;
        align-items: flex-start;
    }

    .oneliner-avatar {
        width: 48px;
        height: 48px;

        min-width: 48px;
        min-height: 48px;
        max-width: 48px;
        max-height: 48px;
    }

    .oneliner-meta {
        align-items: flex-start;
        flex-direction: column;
        gap: 5px;
    }

    .oneliner-actions {
        flex-direction: column;
        align-items: stretch;
    }
}
/* ============================================================
   ArakNet 2.0 — Main Style Sheet
   PART 4/4
   APPLICATION PAGE / GLOBAL FORMS / FOOTER / RESPONSIVE
   ============================================================ */

/* ============================================================
   ARAKNET APPLICATION PAGE
   ============================================================ */

.arak-form-wrapper {
    max-width: 1100px;
    margin: 0 auto;
}

.arak-app-heading {
    text-align: center;

    margin-bottom: 32px;
    padding-bottom: 22px;

    border-bottom: 1px solid rgba(57,255,20,0.15);
}

.arak-title {
    color: var(--green);

    font-size: clamp(2rem, 5vw, 3.2rem);

    letter-spacing: 2px;

    margin-bottom: 10px;

    text-shadow:
        0 0 12px rgba(57,255,20,0.85),
        0 0 32px rgba(57,255,20,0.28);
}

.arak-subtitle {
    color: var(--green-soft);

    font-size: 1.15rem;

    margin-bottom: 8px;
}

.arak-subtext {
    color: var(--muted);

    letter-spacing: 1px;

    margin: 0;
}

.arak-form {
    display: grid;
    gap: 24px;
}

.arak-fieldset {
    border: 1px solid rgba(57,255,20,0.22);

    border-radius: 18px;

    padding: 24px;

    background:
        linear-gradient(
            180deg,
            rgba(0,35,0,0.42),
            rgba(0,18,0,0.82)
        );

    box-shadow:
        inset 0 0 25px rgba(57,255,20,0.03);
}

.arak-fieldset legend {
    color: var(--green);

    float: none;
    width: auto;

    padding: 0 12px;

    font-size: 1.05rem;
    font-weight: bold;

    letter-spacing: 1px;

    text-shadow:
        0 0 10px rgba(57,255,20,0.45);
}

.radio-row {
    display: flex;
    gap: 22px;
    align-items: center;

    margin-bottom: 16px;

    color: var(--green-soft);
}

.radio-row label {
    display: flex;
    align-items: center;
    gap: 8px;

    cursor: pointer;
}

.radio-row input[type="radio"] {
    accent-color: #39ff14;
}

.arak-submit {
    justify-self: center;

    min-width: 280px;

    padding: 14px 24px;

    font-size: 1rem;
    font-weight: bold;
    letter-spacing: 1px;
}

.arak-submit i {
    margin-right: 6px;
}

/* ============================================================
   GLOBAL FORM FIELD CLEANUP
   ============================================================ */

input,
select,
textarea,
.form-control {
    background: rgba(0,0,0,0.72) !important;

    color: #d7ffd0 !important;

    border: 1px solid rgba(57,255,20,0.28) !important;
    border-radius: 12px !important;

    padding: 12px 14px;

    font-family:
        "Courier New",
        monospace;

    box-shadow:
        inset 0 0 12px rgba(57,255,20,0.04);

    transition:
        border-color 0.18s ease,
        box-shadow 0.18s ease,
        background 0.18s ease;
}

input:focus,
select:focus,
textarea:focus,
.form-control:focus {
    background: rgba(0,12,0,0.88) !important;

    color: #fff !important;

    border-color: rgba(57,255,20,0.72) !important;

    box-shadow:
        0 0 0 3px rgba(57,255,20,0.10),
        0 0 18px rgba(57,255,20,0.16),
        inset 0 0 14px rgba(57,255,20,0.05) !important;
}

input::placeholder,
textarea::placeholder,
.form-control::placeholder {
    color: rgba(180,255,180,0.48) !important;
}

select option {
    background: #000;
    color: #d7ffd0;
}

label {
    color: var(--green-soft);
    font-weight: 600;
}

input:disabled,
textarea:disabled,
select:disabled,
.form-control:disabled {
    background: rgba(0,0,0,0.48) !important;

    color: rgba(180,255,180,0.55) !important;

    border-color: rgba(57,255,20,0.16) !important;
}

/* ============================================================
   FOOTER
   ============================================================ */

.rof-footer {
    width: min(1180px, calc(100% - 28px));

    margin: 28px auto 18px;
    padding: 18px 20px;

    background: rgba(0,20,0,0.88);

    border: 1px solid rgba(57,255,20,0.25);
    border-radius: 16px;

    box-shadow:
        0 0 18px rgba(57,255,20,0.08),
        inset 0 0 18px rgba(57,255,20,0.03);

    text-align: center;
}

.footer-info {
    width: 100%;

    color: var(--muted);

    font-size: 0.92rem;
    line-height: 1.7;

    display: flex;
    flex-wrap: wrap;

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

    text-align: center;

    gap: 8px;
}

.separator {
    opacity: 0.4;
}

.neon-icon {
    color: var(--green);

    text-shadow:
        0 0 4px rgba(57,255,20,0.8),
        0 0 10px rgba(57,255,20,0.45);
}

.brand-link {
    color: var(--green-soft);

    text-decoration: none;
    font-weight: bold;

    transition: 0.2s ease;
}

.brand-link:hover {
    color: #fff;

    text-shadow:
        0 0 8px rgba(57,255,20,0.85),
        0 0 16px rgba(57,255,20,0.5);
}

.neon-tm {
    font-size: 0.72rem;
    vertical-align: super;
}

.flame-flicker {
    animation: flameFlicker 1.8s infinite alternate;
}

@keyframes flameFlicker {
    0% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.8;
        transform: scale(1.06);
    }

    100% {
        opacity: 1;
        transform: scale(0.98);
    }
}

/* ============================================================
   SPLASH CONTINUED
   ============================================================ */

.subhead {
    margin-top: 16px;

    color: #77ff77;

    letter-spacing: 2px;

    font-size: 0.95rem;
}

.typing-console {
    margin-top: 40px;

    text-align: left;

    display: inline-grid;
    gap: 8px;

    background: rgba(0,0,0,0.55);

    border: 1px solid rgba(57,255,20,0.2);

    padding: 18px 22px;

    border-radius: 14px;

    box-shadow:
        0 0 22px rgba(57,255,20,0.08);
}

.type-line {
    opacity: 0;
    animation: fadeInLine 0.6s forwards;
}

.line1 { animation-delay: 0.2s; }
.line2 { animation-delay: 1s; }
.line3 { animation-delay: 2s; }
.line4 { animation-delay: 3s; }
.line5 { animation-delay: 4s; }

@keyframes fadeInLine {
    to {
        opacity: 1;
    }
}

.loading-text {
    margin-top: 34px;

    letter-spacing: 3px;
}

.dots::after {
    content: "";
    animation: dots 1.5s infinite;
}

@keyframes dots {
    0% {
        content: "";
    }

    33% {
        content: ".";
    }

    66% {
        content: "..";
    }

    100% {
        content: "...";
    }
}

.splash-controls {
    margin-top: 34px;
}

.countdown-text {
    margin-bottom: 16px;

    color: var(--green-soft);
}

.bypass-btn {
    border: 1px solid var(--green);

    background: transparent;

    color: var(--green);

    padding: 12px 24px;

    border-radius: 999px;

    font-weight: bold;
    letter-spacing: 2px;

    transition: all 0.25s ease;
}

.bypass-btn:hover {
    background: var(--green);

    color: #001100;

    box-shadow:
        0 0 18px rgba(57,255,20,0.45);
}

.crt-off {
    animation: crtOff 1.4s forwards;
}

@keyframes crtOff {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: scaleY(0.02);
    }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1000px) {
    .dashboard-layout,
    .profile-grid-layout,
    .applicant-details {
        grid-template-columns: 1fr;
    }

    .login-sidebar {
        position: static;
    }
}

@media (max-width: 900px) {
    .site-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .mobile-nav-toggle {
        display: block;

        position: absolute;
        right: 20px;
        top: 16px;
    }

    .site-nav {
        display: none;

        width: 100%;
    }

    .site-nav.nav-open {
        display: block;
    }

    .nav-links {
        flex-direction: column;
        align-items: stretch;
    }

    .nav-links a {
        justify-content: center;
    }

    .profile-card-main {
        flex-direction: column;
        text-align: center;
    }

    .profile-avatar-xl {
        width: 140px;
        height: 140px;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .arak-fieldset {
        padding: 18px;
    }

    .arak-submit {
        width: 100%;
    }
}

@media (max-width: 700px) {
    main,
    .arak-main {
        width: min(100% - 18px, 1180px);
        margin: 18px auto;
    }

    .panel,
    .login-card,
    .welcome-strip,
    .profile-card-main {
        padding: 18px;
        border-radius: 18px;
    }

    .welcome-strip {
        align-items: flex-start;
        flex-direction: column;
    }

    .member-card {
        align-items: flex-start;
    }

    .member-card img {
        width: 58px;
        height: 58px;
    }

    .applicant-header,
    .oneliner-entry-header {
        flex-direction: column;
    }

    .vote-actions,
    .access-actions,
    .radio-row {
        flex-direction: column;
        align-items: stretch;
    }

    .typing-console {
        width: 100%;
        font-size: 0.78rem;
    }

    .title {
        letter-spacing: 2px;
    }

    .subhead {
        font-size: 0.75rem;
    }

    .footer-info {
        flex-direction: column;
        gap: 4px;
    }

    .separator {
        display: none;
    }
}
