/*
   Clean merged stylesheet
   - Buddy edits have been merged into the original selectors.
   - Later duplicate selector values were preserved as the winning values.
   - Desktop min-width overrides were folded into the base desktop CSS.
   - All max-width rules were consolidated into one mobile block.
*/

/* =========================
   GLOBAL / PAGE FRAME
   ========================= */

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

.page-background {
    min-height: 100vh;
    background-image: radial-gradient(circle at 18% 12%, rgba(36, 126, 255, 0.18), transparent 28rem),
        radial-gradient(circle at 80% 18%, rgba(53, 199, 243, 0.11), transparent 30rem),
        url('../images/curcuit.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-color: var(--gatz-bg-deep);
    background-blend-mode: screen, screen, normal;
}

.page-gradient {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: radial-gradient(900px 520px at 16% 8%, rgba(53, 199, 243, 0.13), transparent 62%),
        radial-gradient(760px 520px at 86% 34%, rgba(15, 85, 215, 0.18), transparent 58%),
        linear-gradient(180deg, rgba(2, 5, 13, 0.90) 0%, rgba(3, 6, 16, 0.94) 55%, rgba(2, 4, 10, 1) 100%);
}

.site-container {
    width: min(100% - 3rem, 86rem);
    margin-left: auto;
    margin-right: auto;
}

.main {
    flex: 1;
    justify-content: center;
    display: flex;
    padding: 1rem;
    align-items: start;
}

:root {
    --gatz-bg: #050914;
    --gatz-bg-deep: #02050d;
    --gatz-panel: rgba(5, 10, 23, 0.88);
    --gatz-panel-strong: rgba(6, 12, 27, 0.96);
    --gatz-panel-soft: rgba(13, 25, 49, 0.72);
    --gatz-border: rgba(96, 205, 255, 0.18);
    --gatz-border-strong: rgba(84, 207, 255, 0.42);
    --gatz-text: #edf4f8;
    --gatz-text-soft: #d6e3ec;
    --gatz-text-muted: #aebdca;
    --gatz-cyan: #35c7f3;
    --gatz-cyan-soft: #7de3ff;
    --gatz-blue: #0f55d7;
    --gatz-blue-deep: #05236c;
    --gatz-red: #b21e1d;
    --gatz-red-deep: #6e0d12;
    --gatz-gold: #f2b632;
    --gatz-shadow: 0 1.4rem 4rem rgba(0, 0, 0, 0.46);
    --gatz-glow: 0 0 1.6rem rgba(53, 199, 243, 0.24);
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--gatz-bg-deep);
    color: var(--gatz-text-muted);
    font-family: Inter, "Segoe UI", Roboto, Arial, sans-serif;
    font-style: normal;
    text-rendering: geometricPrecision;
}

/* =========================
   NAVBAR
   ========================= */

.navbar {
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(2, 5, 13, 0.76);
    border-bottom: 0.1rem solid rgba(53, 199, 243, 0.12);
    backdrop-filter: blur(18px);
    box-shadow: 0 0.8rem 2.5rem rgba(0, 0, 0, 0.28);
}

.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.navbar-link {
    text-decoration: none;
    color: var(--gatz-text-soft);
    font-weight: 750;
    font-size: 0.98rem;
    letter-spacing: 0.02em;
    align-self: center;
    position: relative;
    line-height: 1;
    font-style: normal;
    text-transform: none;
    transition: color 0.18s ease, text-shadow 0.18s ease;
}

.navbar-discordbtn {
    font-size: 0.92rem;
    text-align: center;
    color: #7de3ff;
    font-weight: 850;
    border-radius: 999rem;
    border: 0.1rem solid rgba(53, 199, 243, 0.66);
    width: auto;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
    background-color: #c7c7c7;
    min-width: 11.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    padding: 0 1.2rem;
    background: linear-gradient(180deg, rgba(9, 28, 56, 0.86), rgba(4, 11, 27, 0.96));
    font-style: normal;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    box-shadow: inset 0 0 1.1rem rgba(53, 199, 243, 0.12),
        0 0 1.2rem rgba(53, 199, 243, 0.14);
    height: 3rem;
    box-sizing: border-box;
}

.navbar-hamburger {
    display: none;
    border: 0.1rem solid rgba(53, 199, 243, 0.34);
    border-radius: 0.8rem;
    padding: 0.5rem 0.75rem;
    background: rgba(7, 15, 32, 0.9);
    color: var(--gatz-text);
}

.navbar-links {
    display: flex;
    gap: clamp(1rem, 2vw, 2rem);
    align-items: center;
}

.navbar-link:hover {
    color: var(--gatz-cyan-soft);
    text-shadow: 0 0 1rem rgba(53, 199, 243, 0.34);
}

.navbar-discordbtn:hover {
    background-color: #c2aa00;
    transform: translateY(-0.14rem);
    color: #07111f;
    background: linear-gradient(180deg, #f4c34f, #d69b1f);
    border-color: #f2b632;
    box-shadow: 0 0.75rem 1.8rem rgba(0, 0, 0, 0.28),
        0 0 1rem rgba(242, 182, 50, 0.26);
}

.navbar-account {
    position: relative;
    align-self: center;
}

.navbar-account-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    right: 50%;
    transform: translateX(50%);
    min-width: 10rem;
    width: max-content;
    background-color: #000000;
    border-radius: 1rem;
    padding: 0.75rem 0;
    z-index: 50;
    text-align: center;
    background: rgba(3, 7, 17, 0.98);
    border: 0.1rem solid rgba(53, 199, 243, 0.18);
    box-shadow: var(--gatz-shadow);
}

.navbar-account.is-open .navbar-account-dropdown {
    display: block;
}

.navbar-dropdown-link {
    display: block;
    padding: 0.85rem 1.25rem;
    color: var(--gatz-text-soft);
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    white-space: nowrap;
    text-align: center;
    font-style: normal;
}

.navbar-dropdown-link:hover {
    color: var(--gatz-cyan-soft);
}

.navbar-brand {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.2rem;
    height: 3.2rem;
    border-radius: 50%;
    text-decoration: none;
    filter: drop-shadow(0 0 0.85rem rgba(53, 199, 243, 0.28));
}

.navbar-brand img,
.navbar-inner > a:first-child img {
    width: 3rem;
    height: 3rem;
    display: block;
    object-fit: contain;
}

.navbar-link::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -0.55rem;
    height: 0.12rem;
    border-radius: 99rem;
    background: linear-gradient(90deg, transparent, var(--gatz-cyan), transparent);
    opacity: 0;
    transform: scaleX(0.45);
    transition: opacity 0.18s ease, transform 0.18s ease;
}

.navbar-link:hover::after {
    opacity: 1;
    transform: scaleX(1);
}

.navbar-discord-icon {
    font-size: 0.82rem;
    line-height: 1;
    width: 1rem;
    height: 1rem;
    display: block;
    flex: 0 0 auto;
}

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

.footer {
    padding: 2rem 0;
    background: rgba(2, 5, 13, 0.72);
    border-top: 0.1rem solid rgba(53, 199, 243, 0.10);
}

.footer-inner {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    text-align: left;
}

.footer-smalltxt {
    color: #ffffff;
}

.footer-links {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.footer-link {
    color: #ffffff;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    font-size: 0.92rem;
}

.footer-link:hover {
    color: var(--gatz-cyan-soft);
}

.footer-smalltxt,
.footer-link {
    color: var(--gatz-text-muted);
    font-style: normal;
}

/* =========================
   MISC / SHARED
   ========================= */

.thank-you-main {
    flex: 1;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 3rem 1rem;
}

.thank-you-card {
    width: min(100% - 2rem, 42rem);
    background: radial-gradient(circle at 50% 18%, rgba(0, 0, 0, 0.98) 0%, rgba(0, 0, 0, 0.82) 22%, transparent 42%),
        radial-gradient(circle at 50% 0%, rgba(55, 163, 202, 0.10), transparent 48%),
        linear-gradient(180deg, rgba(3, 6, 13, 0.99), rgba(2, 4, 10, 0.99));
    border: 0.1rem solid rgba(255, 255, 255, 0.16);
    border-radius: 2.5rem;
    padding: 2.5rem;
    color: #ffffff;
    text-align: center;
    box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.45);
    box-sizing: border-box;
}

.thank-you-loader {
    width: 8rem;
    height: 8rem;
    object-fit: cover;
    margin-bottom: 1rem;
    border-radius: 50%;
    clip-path: circle(48% at 50% 50%);
    -webkit-mask-image: radial-gradient(circle at center, #000 0%, #000 58%, rgba(0, 0, 0, 0.65) 72%, transparent 100%);
    mask-image: radial-gradient(circle at center, #000 0%, #000 58%, rgba(0, 0, 0, 0.65) 72%, transparent 100%);
    mix-blend-mode: screen;
    filter: drop-shadow(0 0 1.5rem rgba(55, 163, 202, 0.45));
}

.thank-you-title {
    color: #ffffff;
    font-size: 2.5rem;
    margin: 0 0 0.75rem 0;
}

.thank-you-text {
    color: #37a3ca;
    font-size: 1.15rem;
    line-height: 1.5;
    margin: 0 0 1.5rem 0;
}

.thank-you-progress {
    width: 100%;
    height: 1rem;
    background-color: rgba(255, 255, 255, 0.12);
    border-radius: 2rem;
    overflow: hidden;
    border: 0.1rem solid rgba(255, 255, 255, 0.18);
}

.thank-you-progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #37a3ca, #c2aa00);
    border-radius: 2rem;
    transition: width 0.35s ease;
}

.thank-you-percent {
    color: #ffffff;
    font-weight: bold;
    margin-top: 0.75rem;
}

.thank-you-actions {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.thank-you-text.is-success {
    color: #37d67a;
    font-weight: bold;
}

.thank-you-text.is-failed {
    color: #ff4d4d;
    font-weight: bold;
}

.change-password-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.change-password-field {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.change-password-input {
    width: 100%;
    max-width: 28rem;
    border-radius: 0.4rem;
    border: 0.1rem solid #ffffff;
    background-color: #ffffff;
    color: #000000;
    font-size: 1rem;
    padding: 0.65rem;
    box-sizing: border-box;
}

.change-password-help {
    color: #c2aa00;
    line-height: 1.45;
    max-width: 42rem;
}

.change-password-flash {
    font-weight: bold;
    line-height: 1.45;
}

.change-password-flash-success {
    border-color: rgba(55, 214, 122, 0.55);
    color: #37d67a;
}

.change-password-flash-error {
    border-color: rgba(255, 77, 77, 0.6);
    color: #ff4d4d;
}

.change-password-flash-warning {
    border-color: rgba(194, 170, 0, 0.65);
    color: #c2aa00;
}

#gameAdvertFaqSection {
    margin-top: 0;
    clear: both;
}

[hidden] {
    display: none !important;
}

a,
button,
input,
textarea,
select {
    font-family: inherit;
}

.btn-icon {
    font-size: 1rem;
    line-height: 1;
    width: 1rem;
    height: 1rem;
    display: block;
    flex: 0 0 auto;
}

/* =========================
   AUTH / LOGIN / SIGNUP
   ========================= */

.signin-title {
    color: #ffffff;
    font-size: 2.5rem;
}

.sign-up-txt {
    color: #37a3ca;
    font-size: 1.2rem;
    margin-top: -32px;
    text-align: center;
}

.login-form-inner {
    display: flex;
    justify-content: center;
    padding: 0.3rem;
}

.login-input-icon {
    background-color: #000000;
    border: 0.1rem solid #ffffff;
    width: 3rem;
    text-align: center;
    padding: 0.2rem;
    font-size: 1.5rem;
    border-top-left-radius: 0.3rem;
    border-bottom-left-radius: 0.3rem;
    color: #ffffff;
}

.form-container {
    max-width: 32rem;
    width: 100%;
    display: flex;
    padding: 1rem;
    background-color: #0c1b37;
    border-radius: 1rem;
    flex-direction: column;
}

.signin-card {
    background-color: #091021;
    display: flex;
    flex-direction: column;
    border-radius: 2.5rem;
    padding: 2rem;
    height: auto;
    align-items: center;
}

.login-username {
    flex-grow: 1;
}

.login-password {
    width: 100%;
    flex-grow: 1;
    min-width: 0;
}

.login-form-links {
    display: flex;
    justify-content: center;
    padding-top: 0.5rem;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.login-btn {
    width: 100%;
    max-width: 16rem;
    font-size: 1.2rem;
    text-align: center;
    color: #ffffff;
    font-weight: bold;
    border-radius: 2rem;
    border: 0.25rem outset #ffffff;
    transition: transform 0.2s ease;
    background-color: #091021;
    padding-bottom: 0.5rem;
    padding-top: 0.5rem;
    display: flex;
    justify-content: center;
}

.login-btn:hover {
    background-color: #0c1b37;
    transform: translateY(-0.15rem);
}

.danger-txt {
    color: #c2aa00;
}

.login-divider {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
    padding-bottom: 1rem;
}

.login-divider-text {
    color: #ffffff;
}

.login-divider-line {
    flex: 1;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.25);
}

.discord-signin-btn {
    width: 100%;
    max-width: 16rem;
    text-align: center;
    font-weight: bold;
    border-radius: 2rem;
    border: 0.25rem outset #ffffff;
    transition: transform 0.2s ease;
    background-color: #3961fd;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: #ffffff;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.discord-signin-btn-img {
    max-width: 2rem;
    filter: invert(1);
}

.discord-signin-btn-txt {
    font-size: 1.2rem;
    text-align: left;
    white-space: nowrap;
}

.discord-signin-btn:hover {
    background-color: #0027d9;
    transform: translateY(-0.15rem);
}

.login-signup-link {
    font-size: 1.5rem;
    font-weight: bold;
    color: #2ea3bf;
    text-align: center;
}

.login-terms-agreement {
    color: #fdfdfd;
    text-align: center;
    width: 100%;
    max-width: 100%;
    word-break: break-word;
}

.login-message {
    width: 100%;
    text-align: center;
    font-size: 0.9rem;
    box-sizing: border-box;
    display: none;
    line-height: 1.35;
}

.login-message.is-error {
    color: #ff0000;
    display: block;
}

.login-message.is-success {
    color: #00ad03;
    display: block;
}

.sign-in-txt {
    color: #37a3ca;
    font-size: 1.2rem;
    margin-top: -32px;
    text-align: center;
}

.termsrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 1.3rem;
    cursor: pointer;
    margin: 12px 0;
    color: #ffffff;
    line-height: 1.50;
    text-align: center;
}

.terms-row input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    flex-shrink: 0;
}

.confirm-email-card {
    width: 100%;
    max-width: 32rem;
    min-height: 16rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background-color: #091021;
    border-radius: 2.5rem;
    padding: 2rem;
    text-align: center;
}

.confirm-email-title {
    color: #ffffff;
    font-size: 2rem;
    margin: 0;
}

.confirm-email-title.is-error {
    color: #c2aa00;
}

.confirm-email-message {
    color: #37a3ca;
    font-size: 1.2rem;
    line-height: 1.45;
    margin: 0 0 1rem;
}

.confirm-email-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
}

.confirm-email-actions[hidden] {
    display: none;
}

.display-name-tip {
    color: #c2aa00;
    text-align: center;
    font-size: 1.1rem;
}

/* =========================
   STATIC CONTENT PAGES
   ========================= */

.about-card {
    width: min(100% - 2rem, 70rem);
    background-color: #091021;
    border-radius: 2.5rem;
    padding: 2.5rem;
    color: #ffffff;
    text-align: center;
}

.about-title {
    color: #ffffff;
    font-size: 2.75rem;
    margin: 0 0 1.5rem 0;
    line-height: 1.15;
}

.about-text {
    color: #ffffff;
    font-size: 1.25rem;
    line-height: 1.6;
    margin: 0 0 1.25rem 0;
}

.about-promise {
    color: #37a3ca;
    font-size: 1.3rem;
    line-height: 1.5;
    margin: 1.5rem 0 0 0;
}

.about-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-top: 2rem;
}

.about-feature-card {
    background-color: #0c1b37;
    border-radius: 1.5rem;
    padding: 1.5rem;
    border: 0.1rem solid rgba(255, 255, 255, 0.15);
}

.about-feature-card h3 {
    color: #37a3ca;
    font-size: 1.5rem;
    margin: 0 0 0.75rem 0;
}

.about-feature-card p {
    color: #ffffff;
    font-size: 1rem;
    line-height: 1.45;
    margin: 0;
}

.contact-card {
    width: min(100% - 2rem, 48rem);
    background-color: #091021;
    border-radius: 2.5rem;
    padding: 2.5rem;
    color: #ffffff;
    text-align: center;
}

.contact-title {
    color: #ffffff;
    font-size: 2.75rem;
    margin: 0 0 1rem 0;
    line-height: 1.15;
}

.contact-text {
    color: #37a3ca;
    font-size: 1.2rem;
    line-height: 1.45;
    margin: 0 0 1.5rem 0;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background-color: #0c1b37;
    border-radius: 1rem;
    padding: 1.25rem;
}

.contact-row {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    text-align: left;
}

.contact-label {
    color: #ffffff;
    font-weight: bold;
}

.contact-input,
.contact-textarea {
    border-radius: 0.4rem;
    border: 0.1rem solid #ffffff;
    background-color: #ffffff;
    color: #000000;
    font-size: 1rem;
    padding: 0.65rem;
}

.contact-textarea {
    resize: vertical;
    min-height: 10rem;
}

.contact-submit-btn {
    align-self: center;
}

.contact-backup-text {
    color: #ffffff;
    font-size: 0.95rem;
    line-height: 1.4;
    margin: 0;
}

.contact-honeypot {
    display: none;
}

.contact-discord-btn {
    align-self: center;
    width: 14rem;
    margin-top: 0.25rem;
}

.policy-card {
    width: min(100% - 2rem, 62rem);
    background-color: #091021;
    border-radius: 2.5rem;
    padding: 2.5rem;
    color: #ffffff;
}

.policy-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.policy-title {
    color: #ffffff;
    font-size: 2.75rem;
    line-height: 1.15;
    margin: 0 0 0.5rem 0;
}

.policy-updated {
    color: #37a3ca;
    font-size: 1rem;
    margin: 0;
}

.policy-list {
    list-style: none;
    margin: 0;
    padding: 1.5rem;
    background-color: #0c1b37;
    border-radius: 1.5rem;
}

.policy-item {
    margin-bottom: 1.75rem;
}

.policy-item:last-child {
    margin-bottom: 0;
}

.policy-item h2 {
    color: #37a3ca;
    font-size: 1.55rem;
    line-height: 1.25;
    margin: 0 0 0.5rem 0;
}

.policy-item p {
    color: #ffffff;
    font-size: 1.15rem;
    line-height: 1.6;
    margin: 0;
}

/* =========================
   HOME PAGE
   ========================= */

.home-main {
    flex: 1;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.home-hero {
    width: 100%;
    padding: clamp(3rem, 6vw, 6.5rem) 0;
    background-image: linear-gradient(90deg, rgba(2, 7, 17, 0.78), rgba(3, 8, 18, 0.25) 48%, rgba(2, 7, 17, 0.66)),
        radial-gradient(circle at 53% 49%, rgba(53, 199, 243, 0.14), transparent 24rem),
        url('/dashboard/images/Interconnected%20Worldwide.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    isolation: isolate;
    min-height: 34rem;
    border-bottom: 0;
    box-shadow: inset 0 -10rem 11rem rgba(2, 5, 13, 0.92);
}

.home-hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(20rem, 0.88fr);
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
}

.home-hero-content {
    background-color: rgba(9, 16, 33, 0.9);
    border-radius: 1.6rem;
    padding: clamp(2rem, 4vw, 3.4rem);
    text-align: left;
    position: relative;
    overflow: hidden;
    background: linear-gradient(145deg, rgba(7, 14, 31, 0.94), rgba(5, 10, 22, 0.82)),
        radial-gradient(circle at 0% 0%, rgba(53, 199, 243, 0.12), transparent 20rem);
    border: 0.1rem solid var(--gatz-border);
    box-shadow: var(--gatz-shadow),
        inset 0 0 0 0.05rem rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(14px);
}

.home-eyebrow,
.home-kicker {
    color: var(--gatz-cyan);
    font-weight: 850;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
    display: inline-flex;
    align-items: center;
    gap: 0.62rem;
    font-size: 0.86rem;
    font-style: normal;
    text-shadow: 0 0 1rem rgba(53, 199, 243, 0.26);
}

.home-title {
    color: var(--gatz-text);
    font-size: clamp(2.55rem, 5.45vw, 5.35rem);
    line-height: 0.98;
    margin: 0 0 1.15rem 0;
    max-width: 13ch;
    letter-spacing: -0.045em;
    text-wrap: balance;
    text-shadow: 0 0.3rem 1rem rgba(0, 0, 0, 0.58);
}

.home-subtitle,
.home-lead {
    color: var(--gatz-text-muted);
    font-size: clamp(1.02rem, 1.15vw, 1.18rem);
    line-height: 1.68;
    margin: 0 0 1.5rem 0;
}

.home-button-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: flex-start;
    align-items: center;
}

.home-button-row-center {
    justify-content: center;
}

.home-primary-btn,
.home-secondary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 13rem;
    padding: 0.85rem 1.5rem;
    border-radius: 2rem;
    font-weight: bold;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.2s ease;
    gap: 0.55rem;
    border: 0.2rem outset #ffffff;
    font-size: 1rem;
    letter-spacing: 0.01em;
    box-shadow: none;
    text-transform: none;
}

.home-primary-btn {
    color: #ffffff;
    background-color: #9d1111;
    border: 0.2rem outset #ffffff;
    background: #9d1111;
    border-color: #ffffff;
}

.home-secondary-btn {
    color: #ffffff;
    background-color: #0039af;
    border: 0.2rem outset #ffffff;
    background: #0039af;
    border-color: #ffffff;
}

.home-primary-btn:hover {
    transform: translateY(-0.15rem);
    background-color: #530000;
    background: #530000;
}

.home-pill-row {
    display: flex;
    flex-wrap: wrap; /* stays one line when it fits, wraps when it does not */
    justify-content: center;
    align-items: center;
    gap: 0.45rem;
    margin: 1.45rem auto 0 auto;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.home-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.38rem;

    color: var(--gatz-text-soft);
    font-weight: 750;
    font-size: 0.72rem;
    line-height: 1;

    border-radius: 999rem;
    background: rgba(2, 8, 20, 0.64);
    border: 0.1rem solid rgba(53, 199, 243, 0.18);
    box-shadow: inset 0 0 1rem rgba(53, 199, 243, 0.035);

    padding: 0.52rem 0.72rem;
    box-sizing: border-box;
    white-space: nowrap;

    flex: 0 0 auto;
}

.home-pill-icon {
    width: 0.78rem;
    height: 0.78rem;
    display: block;
    flex: 0 0 auto;
}

.home-pill-text {
    display: inline-block;
    line-height: 1;
    white-space: nowrap;
    color: var(--gatz-text-soft);
}

.home-hero-image-wrap,
.home-media,
.home-showcase-image {
    border-radius: 1.4rem;
    padding: 0.22rem;
    position: relative;
    overflow: hidden;
    background: rgba(4, 9, 21, 0.62);
    border: 0.08rem solid rgba(53, 199, 243, 0.22);
    box-shadow: 0 1rem 2.2rem rgba(0, 0, 0, 0.26);
}

.home-hero-image-wrap img,
.home-media img,
.home-showcase-image img {
    width: 100%;
    display: block;
    border-radius: 1.18rem;
    position: relative;
    z-index: 1;
    background: #000;
    box-shadow: none;
}

.home-section {
    width: 100%;
    padding: clamp(3rem, 6vw, 5.5rem) 0;
}

.home-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.45rem;
}

.home-card,
.home-step,
.home-mini,
.home-showcase,
.home-cta {
    border-radius: 2rem;
    padding: 1.75rem;
    color: #ffffff;
}

.home-card h2,
.home-step h3,
.home-mini h3 {
    color: #37a3ca;
    margin: 0 0 0.75rem 0;
}

.home-card p,
.home-step p,
.home-mini p {
    color: #ffffff;
    line-height: 1.5;
    margin: 0;
}

.home-section-head {
    text-align: center;
    margin-bottom: 2rem;
    max-width: 58rem;
    margin-left: auto;
    margin-right: auto;
}

.home-section-title {
    color: var(--gatz-text);
    font-size: clamp(2.25rem, 4.8vw, 4.1rem);
    line-height: 1.15;
    margin: 0 0 1rem 0;
    letter-spacing: -0.035em;
    text-shadow: 0 0.3rem 1rem rgba(0, 0, 0, 0.46);
}

.home-step-num {
    color: #06101a;
    font-size: 1.25rem;
    font-weight: 900;
    margin-bottom: 0.75rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.3rem;
    height: 3.3rem;
    border-radius: 1rem;
    background: linear-gradient(180deg, #ffe28a, var(--gatz-gold));
    box-shadow: 0 0 1.2rem rgba(242, 182, 50, 0.22);
}

.home-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
}

.home-split-text {
    color: var(--gatz-text-muted);
}

.home-bullets {
    color: var(--gatz-text-muted);
    font-size: 1.1rem;
    line-height: 1.7;
    margin: 1rem 0 0 0;
    padding-left: 1.2rem;
}

.home-discord-gif-wrap {
    text-align: center;
    margin: 1rem 0;
}

.home-discord-gif-wrap img {
    width: min(100%, 16rem);
    filter: drop-shadow(0 0 1.2rem rgba(53, 199, 243, 0.16));
}

.home-mini-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.home-showcase {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 2rem;
    align-items: center;
    padding: clamp(1.4rem, 3vw, 2.2rem);
}

.home-reviews-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.35rem;
    margin-top: 1.25rem;
}

.home-review-form-card {
    background-color: #091021;
    border-radius: 2rem;
    padding: 1.75rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.home-review-form-grid {
    display: grid;
    grid-template-columns: 0.75fr 1.25fr;
    gap: 1.5rem;
    align-items: stretch;
}

.home-review-left,
.home-review-right {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.home-star-picker {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
}

.home-star-btn {
    background: transparent;
    border: 0;
    color: rgba(255, 255, 255, 0.35);
    cursor: pointer;
    font-size: 2rem;
    line-height: 1;
    padding: 0;
}

.home-star-btn.is-filled,
.home-star-display-star.is-filled {
    color: var(--gatz-gold);
}

.home-review-note {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.9rem;
    margin: 0;
}

.home-review-textarea {
    min-height: 9rem;
}

.home-review-submit {
    align-self: flex-end;
}

.home-review-card {
    background-color: #091021;
    border-radius: 2rem;
    padding: 1.75rem;
    color: #ffffff;
}

.home-review-card-head {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: flex-start;
}

.home-review-card h3 {
    color: #37a3ca;
    font-size: 1.35rem;
    margin: 0 0 0.35rem 0;
}

.home-review-card p {
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
}

.home-star-display {
    white-space: nowrap;
}

.home-star-display-star {
    color: rgba(255, 255, 255, 0.35);
    font-size: 1.25rem;
}

.home-review-body {
    color: #ffffff;
    line-height: 1.55;
    margin-top: 1rem;
}

.home-center {
    display: flex;
    justify-content: center;
    margin-top: 1.85rem;
}

.home-cta {
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: clamp(2rem, 4vw, 3.6rem);
    background: radial-gradient(circle at 50% 0%, rgba(53, 199, 243, 0.18), transparent 22rem),
        linear-gradient(145deg, rgba(7, 14, 31, 0.95), rgba(4, 9, 21, 0.86));
}

.home-secondary-btn:hover {
    transform: translateY(-0.15rem);
    background-color: #001756;
    background: #001756;
}

.home-main::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(circle at 20% 17%, rgba(53, 199, 243, 0.11), transparent 22rem),
        radial-gradient(circle at 76% 55%, rgba(242, 182, 50, 0.045), transparent 27rem);
    z-index: 0;
}

.home-main > * {
    position: relative;
    z-index: 1;
}

.home-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(180deg, rgba(2, 5, 13, 0.05) 0%, rgba(2, 5, 13, 0.26) 62%, rgba(2, 5, 13, 0.82) 100%);
    pointer-events: none;
}

.home-hero::before.home-hero::after {
content: "";
position: absolute;
left: 0;
right: 0;
bottom: -0.1rem;
height: 8rem;
pointer-events: none;
background: linear-gradient(
180deg,
rgba(2, 5, 13, 0) 0%,
rgba(2, 5, 13, 0.88) 65%,
rgba(2, 5, 13, 1) 100%
);
z-index: -1;
}

.home-hero-content::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(115deg, rgba(255, 255, 255, 0.10), transparent 21%, transparent 78%, rgba(53, 199, 243, 0.08)),
        radial-gradient(circle at 100% 0%, rgba(53, 199, 243, 0.16), transparent 16rem);
    opacity: 0.6;
    pointer-events: none;
}

.home-hero-content > * {
    position: relative;
    z-index: 1;
}

.home-eyebrow-icon {
    display: block;
    align-items: center;
    justify-content: center;
    width: 1.35rem;
    height: 1.35rem;
    border-radius: 0;
    color: var(--gatz-cyan-soft);
    background: none;
    border: 0;
    flex: 0 0 auto;
    padding: 0;
    box-shadow: none;
}

.home-subtitle {
    max-width: 50rem;
    margin-bottom: 1.6rem;
}

.home-primary-btn,
.home-secondary-btn,
.reviews-page-btn,
.rentals-more-btn,
.account-action-btn,
.login-btn,
.discord-signin-btn,
.contact-submit-btn,
.contact-discord-btn,
.thank-you-actions a,
.confirm-email-actions a,
.confirm-email-actions button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    min-width: 12rem;
    padding: 0.86rem 1.45rem;
    border-radius: 2rem;
    border: 0.2rem outset #ffffff;
    box-sizing: border-box;
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 850;
    font-style: normal;
    letter-spacing: 0.01em;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.18s ease, filter 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.home-primary-btn:hover,
.home-secondary-btn:hover,
.rentals-more-btn:hover {
    transform: translateY(-0.15rem);
    filter: brightness(1.08);
    box-shadow: 0 1rem 2.1rem rgba(0, 0, 0, 0.36), 0 0 1rem rgba(53, 199, 243, 0.20);
}


.home-primary-btn {
    color: #ffffff;
    background: #9d1111;
    border: 0.2rem outset #ffffff;
}

.home-secondary-btn {
    color: #ffffff;
    background: #0039af;
    border: 0.2rem outset #ffffff;
}

.reviews-page-btn,
.rentals-more-btn,
.account-action-btn {
    border: 0.2rem outset #ffffff;
}

.home-hero-image-wrap::before,
.home-media::before,
.home-showcase-image::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 86% 8%, rgba(53, 199, 243, 0.12), transparent 12rem);
    pointer-events: none;
}

.home-section-alt {
    background: linear-gradient(180deg, rgba(3, 8, 18, 0.44), rgba(3, 8, 18, 0.76)),
        radial-gradient(circle at 50% 20%, rgba(53, 199, 243, 0.06), transparent 32rem);
    border-block: 0.1rem solid rgba(53, 199, 243, 0.08);
}

.home-feature-strip {
    padding-top: 3.25rem;
    padding-bottom: 2.4rem;
}

.home-card,
.home-step,
.home-mini,
.home-showcase,
.home-cta,
.home-review-form-card,
.home-review-card {
    background: linear-gradient(145deg, rgba(7, 14, 31, 0.92), rgba(4, 9, 21, 0.78));
    border: 0.1rem solid rgba(53, 199, 243, 0.13);
    border-radius: 1.55rem;
    color: var(--gatz-text-soft);
    box-shadow: 0 1rem 2.5rem rgba(0, 0, 0, 0.26),
        inset 0 0 0 0.05rem rgba(255, 255, 255, 0.04);
}

.home-card {
    display: flex;
    align-items: flex-start;
    gap: 1.15rem;
    padding: 1.65rem;
}

.home-card-icon {
    flex: 0 0 auto;
    width: 3.1rem;
    height: 3.1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 1rem;
    color: var(--gatz-cyan);
    font-size: 0;
    background: rgba(53, 199, 243, 0.09);
    border: 0.1rem solid rgba(53, 199, 243, 0.18);
    box-shadow: inset 0 0 1rem rgba(53, 199, 243, 0.06);
}

.home-card h2,
.home-step h3,
.home-mini h3,
.home-review-card h3 {
    color: var(--gatz-cyan);
    font-size: clamp(1.15rem, 1.6vw, 1.45rem);
    letter-spacing: -0.01em;
}

.home-card p,
.home-step p,
.home-mini p,
.home-review-card p,
.home-review-body {
    color: var(--gatz-text-muted);
    line-height: 1.62;
}

.home-section-head .home-lead {
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}

.home-step {
    padding: 1.9rem;
}

.home-bullets li {
    margin-bottom: 0.45rem;
}

.home-bullets li::marker {
    color: var(--gatz-cyan);
}

.home-mini {
    border-radius: 1.25rem;
    padding: 1.35rem;
}

.home-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(53, 199, 243, 0.08), transparent);
    pointer-events: none;
}

.home-cta > * {
    position: relative;
    z-index: 1;
}

.home-cta .home-button-row {
    justify-content: center;
}

.home-review-note,
.reviews-page-count,
.home-star-display-star,
.home-review-card p {
    color: rgba(214, 227, 236, 0.72);
}

.home-primary-btn:hover,
.home-secondary-btn:hover {
    transform: translateY(-0.15rem);
    filter: none;
    box-shadow: none;
}

.home-card-icon img {
    width: 1.55rem;
    height: 1.55rem;
    display: block;
}

.home-amp-section {
    position: relative;
    overflow: hidden;
}

.home-amp-section::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(circle at 16% 12%, rgba(53, 199, 243, 0.10), transparent 24rem),
        radial-gradient(circle at 84% 28%, rgba(242, 182, 50, 0.055), transparent 26rem);
}

.home-amp-section > .site-container {
    position: relative;
    z-index: 1;
}

.home-amp-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.35rem;
    align-items: stretch;
}

.home-amp-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    overflow: hidden;
    border-radius: 1.55rem;
    color: var(--gatz-text-soft);
    background: linear-gradient(145deg, rgba(7, 14, 31, 0.94), rgba(4, 9, 21, 0.82));
    border: 0.1rem solid rgba(53, 199, 243, 0.14);
    box-shadow: 0 1rem 2.5rem rgba(0, 0, 0, 0.30),
        inset 0 0 0 0.05rem rgba(255, 255, 255, 0.04);
}

.home-amp-image {
    display: block;
    margin: 1rem 1rem 0 1rem;
    padding: 0.22rem;
    border-radius: 1.15rem;
    background: rgba(4, 9, 21, 0.62);
    border: 0.08rem solid rgba(53, 199, 243, 0.22);
    overflow: hidden;
    text-decoration: none;
}

.home-amp-image img {
    width: 100%;
    aspect-ratio: 16 / 6;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: 0.95rem;
}

.home-amp-card-body {
    padding: 1.35rem 1.35rem 1.55rem 1.35rem;
}

.home-amp-card h3 {
    color: var(--gatz-text);
    font-size: clamp(1.25rem, 1.6vw, 1.55rem);
    letter-spacing: -0.015em;
    margin: 0.2rem 0 0.75rem 0;
}

.home-amp-card .home-kicker {
    margin-bottom: 0.25rem;
    font-size: 0.75rem;
}

.home-amp-list {
    margin: 0;
    padding-left: 1.15rem;
    color: var(--gatz-text-muted);
    line-height: 1.55;
}

.home-amp-list li {
    margin-bottom: 0.5rem;
}

.home-amp-list li:last-child {
    margin-bottom: 0;
}

.home-amp-list li::marker {
    color: var(--gatz-cyan);
}

.home-phone-media {
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
}

.home-phone-media::before {
    display: none;
}

.home-phone-media img {
    border-radius: 1.1rem;
    box-shadow: none;
}

.home-discord-admin-tools-title {
    padding: 2.25rem 0 0.25rem 0;
    text-align: center;
}

.home-discord-admin-tools-title .home-kicker {
    margin-bottom: 1rem;
}

.home-primary-btn {
    color: #ffffff;
    background: #9d1111;
    border: 0.2rem outset #ffffff;
}

.home-secondary-btn {
    color: #ffffff;
    background: #0039af;
    border: 0.2rem outset #ffffff;
}

.reviews-page-btn,
.rentals-more-btn,
.account-action-btn {
    border: 0.2rem outset #ffffff;
}


/* =========================
   REVIEWS
   ========================= */

.reviews-page-header {
    text-align: center;
    margin-bottom: 2rem;
}

.reviews-page-title {
    color: #ffffff;
    font-size: 2.75rem;
    line-height: 1.15;
    margin: 0 0 0.75rem 0;
}

.reviews-page-text {
    color: #ffffff;
    font-size: 1.2rem;
    line-height: 1.5;
    margin: 0;
}

.reviews-page-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 28rem), 1fr));
    gap: 1.25rem;
    width: 100%;
}

.reviews-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.reviews-page-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 8rem;
    padding: 0.75rem 1.25rem;
    border-radius: 2rem;
    border: 0.2rem outset #ffffff;
    color: #ffffff;
    background-color: #0f46bd;
    font-weight: bold;
    text-decoration: none;
}

.reviews-page-btn.is-disabled {
    opacity: 0.45;
    pointer-events: none;
}

.reviews-page-count {
    color: #ffffff;
    font-size: 0.95rem;
}

.reviews-main {
    flex: 1;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 2rem 1rem 4rem 1rem;
}

.reviews-page-section {
    width: min(100% - 2rem, 82rem);
    margin-left: auto;
    margin-right: auto;
    color: #ffffff;
}

.review-popup {
    position: fixed;
    right: 1.5rem;
    bottom: 1.5rem;
    width: min(100% - 2rem, 22rem);
    background-color: #091021;
    border: 0.1rem solid rgba(255, 255, 255, 0.18);
    border-radius: 1.5rem;
    padding: 1.25rem;
    color: #ffffff;
    z-index: 100;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.55);
}

.review-popup-close {
    position: absolute;
    top: 0.5rem;
    right: 0.75rem;
    border: 0;
    background: transparent;
    color: #ffffff;
    font-size: 1.5rem;
    cursor: pointer;
}

.review-popup-title {
    color: #37a3ca;
    font-weight: bold;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.review-popup-text {
    margin-bottom: 1rem;
}

.review-popup-link {
    color: #c2aa00;
    font-weight: bold;
}

/* =========================
   SERVER RENTALS
   ========================= */

.rentals-main {
    flex: 1;
    width: 100%;
    padding: 2rem 0 4rem 0;
}

.rentals-hero {
    width: 100%;
    padding: 2rem 0 1.5rem 0;
}

.rentals-hero-inner {
    text-align: center;
    color: #ffffff;
}

.rentals-title {
    color: #ffffff;
    font-size: clamp(2.25rem, 5vw, 4rem);
    line-height: 1.1;
    margin: 0 0 1rem 0;
}

.rentals-subtitle {
    color: #37a3ca;
    font-size: 1.2rem;
    line-height: 1.5;
    max-width: 52rem;
    margin: 0 auto;
}

.rentals-grid-section {
    width: 100%;
}

.rentals-message {
    background-color: #091021;
    border-radius: 1.5rem;
    padding: 1.25rem;
    color: #ffffff;
    text-align: center;
    margin-bottom: 1.5rem;
}

.rentals-message[hidden] {
    display: none;
}

.rentals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 18rem), 1fr));
    gap: 1.5rem;
    align-items: stretch;
}

.rentals-card {
    background-color: #091021;
    border-radius: 2rem;
    overflow: hidden;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    border: 0.1rem solid rgba(255, 255, 255, 0.12);
}

.rentals-card-image-link {
    display: block;
    background-color: #000000;
}

.rentals-card-image {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    display: block;
}

.rentals-card-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.rentals-card-topline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.rentals-card-title {
    color: #37a3ca;
    font-size: 1.55rem;
    line-height: 1.15;
    margin: 0;
}

.rentals-status-badge {
    flex-shrink: 0;
    border-radius: 2rem;
    padding: 0.35rem 0.75rem;
    font-size: 0.8rem;
    font-weight: bold;
    color: #ffffff;
    background-color: #0f46bd;
}

.rentals-status-badge.is-coming-soon {
    background-color: #c2aa00;
    color: #000000;
}

.rentals-card-tagline {
    color: #ffffff;
    font-size: 1rem;
    line-height: 1.45;
    margin: 0 0 1rem 0;
}

.rentals-feature-list {
    color: #ffffff;
    margin: 0 0 1.25rem 1.1rem;
    padding: 0;
    line-height: 1.5;
}

.rentals-feature-list li {
    margin-bottom: 0.35rem;
}

.rentals-card-actions {
    margin-top: auto;
    display: flex;
    justify-content: center;
}

.rentals-more-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 11rem;
    padding: 0.75rem 1.25rem;
    border-radius: 2rem;
    border: 0.2rem outset #ffffff;
    color: #ffffff;
    background-color: #0039af;
    font-weight: bold;
    text-decoration: none;
    transition: transform 0.2s ease;
}

.rentals-more-btn:hover {
    transform: translateY(-0.15rem);
    background-color: #001756;
}

/* =========================
   GAME INFO / CHECKOUT
   ========================= */

.game-info-main {
    flex: 1;
    width: 100%;
    padding: 2rem 0 4rem 0;
}

.game-info-message {
    width: min(100% - 2rem, 48rem);
    margin: 2rem auto;
    background-color: #091021;
    border-radius: 2rem;
    padding: 1.5rem;
    color: #ffffff;
    text-align: center;
}

.game-info-page {
    width: 100%;
}

.game-info-page[hidden],
.game-info-live[hidden],
.game-info-status[hidden] {
    display: none;
}

.game-info-hero {
    width: 100%;
    padding: 2rem 0;
}

.game-info-hero-inner {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 2rem;
    align-items: center;
}

.game-info-hero-text {
    background-color: rgba(9, 16, 33, 0.92);
    border-radius: 2.5rem;
    padding: 2.5rem;
    text-align: center;
    color: #ffffff;
}

.game-info-status {
    color: #c2aa00;
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 0.75rem;
}

.game-info-title {
    color: #ffffff;
    font-size: clamp(2.25rem, 5vw, 4rem);
    line-height: 1.1;
    margin: 0 0 1rem 0;
}

.game-info-subtitle {
    color: #37a3ca;
    font-size: 1.2rem;
    line-height: 1.5;
    margin: 0;
}

.game-info-hero-image-wrap {
    background-color: rgba(9, 16, 33, 0.92);
    border-radius: 2rem;
    padding: 1rem;
}

.game-info-hero-image {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: contain;
    display: block;
    border-radius: 1.25rem;
    background-color: #000000;
}

.game-info-live {
    width: 100%;
}

.game-panel {
    background-color: #091021;
    border-radius: 2rem;
    padding: 1.75rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
    border: 0.1rem solid rgba(255, 255, 255, 0.12);
}

.game-panel-head {
    margin-bottom: 1.25rem;
}

.game-panel-head h2 {
    color: #37a3ca;
    font-size: 1.75rem;
    margin: 0 0 0.35rem 0;
}

.game-panel-head p {
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    line-height: 1.45;
}

.game-label {
    display: block;
    color: #ffffff;
    font-weight: bold;
    margin-bottom: 0.4rem;
}

.game-select {
    width: 100%;
    max-width: 24rem;
    border-radius: 0.4rem;
    border: 0.1rem solid #ffffff;
    background-color: #ffffff;
    color: #000000;
    font-size: 1rem;
    padding: 0.65rem;
}

.game-select:disabled {
    background-color: #e9ecef;
    color: #6c757d;
    cursor: not-allowed;
}

.game-trial-banner {
    margin-bottom: 1rem;
}

.game-trial-banner span {
    display: inline-flex;
    background-color: #008e21;
    color: #ffffff;
    border-radius: 2rem;
    padding: 0.45rem 0.85rem;
    font-weight: bold;
}

.game-warning-box {
    margin-top: 1rem;
    background-color: rgba(0, 0, 0, 0.35);
    border: 0.1rem solid #c2aa00;
    border-radius: 1rem;
    padding: 1rem;
    color: #ffffff;
    line-height: 1.45;
}

.game-billing-panel {
    padding: 1.75rem;
}

.game-billing-head {
    margin-bottom: 1.25rem;
}

.game-billing-head h2 {
    color: #37a3ca;
    font-size: 1.75rem;
    letter-spacing: 0.18rem;
    text-transform: uppercase;
    margin: 0 0 0.35rem 0;
}

.game-billing-head p {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.45;
}

.game-billing-small {
    margin-top: 0.35rem !important;
}

.game-billing-control {
    max-width: 25.5rem;
}

.game-panel-line {
    border: 0;
    border-top: 0.1rem solid rgba(255, 255, 255, 0.22);
    margin: 1.5rem 0;
}

.game-discount-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.game-discount-title {
    color: #37a3ca;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.game-discount-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.game-discount-badges span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #ffc107;
    color: #000000;
    border-radius: 0.25rem;
    padding: 0.3rem 0.8rem;
    font-size: 0.8rem;
    font-weight: bold;
}

.game-discount-note {
    margin-top: 0;
    background-color: transparent;
    border: 0.1rem solid #c2aa00;
    border-radius: 1rem;
    padding: 1rem;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.45;
}

.game-tier-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 18rem), 1fr));
    gap: 1.25rem;
}

.game-tier-card {
    position: relative;
    background-color: #050914;
    border-radius: 2rem;
    padding: 1.5rem;
    color: #ffffff;
    cursor: pointer;
    border: 0.1rem solid rgba(255, 255, 255, 0.15);
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.game-tier-card:hover {
    transform: translateY(-0.15rem);
}

.game-tier-card.is-selected {
    border-color: #ffffff;
    box-shadow: 0 0 0 0.15rem rgba(255, 255, 255, 0.2);
}

.game-tier-card.tier-standard {
    background: radial-gradient(circle at 20% 20%, rgba(0, 255, 180, 0.22), rgba(0, 0, 0, 0.95) 55%);
}

.game-tier-card.tier-performance {
    background: radial-gradient(circle at 20% 20%, rgba(255, 190, 0, 0.25), rgba(0, 0, 0, 0.95) 55%);
}

.game-tier-card.tier-extreme {
    background: radial-gradient(circle at 20% 20%, rgba(255, 60, 60, 0.25), rgba(0, 0, 0, 0.95) 55%);
}

.game-tier-card.tier-ultimate {
    background: radial-gradient(circle at 20% 20%, rgba(130, 0, 223, 0.32), rgba(0, 0, 0, 0.95) 55%);
}

.game-tier-top {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-bottom: 1rem;
}

.game-tier-icon {
    width: 3.5rem;
    height: 3.5rem;
    object-fit: contain;
}

.game-tier-top h3 {
    color: #ffffff;
    font-size: 1.35rem;
    margin: 0 0 0.25rem 0;
}

.game-tier-top p {
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
}

.game-tier-price-wrap {
    margin-bottom: 1rem;
}

.game-tier-price {
    color: #ffffff;
    font-size: 1.8rem;
    font-weight: bold;
}

.game-tier-sub,
.game-tier-savings,
.game-tier-trial {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
}

.game-tier-savings,
.game-tier-trial {
    color: #c2aa00;
    font-weight: bold;
}

.game-price-strike {
    color: #ff4d4d;
    text-decoration: line-through;
    margin-right: 0.35rem;
}

.game-tier-selected {
    display: inline-flex;
    margin-top: 0.5rem;
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 2rem;
    padding: 0.35rem 0.75rem;
    color: #ffffff;
    font-weight: bold;
}

.game-tier-list {
    color: #ffffff;
    line-height: 1.45;
    margin: 0 0 1rem 1.1rem;
    padding: 0;
}

.game-tier-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.game-tier-badges span {
    border-radius: 2rem;
    padding: 0.35rem 0.65rem;
    background-color: rgba(0, 0, 0, 0.35);
    color: #ffffff;
    font-size: 0.85rem;
}

.game-hint {
    color: #c2aa00;
    margin-top: 0.5rem;
    min-height: 1.2rem;
}

.game-machine-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 18rem), 1fr));
    gap: 1.25rem;
    margin-top: 1.5rem;
}

.game-machine-card {
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 8% 10%, rgba(115, 145, 190, 0.28), transparent 34%),
        radial-gradient(circle at 100% 0%, rgba(40, 90, 170, 0.22), transparent 38%),
        linear-gradient(100deg, rgba(9, 14, 23, 0.98) 0%, rgba(13, 20, 32, 0.98) 48%, rgba(3, 6, 11, 0.98) 100%);
    border-radius: 2rem;
    padding: 1.5rem;
    color: #ffffff;
    cursor: pointer;
    border: 0.1rem solid rgba(255, 255, 255, 0.20);
    box-shadow: inset 0 0 2.5rem rgba(110, 150, 210, 0.16),
        inset 0 0 0.1rem rgba(255, 255, 255, 0.22),
        0 1rem 2.5rem rgba(0, 0, 0, 0.42);
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.game-machine-card::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(115deg, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0.04) 18%, transparent 38%),
        radial-gradient(circle at 98% 5%, rgba(255, 255, 255, 0.15), transparent 30%);
    opacity: 0.95;
}

.game-machine-card::after {
    content: "";
    position: absolute;
    inset: 0.1rem;
    pointer-events: none;
    border-radius: 1.85rem;
    border: 0.1rem solid rgba(255, 255, 255, 0.08);
}

.game-machine-card > * {
    position: relative;
    z-index: 1;
}

.game-machine-card:hover {
    transform: translateY(-0.15rem);
    border-color: rgba(255, 255, 255, 0.42);
    box-shadow: inset 0 0 3rem rgba(110, 150, 210, 0.22),
        inset 0 0 0.1rem rgba(255, 255, 255, 0.26),
        0 1.25rem 3rem rgba(0, 0, 0, 0.52);
}

.game-machine-card.is-selected {
    border-color: rgba(255, 255, 255, 0.80);
    box-shadow: inset 0 0 3rem rgba(110, 150, 210, 0.24),
        inset 0 0 0.1rem rgba(255, 255, 255, 0.28),
        0 0 0 0.13rem rgba(255, 255, 255, 0.22),
        0 1.25rem 3rem rgba(0, 0, 0, 0.55);
}

.game-machine-head {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.game-machine-head h3 {
    color: #37a3ca;
    margin: 0 0 0.25rem 0;
}

.game-machine-head p {
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
}

.game-machine-selected {
    border-radius: 2rem;
    padding: 0.35rem 0.75rem;
    background-color: rgba(255, 255, 255, 0.12);
    border: 0.1rem solid rgba(255, 255, 255, 0.22);
    color: #ffffff;
    font-weight: bold;
    white-space: nowrap;
}

.game-machine-specs {
    color: #ffffff;
    line-height: 1.55;
    border-top: 0.1rem solid rgba(255, 255, 255, 0.08);
    padding-top: 1rem;
}

.game-machine-note {
    color: rgba(255, 255, 255, 0.75);
    border-top: 0.1rem solid rgba(255, 255, 255, 0.12);
    margin-top: 1rem;
    padding-top: 1rem;
    line-height: 1.4;
}

.game-empty-box {
    background-color: #091021;
    border-radius: 1.5rem;
    padding: 1.25rem;
    color: #ffffff;
    text-align: center;
}

.game-checkout-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 1.5rem;
}

.game-checkout-row p {
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

.game-advert-main {
    flex: 1;
    width: 100%;
    padding: 2rem 0 4rem 0;
}

.game-advert-message {
    width: min(100% - 2rem, 48rem);
    margin: 2rem auto;
    background-color: #091021;
    border-radius: 2rem;
    padding: 1.5rem;
    color: #ffffff;
    text-align: center;
}

.game-advert-message[hidden],
.game-advert-page[hidden] {
    display: none;
}

.game-advert-page {
    width: 100%;
}

.game-advert-hero {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 2rem;
    align-items: center;
    margin-bottom: 1.5rem;
}

.game-advert-hero-text,
.game-advert-panel {
    background-color: rgba(9, 16, 33, 0.96);
    border: 0.1rem solid rgba(255, 255, 255, 0.14);
    border-radius: 2rem;
    color: #ffffff;
    box-shadow: 0 1rem 2.5rem rgba(0, 0, 0, 0.35);
}

.game-advert-hero-text {
    padding: 2.5rem;
}

.game-advert-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(194, 170, 0, 0.16);
    border: 0.1rem solid rgba(194, 170, 0, 0.5);
    color: #c2aa00;
    border-radius: 2rem;
    padding: 0.45rem 0.85rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.game-advert-title {
    color: #ffffff;
    font-size: clamp(2.25rem, 5vw, 4rem);
    line-height: 1.08;
    margin: 0 0 1rem 0;
}

.game-advert-tagline {
    color: #37a3ca;
    font-size: 1.2rem;
    line-height: 1.5;
    margin: 0 0 1rem 0;
}

.game-advert-description {
    color: #ffffff;
    font-size: 1.05rem;
    line-height: 1.6;
    margin: 0 0 1.25rem 0;
}

.game-advert-announcement {
    background-color: rgba(255, 255, 255, 0.05);
    border: 0.1rem solid rgba(255, 255, 255, 0.12);
    border-radius: 1.25rem;
    color: rgba(255, 255, 255, 0.86);
    line-height: 1.45;
    padding: 1rem;
    margin-bottom: 1.25rem;
}

.game-advert-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.game-advert-actions-center {
    justify-content: center;
}

.game-advert-hero-image-wrap {
    background-color: rgba(9, 16, 33, 0.96);
    border: 0.1rem solid rgba(255, 255, 255, 0.14);
    border-radius: 2rem;
    padding: 1rem;
    box-shadow: 0 1rem 2.5rem rgba(0, 0, 0, 0.35);
}

.game-advert-hero-image {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    display: block;
    border-radius: 1.25rem;
    background-color: #000000;
}

.game-advert-panel {
    padding: 1.75rem;
    margin-bottom: 1.5rem;
}

.game-advert-panel h2,
.game-advert-section-head h2 {
    color: #37a3ca;
    font-size: 1.75rem;
    margin: 0 0 0.5rem 0;
}

.game-advert-section-head {
    margin-bottom: 1.25rem;
}

.game-advert-section-head p {
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.45;
    margin: 0;
}

.game-advert-feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 16rem), 1fr));
    gap: 1rem;
}

.game-advert-feature-card,
.game-advert-faq-card {
    background-color: rgba(255, 255, 255, 0.045);
    border: 0.1rem solid rgba(255, 255, 255, 0.12);
    border-radius: 1.5rem;
    padding: 1.25rem;
    color: #ffffff;
}

.game-advert-feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background-color: rgba(55, 163, 202, 0.16);
    border: 0.1rem solid rgba(55, 163, 202, 0.35);
    font-size: 1.4rem;
    margin-bottom: 0.85rem;
}

.game-advert-feature-card h3,
.game-advert-faq-card h3 {
    color: #ffffff;
    margin: 0 0 0.5rem 0;
}

.game-advert-feature-card p,
.game-advert-faq-card p {
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.5;
    margin: 0;
}

.game-advert-split {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
    align-items: stretch;
    margin-bottom: 2rem;
}

.game-advert-split .game-advert-panel {
    height: auto;
    min-height: 0;
    margin-bottom: 0;
}

.game-advert-check-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.game-advert-check-list li {
    position: relative;
    color: #ffffff;
    line-height: 1.45;
    padding-left: 1.75rem;
    margin-bottom: 0.8rem;
}

.game-advert-check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #c2aa00;
    font-weight: bold;
}

.game-advert-check-list li:last-child {
    margin-bottom: 0;
}

.game-advert-faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 18rem), 1fr));
    gap: 1rem;
}

.game-advert-trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.game-advert-trust-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.06);
    border: 0.1rem solid rgba(255, 255, 255, 0.12);
    color: #ffffff;
    border-radius: 2rem;
    padding: 0.55rem 0.85rem;
    font-weight: bold;
}

.game-advert-cta-card {
    background-color: rgba(255, 255, 255, 0.045);
    border: 0.1rem solid rgba(255, 255, 255, 0.12);
    border-radius: 1.5rem;
    padding: 2rem;
    color: #ffffff;
    text-align: center;
}

.game-advert-cta-card h2 {
    color: #37a3ca;
    font-size: 2rem;
    margin: 0 0 0.75rem 0;
}

.game-advert-cta-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    margin: 0 0 1.25rem 0;
}

/* =========================
   ACCOUNT PAGE
   ========================= */

.account-main {
    flex: 1;
    width: 100%;
    padding: 2rem 0 4rem 0;
}

.account-message {
    width: min(100% - 2rem, 48rem);
    margin: 2rem auto;
    background-color: #091021;
    border-radius: 2rem;
    padding: 1.5rem;
    color: #ffffff;
    text-align: center;
}

.account-page[hidden],
.account-message[hidden] {
    display: none;
}

.account-layout {
    display: grid;
    grid-template-columns: 18rem 1fr;
    gap: 1.5rem;
    align-items: start;
}

.account-sidepanel,
.account-panel,
.account-subpanel,
.account-membership-card {
    background-color: rgba(9, 16, 33, 0.96);
    border: 0.1rem solid rgba(255, 255, 255, 0.14);
    border-radius: 2rem;
    color: #ffffff;
    box-shadow: 0 1rem 2.5rem rgba(0, 0, 0, 0.35);
}

.account-sidepanel {
    padding: 1.5rem;
}

.account-sidepanel h2,
.account-subpanel h2,
.account-panel-head h1 {
    color: #37a3ca;
    margin: 0 0 1rem 0;
}

.account-side-nav {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.account-side-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    border-radius: 1rem;
    padding: 0.75rem 1rem;
    background-color: rgba(255, 255, 255, 0.06);
    cursor: pointer;
    transition: transform 0.18s ease,
        box-shadow 0.18s ease,
        background-color 0.18s ease,
        color 0.18s ease;
}

.account-side-link:hover,
.account-side-link.is-active {
    color: #000000;
    background-color: #c2aa00;
}

.account-side-link:hover {
    transform: translateX(0.25rem);
    box-shadow: 0 0.5rem 1.2rem rgba(0, 0, 0, 0.28);
}

.account-panel {
    padding: 1.75rem;
}

.account-subpanel {
    padding: 1.25rem;
    margin-bottom: 1.25rem;
}

.account-card-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.account-membership-card {
    padding: 1.5rem;
}

.account-membership-green {
    border-color: rgba(55, 214, 122, 0.45);
}

.account-membership-yellow {
    border-color: rgba(194, 170, 0, 0.6);
}

.account-membership-red {
    border-color: rgba(255, 77, 77, 0.55);
}

.account-membership-top {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.account-membership-dot {
    width: 0.9rem;
    height: 0.9rem;
    border-radius: 50%;
    background-color: #37d67a;
    box-shadow: 0 0 1rem rgba(55, 214, 122, 0.7);
}

.account-membership-yellow .account-membership-dot {
    background-color: #c2aa00;
    box-shadow: 0 0 1rem rgba(194, 170, 0, 0.7);
}

.account-membership-red .account-membership-dot {
    background-color: #ff4d4d;
    box-shadow: 0 0 1rem rgba(255, 77, 77, 0.7);
}

.account-membership-top h2 {
    color: #ffffff;
    margin: 0 0 0.25rem 0;
}

.account-membership-top p {
    color: rgba(255, 255, 255, 0.72);
    margin: 0;
    word-break: break-word;
}

.account-membership-headline {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin: 1.5rem 0;
    color: #ffffff;
    font-size: 1.25rem;
}

.account-membership-headline strong {
    color: #37a3ca;
}

.account-membership-divider {
    border-top: 0.1rem solid rgba(255, 255, 255, 0.14);
    margin-bottom: 1rem;
}

.account-info-grid {
    display: grid;
    grid-template-columns: 14rem 1fr;
    gap: 0.65rem 1rem;
}

.account-info-key {
    color: rgba(255, 255, 255, 0.7);
    font-weight: bold;
}

.account-info-value {
    color: #ffffff;
    word-break: break-word;
}

.account-affiliate-description {
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.5;
    margin-top: 1.25rem;
    max-width: 52rem;
}

.account-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.25rem;
}

.account-action-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 2rem;
    border: 0.2rem outset #ffffff;
    padding: 0.65rem 1rem;
    color: #ffffff;
    font-weight: bold;
    text-decoration: none;
    background-color: #0f46bd;
    cursor: pointer;
    transition: transform 0.18s ease,
        box-shadow 0.18s ease,
        filter 0.18s ease,
        background-color 0.18s ease;
}

.account-action-btn:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

.account-action-btn:not(:disabled):hover {
    transform: translateY(-0.15rem);
    filter: brightness(1.12);
    box-shadow: 0 0.6rem 1.4rem rgba(0, 0, 0, 0.35);
}

.account-action-btn:not(:disabled):active {
    transform: translateY(0);
    filter: brightness(0.95);
    box-shadow: 0 0.25rem 0.8rem rgba(0, 0, 0, 0.35);
}

.account-action-danger {
    background-color: #9d1111;
}

.account-action-warning {
    background-color: #c2aa00;
    color: #000000;
}

.account-action-success {
    background-color: #008e21;
}

.account-free-days-box {
    margin-top: 1.25rem;
}

.account-free-days-box h3 {
    color: #37a3ca;
    margin: 0 0 0.5rem 0;
}

.account-small-warning {
    color: #c2aa00;
}

.account-callout {
    color: #ffffff;
    line-height: 1.45;
}

.account-callout-warning {
    color: #c2aa00;
}

.account-free-days-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
    margin-top: 1rem;
}

.account-free-days-select {
    width: auto;
    min-width: 10rem;
}

.account-action-muted {
    background-color: #4d4d4d;
    color: #ffffff;
}

.account-action-primary:not(:disabled):hover {
    box-shadow: 0 0.6rem 1.4rem rgba(0, 0, 0, 0.35),
        0 0 1rem rgba(55, 163, 202, 0.45);
}

.account-action-danger:not(:disabled):hover {
    box-shadow: 0 0.6rem 1.4rem rgba(0, 0, 0, 0.35),
        0 0 1rem rgba(255, 77, 77, 0.45);
}

.account-action-warning:not(:disabled):hover {
    box-shadow: 0 0.6rem 1.4rem rgba(0, 0, 0, 0.35),
        0 0 1rem rgba(194, 170, 0, 0.55);
}

.account-action-success:not(:disabled):hover {
    box-shadow: 0 0.6rem 1.4rem rgba(0, 0, 0, 0.35),
        0 0 1rem rgba(55, 214, 122, 0.45);
}

.account-action-muted:not(:disabled):hover {
    box-shadow: 0 0.6rem 1.4rem rgba(0, 0, 0, 0.35),
        0 0 1rem rgba(255, 255, 255, 0.25);
}

.account-action-btn.is-loading {
    opacity: 0.75;
    cursor: wait;
    pointer-events: none;
}

.account-flash {
    margin-bottom: 1rem;
    font-weight: 700;
}

.account-flash-success {
    border-left: 4px solid #48d17a;
}

.account-flash-error {
    border-left: 4px solid #ff5c5c;
}

.account-flash-warning {
    border-left: 4px solid #f6c64f;
}

.account-flash-info {
    border-left: 4px solid #6aa8ff;
}

.account-message-error {
    color: #ffb3b3;
}

.account-message-info {
    color: #fff;
}

/* =========================
   DISCORD MANAGER
   ========================= */

.discord-manager-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.discord-manager-head h2 {
    margin: 0 0 0.35rem 0;
}

.discord-flash {
    font-weight: bold;
    line-height: 1.45;
}

.discord-flash-success {
    border-color: rgba(55, 214, 122, 0.55);
    color: #37d67a;
}

.discord-flash-warning {
    border-color: rgba(194, 170, 0, 0.65);
    color: #c2aa00;
}

.discord-flash-error {
    border-color: rgba(255, 77, 77, 0.6);
    color: #ff4d4d;
}

.discord-small-note {
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.45;
    margin: 0.85rem 0 0 0;
}

.discord-guild-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1rem;
    align-items: stretch;
}

.discord-guild-card {
    display: grid;
    flex-direction: column;
    justify-content: space-between;
    gap: 0.85rem;
    background-color: rgba(9, 16, 33, 0.96);
    border: 0.1rem solid rgba(255, 255, 255, 0.14);
    border-radius: 1.5rem;
    padding: 1rem;
    color: #ffffff;
    box-shadow: 0 0.8rem 1.8rem rgba(0, 0, 0, 0.25);
    grid-template-rows: auto 1fr auto;
    min-height: 10.5rem;
    box-sizing: border-box;
}

.discord-guild-top {
    display: grid;
    align-items: start;
    gap: 0.8rem;
    grid-template-columns: 3.25rem minmax(0, 1fr);
}

.discord-guild-icon {
    width: 3.25rem;
    height: 3.25rem;
    min-width: 3.25rem;
    border-radius: 50%;
    background-color: #0c1b37;
    object-fit: cover;
    border: 0.1rem solid rgba(255, 255, 255, 0.2);
}

.discord-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 2rem;
    padding: 0.28rem 0.6rem;
    margin-top: 0.4rem;
    font-size: 0.72rem;
    font-weight: bold;
    line-height: 1.2;
}

.discord-chip-good {
    background-color: #008e21;
    color: #000000;
}

.discord-chip-bad {
    background-color: #9d1111;
    color: #000000;
}

.discord-chip-warn {
    background-color: #c2aa00;
    color: #000000;
}

.discord-settings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 16rem), 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.discord-channel-box {
    background-color: rgba(255, 255, 255, 0.04);
    border: 0.1rem solid rgba(255, 255, 255, 0.12);
    border-radius: 1.5rem;
    padding: 1rem;
}

.discord-channel-box h3 {
    color: #37a3ca;
    margin: 0 0 0.65rem 0;
}

#discordGuildSettingsBox {
    margin-top: 1rem;
}

#discordGuildSettingsBox:empty {
    display: none;
}

#discordLinkedUser {
    color: #ffffff;
    font-weight: bold;
    font-size: 1.1rem;
}

#discordServerSelect {
    max-width: 28rem;
}

.discord-guild-top strong {
    display: block;
    color: #ffffff;
    font-size: 0.95rem;
    line-height: 1.2;
    min-height: 2.3rem;
    overflow-wrap: anywhere;
}

.discord-guild-card .account-actions {
    margin-top: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    align-items: center;
}

.discord-guild-card .account-action-btn {
    width: auto;
    min-width: 6.8rem;
    padding: 0.5rem 0.75rem;
    font-size: 0.78rem;
    line-height: 1.1;
    white-space: nowrap;
}

.discord-settings-section {
    background-color: rgba(255, 255, 255, 0.035);
    border: 0.1rem solid rgba(255, 255, 255, 0.12);
    border-radius: 1.5rem;
    padding: 1.25rem;
    margin-top: 1rem;
}

.discord-settings-section:first-child {
    margin-top: 0;
}

.discord-settings-section-head h3 {
    color: #37a3ca;
    font-size: 1.35rem;
    margin: 0 0 0.35rem 0;
}

.discord-settings-section-head p {
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.45;
    margin: 0 0 1rem 0;
}

.discord-admin-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 18rem), 1fr));
    gap: 0.85rem;
}

.discord-admin-field {
    background-color: rgba(0, 0, 0, 0.22);
    border: 0.1rem solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 0.85rem;
}

.discord-admin-label {
    color: rgba(255, 255, 255, 0.68);
    font-weight: bold;
    margin-bottom: 0.35rem;
}

.discord-admin-value strong {
    display: block;
    color: #ffffff;
    margin-bottom: 0.2rem;
}

.discord-admin-value span {
    color: #37a3ca;
    font-size: 0.86rem;
    word-break: break-word;
}

.discord-admin-missing {
    color: #c2aa00;
    font-weight: bold;
}

.discord-channel-box h4 {
    color: #37a3ca;
    margin: 0 0 0.85rem 0;
    font-size: 1.05rem;
}

.discord-field-label {
    display: block;
    color: rgba(255, 255, 255, 0.78);
    font-weight: bold;
    margin: 0.75rem 0 0.35rem 0;
}

.discord-channel-box .game-select {
    max-width: 100%;
}

.discord-info-section {
    margin-top: 18px;
    padding-top: 14px;
    border-top: 1px solid rgba(120, 160, 220, 0.25);
}

.discord-info-section h3 {
    margin: 0 0 8px;
    color: #28bfff;
}

.discord-small-note a {
    color: #c2aa00;
    text-decoration: underline;
}

.discord-small-note a:hover {
    color: #817201;
}

.discord-channel-help,
.discord-section-help {
    margin: 14px 0 18px;
    padding: 16px 18px;
    border: 1px solid rgba(120, 160, 220, 0.25);
    border-radius: 18px;
    background: rgba(4, 10, 28, 0.35);
}

.discord-channel-help h3 {
    margin: 0 0 10px;
    color: #28bfff;
}

.discord-channel-help p,
.discord-section-help p {
    margin: 0 0 10px;
}

.discord-channel-help p:last-child,
.discord-section-help p:last-child {
    margin-bottom: 0;
}

.discord-local-flash {
    margin: 16px 0 12px;
    padding: 12px 16px;
    border-radius: 14px;
    font-weight: 700;
}

.discord-local-flash-success {
    color: #42ff88;
    border: 1px solid rgba(66, 255, 136, 0.55);
    background: rgba(0, 120, 55, 0.12);
}

.discord-local-flash-error {
    color: #ff7777;
    border: 1px solid rgba(255, 90, 90, 0.55);
    background: rgba(160, 0, 0, 0.14);
}

/* =========================
   ADMIN MANAGER
   ========================= */

.admin-manager-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.admin-manager-head h2 {
    margin: 0;
    color: #37a3ca;
    font-size: 1.25rem;
}

.admin-manager-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1rem;
}

.admin-manager-card {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.admin-manager-card-top {
    display: flex;
    align-items: center;
    gap: 0.9rem;
}

.admin-manager-avatar {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    overflow: hidden;
    flex: 0 0 54px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
}

.admin-manager-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.admin-manager-avatar-fallback {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.35rem;
    color: #fff;
    background: rgba(246, 198, 79, 0.18);
}

.admin-manager-card-namebox {
    min-width: 0;
}

.admin-manager-card-name {
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    word-break: break-word;
}

.admin-manager-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.12);
}

.admin-manager-form-grid {
    display: grid;
    grid-template-columns: minmax(110px, 160px) 1fr;
    gap: 0.8rem 1rem;
    align-items: center;
}

.admin-manager-form-grid label {
    color: #ffffff;
    font-weight: 700;
}

.admin-manager-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1rem;
}

.admin-manager-add-panel {
    margin-top: 1.25rem;
}

.admin-manager-checkbox-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #fff;
}

.admin-manager-checkbox-row input {
    width: 18px;
    height: 18px;
}

.admin-manager-help {
    margin: 1rem 0 1.25rem;
    padding: 1rem;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.admin-manager-help h3 {
    margin: 0 0 0.7rem;
    color: #37a3ca;
    font-size: 1.1rem;
}

.admin-manager-help p {
    margin: 0 0 0.75rem;
    color: #fff;
    line-height: 1.5;
}

.admin-manager-help-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
    margin: 1rem 0;
}

.admin-manager-help-card {
    padding: 0.85rem;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.admin-manager-help-card strong {
    display: block;
    color: #37a3ca;
    margin-bottom: 0.4rem;
}

.admin-manager-help-card span {
    display: block;
    color: #fff;
    line-height: 1.45;
}

.admin-manager-help-discord {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.admin-manager-help-discord > strong {
    display: block;
    color: #37a3ca;
    margin-bottom: 0.5rem;
}

.admin-manager-help-discord p:last-child {
    margin-bottom: 0;
}

.admin-manager-help,
.admin-manager-help * {
    box-sizing: border-box;
}

.admin-manager-discord-card {
    display: block;
    width: 100%;
    box-sizing: border-box;
    margin: 0.75rem 0;
    padding: 0.85rem;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.22);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.admin-manager-discord-card strong {
    display: block;
    color: #37a3ca;
    margin-bottom: 0.4rem;
}

.admin-manager-discord-card span {
    display: block;
    color: #fff;
    line-height: 1.45;
}

.admin-main {
    flex: 1;
    width: 100%;
    padding: 2rem 0 4rem 0;
}

.admin-page[hidden],
.admin-main .account-message[hidden] {
    display: none;
}

.admin-layout {
    display: grid;
    grid-template-columns: 18rem minmax(0, 1fr);
    gap: 1.5rem;
    align-items: start;
}

.admin-sidepanel,
.admin-panel,
.admin-chart-section,
.admin-chart-card,
.admin-table-card,
.admin-metric-card,
.admin-json-card {
    background-color: rgba(9, 16, 33, 0.96);
    border: 0.1rem solid rgba(255, 255, 255, 0.14);
    border-radius: 2rem;
    color: #ffffff;
    box-shadow: 0 1rem 2.5rem rgba(0, 0, 0, 0.35);
}

.admin-sidepanel {
    padding: 1.5rem;
}

.admin-sidepanel h2 {
    color: #37a3ca;
    margin: 0 0 1rem 0;
}

.admin-side-nav {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.admin-side-label {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.78rem;
    font-weight: bold;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-top: 0.75rem;
}

.admin-side-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    border-radius: 1rem;
    padding: 0.75rem 1rem;
    background-color: rgba(255, 255, 255, 0.06);
    cursor: pointer;
    transition:
        transform 0.18s ease,
        box-shadow 0.18s ease,
        background-color 0.18s ease,
        color 0.18s ease;
}

.admin-side-link:hover,
.admin-side-link.is-active {
    color: #000000;
    background-color: #c2aa00;
}

.admin-side-link:hover {
    transform: translateX(0.25rem);
    box-shadow: 0 0.5rem 1.2rem rgba(0, 0, 0, 0.28);
}

.admin-content {
    min-width: 0;
}

.admin-panel {
    padding: 1.75rem;
}

.admin-panel-head,
.admin-chart-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1.25rem;
}

.admin-panel-head h1,
.admin-chart-head h2,
.admin-chart-card h3,
.admin-panel h2 {
    color: #37a3ca;
    margin: 0 0 0.35rem 0;
}

.admin-panel-head p,
.admin-chart-head p,
.admin-muted {
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.45;
    margin: 0;
}

.admin-metric-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 12rem), 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.admin-metric-grid-small {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 10rem), 1fr));
}

.admin-metric-card {
    padding: 1.25rem;
}

.admin-metric-label {
    color: rgba(255, 255, 255, 0.7);
    font-weight: bold;
    margin-bottom: 0.35rem;
}

.admin-metric-value {
    color: #37a3ca;
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1.1;
}

.admin-metric-sub {
    color: rgba(255, 255, 255, 0.72);
    margin-top: 0.35rem;
}

.admin-chart-section {
    padding: 1.5rem;
    margin-top: 1.5rem;
}

.admin-chart-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.admin-chart-card {
    padding: 1.25rem;
    min-height: 23rem;
}

.admin-chart-card canvas {
    width: 100% !important;
    height: 18rem !important;
}

.admin-select,
.admin-input,
.admin-textarea {
    width: 100%;
    border-radius: 0.4rem;
    border: 0.1rem solid #ffffff;
    background-color: #ffffff;
    color: #000000;
    font-size: 1rem;
    padding: 0.65rem;
    box-sizing: border-box;
}

.admin-select {
    max-width: 15rem;
}

.admin-wide-select {
    max-width: 32rem;
}

.admin-textarea {
    min-height: 8rem;
    resize: vertical;
}

.admin-toolbar {
    display: flex;
    align-items: end;
    gap: 1rem;
    flex-wrap: wrap;
}

.admin-toolbar-grow {
    flex: 1;
    min-width: min(100%, 20rem);
}

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

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

.admin-flash {
    font-weight: bold;
    line-height: 1.45;
}

.admin-flash-success {
    border-color: rgba(55, 214, 122, 0.55);
    color: #37d67a;
}

.admin-flash-warning {
    border-color: rgba(194, 170, 0, 0.65);
    color: #c2aa00;
}

.admin-flash-error {
    border-color: rgba(255, 77, 77, 0.6);
    color: #ff4d4d;
}

.admin-table-card {
    overflow-x: auto;
    padding: 0;
}

.admin-table,
.admin-mini-table {
    width: 100%;
    border-collapse: collapse;
    color: #ffffff;
}

.admin-table th,
.admin-table td,
.admin-mini-table td {
    padding: 0.85rem 1rem;
    border-bottom: 0.1rem solid rgba(255, 255, 255, 0.1);
    text-align: left;
    vertical-align: top;
}

.admin-table th {
    color: #37a3ca;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background-color: rgba(0, 0, 0, 0.22);
}

.admin-table tr[data-href] {
    cursor: pointer;
}

.admin-table tr[data-href]:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.admin-table-primary {
    color: #37a3ca;
    font-weight: bold;
}

.admin-table-num {
    text-align: right !important;
}

.admin-table-btn {
    padding: 0.45rem 0.75rem;
    font-size: 0.85rem;
}

.admin-empty-cell {
    text-align: center !important;
    color: rgba(255, 255, 255, 0.7);
}

.admin-mini-table-wrap {
    margin-top: 1rem;
    border-radius: 1rem;
    overflow: hidden;
    background-color: rgba(255, 255, 255, 0.04);
}

.admin-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 2rem;
    padding: 0.32rem 0.65rem;
    font-size: 0.78rem;
    font-weight: bold;
    white-space: nowrap;
}

.admin-badge-good {
    background-color: #008e21;
    color: #ffffff;
}

.admin-badge-warn {
    background-color: #c2aa00;
    color: #000000;
}

.admin-badge-neutral {
    background-color: #4d4d4d;
    color: #ffffff;
}

.admin-stars {
    color: #c2aa00;
    font-weight: bold;
    white-space: nowrap;
}

.admin-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.admin-page-count {
    color: #ffffff;
    font-weight: bold;
}

.admin-pagination .is-disabled {
    opacity: 0.45;
    pointer-events: none;
}

.admin-detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 14rem), 1fr));
    gap: 1rem;
}

.admin-detail-grid div {
    background-color: rgba(255, 255, 255, 0.045);
    border: 0.1rem solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 0.85rem;
}

.admin-detail-grid strong {
    display: block;
    color: rgba(255, 255, 255, 0.68);
    margin-bottom: 0.35rem;
}

.admin-detail-grid span {
    display: block;
    color: #ffffff;
    word-break: break-word;
}

.admin-prewrap {
    white-space: pre-wrap;
    color: #ffffff;
    line-height: 1.6;
}

.admin-message-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.admin-ticket-message {
    background-color: rgba(255, 255, 255, 0.045);
    border: 0.1rem solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 1rem;
}

.admin-ticket-message-head {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    color: #37a3ca;
    margin-bottom: 0.75rem;
}

.admin-ticket-message-head span {
    color: rgba(255, 255, 255, 0.65);
}

.admin-json-card {
    padding: 1rem;
    margin-top: 1rem;
}

.admin-json-card pre {
    white-space: pre-wrap;
    overflow-x: auto;
    background-color: rgba(0, 0, 0, 0.25);
    border-radius: 1rem;
    padding: 1rem;
    color: #ffffff;
}

.admin-link {
    color: #c2aa00;
    font-weight: bold;
}

.admin-console-card {
    margin-top: 1.25rem;
    max-width: 100%;
    background-color: rgba(0, 0, 0, 0.65);
    border: 0.1rem solid rgba(55, 163, 202, 0.35);
    border-radius: 1.25rem;
    overflow: hidden;
}

.admin-console-head {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.85rem 1rem;
    background-color: rgba(55, 163, 202, 0.12);
    color: #ffffff;
    border-bottom: 0.1rem solid rgba(255, 255, 255, 0.12);
}

.admin-console-head span {
    color: #37a3ca;
    font-weight: 700;
}

#deploymentConsoleOutput {
    display: block;
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 1rem;
    min-height: 18rem;
    max-height: 34rem;
    overflow: auto;
    white-space: pre-wrap;
    overflow-wrap: anywhere;
    word-break: break-word;
    color: #d8f6ff;
    font-family: Consolas, Monaco, 'Courier New', monospace;
    font-size: 0.9rem;
    line-height: 1.45;
}

.admin-migration-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

.admin-migration-step {
    min-width: 0;
}

.admin-migration-step-head {
    display: flex;
    align-items: flex-start;
    gap: 0.9rem;
    margin-bottom: 1rem;
}

.admin-migration-step-head h2 {
    margin: 0 0 0.3rem 0;
    color: #37a3ca;
}

.admin-migration-step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background-color: #c2aa00;
    color: #000000;
    font-weight: 800;
}

.admin-migration-select {
    max-width: none;
}

.admin-migration-table-wrap {
    margin-top: 1rem;
}

.admin-migration-server-row.is-selected {
    background: rgba(0, 229, 255, 0.14);
}

.admin-migration-details {
    box-shadow: none;
    margin-top: 0.25rem;
    padding: 1rem;
}

.admin-migration-option-list {
    display: grid;
    gap: 0.85rem;
}

.admin-migration-checkrow,
.admin-migration-radio-row {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    border: 0.1rem solid rgba(255, 255, 255, 0.12);
    border-radius: 1rem;
    background-color: rgba(255, 255, 255, 0.045);
    padding: 0.9rem;
    color: #ffffff;
}

.admin-migration-checkrow input,
.admin-migration-radio-row input {
    margin-top: 0.2rem;
    transform: scale(1.15);
}

.admin-migration-checkrow strong,
.admin-migration-radio-row strong,
.admin-migration-checkrow small,
.admin-migration-radio-row small {
    display: block;
}

.admin-migration-checkrow small,
.admin-migration-radio-row small {
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.4;
    margin-top: 0.2rem;
}

.admin-migration-disabled-section {
    margin-top: 1rem;
    opacity: 0.72;
}

.admin-migration-summary-section {
    margin-top: 1rem;
}

.admin-migration-card-text {
    font-size: 1.15rem;
    word-break: break-word;
}

.admin-migration-stripe-note {
    margin-top: 1.25rem;
    margin-bottom: 0.75rem;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.45;
}

.admin-migration-server-row {
    cursor: pointer;
}

.admin-migration-server-row:hover {
    background: rgba(0, 229, 255, 0.08);
}

.admin-migration-card-text,
.admin-metric-sub {
    overflow-wrap: anywhere;
    word-break: break-word;
}

.admin-migration-log-section {
    margin-top: 1rem;
}

.admin-migration-log-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.admin-migration-log-console {
    min-height: 18rem;
    max-height: 32rem;
    overflow: auto;
    white-space: pre-wrap;
    overflow-wrap: anywhere;
    word-break: break-word;
    padding: 1rem;
    border: 0.1rem solid rgba(53, 199, 243, 0.22);
    border-radius: 1rem;
    background: rgba(0, 0, 0, 0.42);
    color: rgba(237, 244, 248, 0.92);
    font-family: Consolas, Monaco, "Courier New", monospace;
    font-size: 0.88rem;
    line-height: 1.45;
    box-shadow: inset 0 0 1.5rem rgba(0, 0, 0, 0.28);

    display: block;
    text-align: left;
    align-items: initial;
    justify-content: initial;
}

@media (max-width: 768px) {
    .site-container {

        width: min(100% - 2rem, 86rem);

    }

    .navbar-links {

        padding-left: 1rem;

        padding-right: 1rem;

        display: none;

        align-items: center;

        justify-content: space-between;

        gap: 2rem;

    }

    .navbar-hamburger {

        display: block;

        font-size: 1.5rem;

    }

    .navbar-links.is-open {

        display: flex;

        flex-direction: column;

        position: absolute;

        top: 100%;

        left: 1rem;

        right: 1rem;

        z-index: 20;

        padding: 1rem;

        background: rgba(2, 5, 13, 0.98);

        border: 0.1rem solid rgba(53, 199, 243, 0.20);

        border-radius: 1rem;

        box-shadow: var(--gatz-shadow);

    }

    .navbar {

        padding: 0.8rem 0;

    }

    .navbar-link {

        font-size: 1rem;

    }

    .navbar-discordbtn {

        width: 100%;

        min-width: 0;

    }

    .footer {

        padding: 1rem 0;

    }

    .footer-inner {

        display: flex;

        flex-direction: column;

        align-items: center;

        justify-content: center;

        gap: 1rem;

        text-align: center;

    }

    .footer-smalltxt {

        font-size: 0.85rem;

    }

    .footer-links {

        display: flex;

        flex-direction: column;

        align-items: center;

        justify-content: center;

        row-gap: 0.9rem;

        gap: 0.75rem;

    }

    .thank-you-main {

        padding: 1.5rem 1rem 2.5rem 1rem;

        align-items: flex-start;

    }

    .thank-you-card {

        width: 90%;

        padding: 1.5rem;

        border-radius: 2rem;

    }

    .thank-you-loader {

        width: 6rem;

        height: 6rem;

        margin-bottom: 0.75rem;

        border-radius: 50%;

        clip-path: circle(48% at 50% 50%);

    }

    .thank-you-title {

        font-size: 2rem;

    }

    .thank-you-text {

        font-size: 1rem;

        line-height: 1.45;

    }

    .thank-you-progress {

        height: 0.85rem;

    }

    .thank-you-actions {

        gap: 0.75rem;

    }

    .form-container {

        max-width: 32rem;

        width: 85%;

        display: flex;

        padding: 1rem;

        background-color: #0c1b37;

        border-radius: 1rem;

        flex-direction: column;

    }

    .signin-title {

        color: #ffffff;

        font-size: 2rem;

        text-align: center;

    }

    .signin-card {

        width: 90%;

        max-width: 28rem;

        padding: 1.25rem;

    }

    .discord-signin-btn {

        width: 100%;

        font-size: 1rem;

        text-align: center;

        color: #ffffff;

        font-weight: bold;

        border-radius: 2rem;

        border: 0.25rem outset #ffffff;

        transition: transform 0.2s ease;

        background-color: #456bff;

        display: flex;

        align-items: center;

        justify-content: center;

        gap: 0.5rem;

        max-width: 13rem;

    }

    .login-btn {

        width: 100%;

        max-width: 13rem;

    }

    .discord-signin-btn-txt {

        white-space: normal;

        font-size: 0.95rem;

    }

    .discord-signin-btn-img {

        max-width: 1.5rem;

        flex-shrink: 0;

    }

    .confirm-email-card {

        width: 90%;

        padding: 1.25rem;

    }

    .confirm-email-title {

        font-size: 1.6rem;

    }

    .confirm-email-message {

        font-size: 1rem;

    }

    .about-card {

        width: 90%;

        padding: 1.5rem;

    }

    .about-title {

        font-size: 2rem;

    }

    .about-text,

        .about-promise {

        font-size: 1.05rem;

    }

    .about-feature-grid {

        grid-template-columns: 1fr;

    }

    .contact-card {

        width: 90%;

        padding: 1.5rem;

    }

    .contact-title {

        font-size: 2rem;

    }

    .contact-text {

        font-size: 1.05rem;

    }



    .contact-form {

        padding: 1rem;

    }



    .policy-card {

        width: 90%;

        padding: 1.5rem;

    }



    .policy-title {

        font-size: 2rem;

    }



    .policy-list {

        padding: 1rem;

    }



    .policy-item h2 {

        font-size: 1.3rem;

    }



    .policy-item p {

        font-size: 1rem;

    }



    /* =========================

       HOME PAGE

       ========================= */



    .home-hero-inner,

        .home-split,

        .home-showcase {

        grid-template-columns: 1fr;

    }



    .home-grid-3,

        .home-mini-grid,

        .home-reviews-grid {

        grid-template-columns: 1fr;

    }



    .home-hero,

        .home-section {

        padding: 2.5rem 0;

    }



    .home-hero-content,

        .home-card,

        .home-step,

        .home-mini,

        .home-showcase,

        .home-cta {

        padding: 1.5rem;

    }



    .home-review-form-grid {

        grid-template-columns: 1fr;

    }



    .home-review-submit {

        align-self: center;

    }



    .home-review-card-head {

        flex-direction: column;

    }



    .home-hero-content {

        text-align: center;

        padding: 1.45rem;

        border-radius: 1.25rem;

    }



    .home-title {

        max-width: 100%;

        font-size: clamp(2.1rem, 13vw, 3.25rem);

    }



    .home-button-row,

        .home-pill-row {

        justify-content: center;

    }

 .home-pill-row {
        flex-wrap: wrap;
    }

    .home-pill {
        flex: 1 1 calc(50% - 0.55rem);
        min-width: 9rem;
    }

    .home-hero-image-wrap {

        max-width: 44rem;

        margin: 0 auto;

    }



    .home-hero {

        padding: 2.5rem 0;

        min-height: auto;

    }



    .home-subtitle,

        .home-lead {

        font-size: 1rem;

    }



    .home-button-row {

        flex-direction: column;

        align-items: stretch;

    }



    .home-primary-btn,

        .home-secondary-btn {

        width: 100%;

        box-sizing: border-box;

    }



    .home-pill-row {

        align-items: stretch;

        flex-wrap: wrap;

        justify-content: center;

    }



    .home-pill {

        justify-content: center;

        flex: 1 1 100%;

    }



    .home-card {

        display: block;

        text-align: center;

    }



    .home-card-icon {

        margin-bottom: 1rem;

    }



    .home-mini-grid {

        grid-template-columns: 1fr;

    }



    .home-amp-grid {

        grid-template-columns: 1fr;

    }



    .home-amp-image img {

        aspect-ratio: 16 / 7;

    }



    .home-amp-image {

        margin: 0.85rem 0.85rem 0 0.85rem;

    }



    .home-amp-card-body {

        padding: 1.1rem 1.1rem 1.25rem 1.1rem;

    }



    .home-pill,

        .home-pill-row .home-pill:nth-child(3),

        .home-pill-row .home-pill:nth-child(4) {

        flex: 1 1 100%;

        min-width: 0;

        justify-content: center;

        padding-left: 0.85rem;

        padding-right: 0.85rem;

    }



    /* =========================

       REVIEWS

       ========================= */



    .reviews-page-section {

        width: 90%;

    }



    .reviews-page-title {

        font-size: 2rem;

    }



    .reviews-page-grid {

        grid-template-columns: 1fr;

    }



    .review-popup {

        left: 1rem;

        right: 1rem;

        bottom: 1rem;

        width: auto;

    }



    /* =========================

       SERVER RENTALS

       ========================= */



    .rentals-main {

        padding: 1rem 0 2.5rem 0;

    }



    .rentals-title {

        font-size: 2rem;

    }



    .rentals-subtitle {

        font-size: 1.05rem;

    }



    .rentals-card-body {

        padding: 1.25rem;

    }



    .rentals-card-topline {

        flex-direction: column;

        align-items: flex-start;

    }



    /* =========================

       GAME INFO / CHECKOUT

       ========================= */



    .game-info-main {

        padding: 1rem 0 2.5rem 0;

    }



    .game-info-hero-inner {

        grid-template-columns: 1fr;

    }



    .game-info-hero-text {

        padding: 1.5rem;

    }



    .game-info-title {

        font-size: 2rem;

    }



    .game-info-subtitle {

        font-size: 1.05rem;

    }



    .game-panel {

        padding: 1.25rem;

    }



    .game-checkout-row {

        flex-direction: column;

        align-items: center;

        text-align: center;

    }



    .game-select {

        max-width: 100%;

    }



    .game-billing-control {

        max-width: 100%;

    }



    .game-discount-badges {

        gap: 0.5rem;

    }



    .game-discount-badges span {

        font-size: 0.75rem;

    }



    .game-advert-hero,

        .game-advert-split {

        grid-template-columns: 1fr;

    }



    .game-advert-hero-text {

        padding: 1.5rem;

    }



    .game-advert-actions {

        flex-direction: column;

    }



    .game-advert-actions .home-primary-btn,

        .game-advert-actions .home-secondary-btn {

        width: 100%;

    }



    /* =========================

       ACCOUNT PAGE

       ========================= */



    .account-main {

        padding: 1rem 0 2.5rem 0;

    }



    .account-layout {

        grid-template-columns: 1fr;

        width: 90%;

    }



    .account-panel,

        .account-sidepanel,

        .account-subpanel,

        .account-membership-card {

        padding: 1.25rem;

    }



    .account-info-grid {

        grid-template-columns: 1fr;

        gap: 0.25rem 0;

    }



    .account-info-key {

        margin-top: 0.5rem;

    }



    .account-membership-headline {

        flex-direction: column;

        font-size: 1.1rem;

    }



    .account-actions {

        flex-direction: column;

    }



    .account-action-btn {

        width: 100%;

        box-sizing: border-box;

    }



    .account-free-days-row {

        flex-direction: column;

        align-items: stretch;

    }



    .account-free-days-select {

        width: 100%;

    }



    /* =========================

       DISCORD MANAGER

       ========================= */



    .discord-manager-head {

        align-items: stretch;

    }



    .discord-manager-head .account-action-btn {

        width: 100%;

    }



    .discord-guild-card .account-actions {

        flex-direction: column;

        align-items: stretch;

    }



    .discord-guild-card .account-action-btn {

        width: 100%;

    }



    .discord-settings-grid {

        grid-template-columns: 1fr;

    }



    .discord-guild-grid {

        grid-template-columns: 1fr;

    }



    /* =========================

       ADMIN MANAGER

       ========================= */



    .admin-manager-form-grid {

        grid-template-columns: 1fr;

        gap: 0.45rem;

    }



    .admin-manager-actions {

        flex-direction: column;

    }



    .admin-manager-actions .account-action-btn {

        width: 100%;

    }



    .admin-manager-head {

        align-items: stretch;

    }



    .admin-manager-head .account-action-btn {

        width: 100%;

    }



    .admin-manager-help-grid {

        grid-template-columns: 1fr;

    }

    .admin-layout {
        grid-template-columns: 1fr;
    }

    .admin-chart-grid,
    .admin-migration-grid,
    .admin-form-grid {
        grid-template-columns: 1fr;
    }

    .admin-toolbar {
        align-items: stretch;
    }

    .admin-select {
        max-width: 100%;
    }

    .admin-ticket-message-head {
        flex-direction: column;
    }

}




















/* 4th of July Banner */
.july4-promo-banner {
    position: relative;
    overflow: hidden;
    width: 100%;
    margin: 0;
    padding: 1.15rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    background:
        radial-gradient(circle at 15% 50%, rgba(255, 255, 255, 0.2), transparent 8rem),
        radial-gradient(circle at 75% 45%, rgba(255, 48, 70, 0.32), transparent 11rem),
        linear-gradient(90deg, rgba(8, 24, 70, 0.95), rgba(150, 22, 38, 0.92), rgba(8, 32, 88, 0.95));
    box-shadow:
        inset 0 0 2.5rem rgba(255, 255, 255, 0.06),
        0 0.75rem 2rem rgba(0, 0, 0, 0.22);
}

.july4-promo-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.055) 0,
            rgba(255, 255, 255, 0.055) 1rem,
            transparent 1rem,
            transparent 2rem
        );
    opacity: 0.6;
    animation: july4Stripes 12s linear infinite;
}

.july4-promo-banner::after {
    content: "★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★";
    position: absolute;
    left: 0;
    right: 0;
    top: 0.35rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.22);
    font-size: 0.8rem;
    letter-spacing: 1.25rem;
    white-space: nowrap;
    animation: july4Stars 3s ease-in-out infinite;
}

.july4-promo-content {
    position: relative;
    z-index: 2;
    max-width: 1320px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 1.25rem;
    text-align: left;
}

.july4-promo-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.42rem 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 999px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    white-space: nowrap;
}

.july4-promo-title {
    margin: 0;
    color: #ffffff;
    font-size: clamp(1.45rem, 3vw, 2.4rem);
    font-weight: 900;
    line-height: 1;
    text-align: center;
    text-shadow:
        0 0 0.75rem rgba(255, 255, 255, 0.28),
        0 0 1.5rem rgba(255, 40, 60, 0.36),
        0 0 2rem rgba(40, 120, 255, 0.32);
}

.july4-promo-title span {
    display: inline-block;
    background: linear-gradient(90deg, #ffffff, #ff364b, #ffffff, #2f7cff, #ffffff);
    background-size: 240% auto;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: july4TextShine 3.2s linear infinite;
}

.july4-promo-text {
    display: none;
}

.july4-promo-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.55rem;
    padding: 0.65rem 1.15rem;
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 999px;
    color: #ffffff;
    background: linear-gradient(135deg, #d7192d, #1d55ff);
    box-shadow:
        0 0 1.25rem rgba(255, 255, 255, 0.14),
        0 0 2rem rgba(29, 85, 255, 0.24);
    font-size: 0.9rem;
    font-weight: 900;
    text-decoration: none;
    white-space: nowrap;
    transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
    animation: july4ButtonPulse 1.8s ease-in-out infinite;
}

.july4-promo-button:hover {
    color: #ffffff;
    transform: translateY(-1px) scale(1.03);
    filter: brightness(1.1);
    box-shadow:
        0 0 1.5rem rgba(255, 255, 255, 0.24),
        0 0 2.5rem rgba(255, 40, 60, 0.32);
}

.july4-fireworks {
    position: absolute;
    z-index: 1;
    width: var(--fw-size, 6rem);
    height: var(--fw-size, 6rem);
    border-radius: 50%;
    opacity: var(--fw-opacity, 0.65);
    pointer-events: none;
}

.july4-fireworks::before,
.july4-fireworks::after {
    content: "";
    position: absolute;
    inset: 50%;
    width: 0.24rem;
    height: 0.24rem;
    border-radius: 50%;
    background: #ffffff;
    box-shadow:
        0 -2.8rem 0 #ffffff,
        2rem -2rem 0 #ff364b,
        2.8rem 0 0 #ffffff,
        2rem 2rem 0 #2f7cff,
        0 2.8rem 0 #ffffff,
        -2rem 2rem 0 #ff364b,
        -2.8rem 0 0 #ffffff,
        -2rem -2rem 0 #2f7cff,
        1.25rem -2.5rem 0 #ffffff,
        2.5rem 1.25rem 0 #ff364b,
        -1.25rem 2.5rem 0 #2f7cff,
        -2.5rem -1.25rem 0 #ffffff;
    transform: translate(-50%, -50%) scale(0.2);
    animation-name: july4Firework;
    animation-duration: var(--fw-duration, 2.4s);
    animation-timing-function: ease-out;
    animation-iteration-count: infinite;
    animation-delay: var(--fw-delay, 0s);
}

.july4-fireworks::after {
    animation-delay: calc(var(--fw-delay, 0s) + var(--fw-after-delay, 1.15s));
    animation-duration: var(--fw-after-duration, 2.6s);
}

.july4-fireworks-1 {
    left: 3%;
    top: 25%;
    --fw-size: 4.25rem;
    --fw-delay: 0s;
    --fw-duration: 2.7s;
    --fw-after-delay: 1.4s;
    --fw-after-duration: 3.1s;
    --fw-opacity: 0.48;
}

.july4-fireworks-2 {
    left: 7%;
    top: 70%;
    --fw-size: 5.75rem;
    --fw-delay: 0.85s;
    --fw-duration: 3.3s;
    --fw-after-delay: 1.8s;
    --fw-after-duration: 2.9s;
    --fw-opacity: 0.62;
}

.july4-fireworks-3 {
    left: 16%;
    top: 42%;
    --fw-size: 3.75rem;
    --fw-delay: 1.9s;
    --fw-duration: 2.5s;
    --fw-after-delay: 1.2s;
    --fw-after-duration: 3.4s;
    --fw-opacity: 0.42;
}

.july4-fireworks-4 {
    left: 28%;
    top: 20%;
    --fw-size: 4.75rem;
    --fw-delay: 0.35s;
    --fw-duration: 3.8s;
    --fw-after-delay: 2.1s;
    --fw-after-duration: 2.7s;
    --fw-opacity: 0.48;
}

.july4-fireworks-5 {
    left: 39%;
    top: 76%;
    --fw-size: 3.5rem;
    --fw-delay: 2.4s;
    --fw-duration: 3.1s;
    --fw-after-delay: 1.6s;
    --fw-after-duration: 3.6s;
    --fw-opacity: 0.38;
}

.july4-fireworks-6 {
    right: 36%;
    top: 27%;
    --fw-size: 4rem;
    --fw-delay: 1.15s;
    --fw-duration: 2.9s;
    --fw-after-delay: 1.9s;
    --fw-after-duration: 3.2s;
    --fw-opacity: 0.42;
}

.july4-fireworks-7 {
    right: 25%;
    top: 72%;
    --fw-size: 4.5rem;
    --fw-delay: 0.65s;
    --fw-duration: 3.5s;
    --fw-after-delay: 1.25s;
    --fw-after-duration: 2.8s;
    --fw-opacity: 0.5;
}

.july4-fireworks-8 {
    right: 14%;
    top: 30%;
    --fw-size: 5.25rem;
    --fw-delay: 1.7s;
    --fw-duration: 2.6s;
    --fw-after-delay: 1.55s;
    --fw-after-duration: 3.3s;
    --fw-opacity: 0.58;
}

.july4-fireworks-9 {
    right: 7%;
    top: 68%;
    --fw-size: 3.85rem;
    --fw-delay: 2.85s;
    --fw-duration: 3.7s;
    --fw-after-delay: 1.35s;
    --fw-after-duration: 2.95s;
    --fw-opacity: 0.46;
}

.july4-fireworks-10 {
    right: 2.5%;
    top: 24%;
    --fw-size: 4.25rem;
    --fw-delay: 0.2s;
    --fw-duration: 4.1s;
    --fw-after-delay: 2.25s;
    --fw-after-duration: 3s;
    --fw-opacity: 0.45;
}

@keyframes july4Stripes {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(2rem);
    }
}

@keyframes july4Stars {
    0%, 100% {
        opacity: 0.2;
    }

    50% {
        opacity: 0.55;
    }
}

@keyframes july4TextShine {
    from {
        background-position: 0% center;
    }

    to {
        background-position: 240% center;
    }
}

@keyframes july4ButtonPulse {
    0%, 100% {
        box-shadow:
            0 0 1.25rem rgba(255, 255, 255, 0.14),
            0 0 2rem rgba(29, 85, 255, 0.24);
    }

    50% {
        box-shadow:
            0 0 1.7rem rgba(255, 255, 255, 0.28),
            0 0 2.5rem rgba(255, 54, 75, 0.38);
    }
}

@keyframes july4Firework {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.2) rotate(0deg);
    }

    35% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(1.05) rotate(35deg);
    }
}

@media (max-width: 768px) {
.july4-promo-banner {
    padding: 1rem;
}

.july4-promo-content {
    grid-template-columns: 1fr;
    gap: 0.65rem;
    text-align: center;
}

.july4-promo-kicker {
    justify-self: center;
    font-size: 0.62rem;
    letter-spacing: 0.07em;
}

.july4-promo-title {
    font-size: clamp(1.55rem, 8vw, 2.1rem);
}

.july4-promo-button {
    justify-self: center;
    width: 100%;
    max-width: 20rem;
}

.july4-promo-banner::after {
    font-size: 0.65rem;
    letter-spacing: 0.5rem;
}

.july4-fireworks {
    width: 5rem;
    height: 5rem;
    opacity: 0.4;
}
}