html, body {
    min-height: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

*, *::before, *::after {
    box-sizing: border-box;
}

body.light,
body#news.light,
body#rules.light,
body#register.light,
body#index.light {
    margin: 0;
    color: #edf0f3;
    font-family: Arial, Helvetica, sans-serif;
    background: #030507 url('../../images/login/background.jpg') center center / cover no-repeat fixed;
}

body.light::before {
    display: none;
}

section {
    position: relative;
    z-index: 1;
}

.lobby-shell {
    position: relative;
    z-index: 1;
    min-height: 100vh;
}

.lobby-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 8px 14px;
    flex-wrap: wrap;
    background: linear-gradient(180deg, rgba(12, 15, 18, 0.22) 0%, rgba(12, 15, 18, 0.08) 100%);
    border-bottom: 1px solid rgba(189, 196, 201, 0.10);
    backdrop-filter: blur(2px);
    box-shadow: none;
}

.lobby-brand {
    display: flex;
    align-items: center;
    gap: 14px;
    color: #f3f5f7;
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.lobby-brand small {
    display: block;
    color: #bfc7ce;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.lobby-brand-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.28);
    box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.07);
    position: relative;
}

.lobby-brand-icon::before,
.lobby-brand-icon::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
}

.lobby-brand-icon::before {
    width: 7px;
    height: 7px;
    background: #ecf1f5;
}

.lobby-brand-icon::after {
    width: 23px;
    height: 9px;
    border: 1px solid rgba(235, 240, 245, 0.75);
}

.lobby-topbar-right {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #c8d0d7;
    font-size: 12px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.lobby-topbar-lang-select {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #c8d0d7;
    white-space: nowrap;
}

.lobby-topbar-lang-select label {
    margin: 0;
    color: #d8dde2;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.lobby-topbar-select {
    min-width: 150px;
    max-width: 170px;
    height: 36px;
    padding: 0 38px 0 14px;
    border-radius: 12px;
    border: 1px solid rgba(207, 214, 220, 0.18);
    background: rgba(18, 21, 26, 0.88);
    color: #f4f6f8;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.lobby-topbar-select:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.32);
}

.lobby-topbar-stat,
.lobby-topbar-lang {
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.lobby-topbar-lang-links a {
    color: #f5f7fa;
    text-decoration: none;
    opacity: 0.72;
    margin-left: 8px;
}

.lobby-topbar-lang-links a.is-current,
.lobby-topbar-lang-links a:hover {
    opacity: 1;
}

.lobby-anchor-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 14px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: linear-gradient(180deg, rgba(73, 79, 86, 0.95) 0%, rgba(39, 43, 48, 0.95) 100%);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.28);
}

.lobby-anchor-btn:hover {
    text-decoration: none;
    color: #fff;
    filter: brightness(1.08);
}

.lobby-main {
    max-width: 1080px;
    margin: 0 auto;
    padding: 22px 16px 42px;
}

.lobby-grid {
    display: grid;
    grid-template-columns: 285px 1fr;
    gap: 18px;
    align-items: start;
}

.lobby-card {
    background: rgba(12, 15, 18, 0.56);
    border: 1px solid rgba(189, 196, 201, 0.14);
    border-radius: 18px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(3px);
}

.lobby-card + .lobby-card {
    margin-top: 18px;
}

.lobby-card-inner {
    padding: 18px;
}

.lobby-eyebrow {
    color: #b8c0c7;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.24em;
    margin-bottom: 8px;
}

.lobby-hero-title {
    margin: 0;
    font-size: 42px;
    line-height: 0.98;
    font-weight: 300;
    letter-spacing: -0.03em;
    color: #f7f9fb;
}

.lobby-hero-title.small {
    font-size: 28px;
}

.lobby-hero-text {
    max-width: 680px;
    margin-top: 14px;
    color: #d3dae0;
    font-size: 13px;
    line-height: 1.55;
}

.lobby-hero-text strong {
    color: #ffffff;
}

.lobby-title-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 12px;
}

.lobby-section-title {
    margin: 0;
    color: #f5f7f9;
    font-size: 16px;
    font-weight: 600;
}

.lobby-subtext {
    color: #aeb7bf;
    font-size: 13px;
    line-height: 1.55;
    margin: 10px 0 0;
}

.lobby-form .field {
    margin-bottom: 16px;
}

.lobby-form label,
.lobby-strong-label {
    display: block;
    margin-bottom: 7px;
    color: #e6eaee;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.lobby-form input,
.lobby-form select,
.lobby-form textarea,
.lobby-select {
    width: 100%;
    height: 42px;
    border: 1px solid rgba(207, 214, 220, 0.14);
    background: rgba(18, 21, 26, 0.9);
    border-radius: 12px;
    color: #f6f7f9;
    padding: 0 14px;
    box-sizing: border-box;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.lobby-form textarea {
    min-height: 160px;
    padding: 11px;
    resize: vertical;
}

.lobby-form input:focus,
.lobby-form select:focus,
.lobby-form textarea:focus {
    outline: none;
    border-color: rgba(232, 237, 241, 0.34);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.06);
}

.lobby-inline-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin: 12px 0 18px;
    color: #c6cdd4;
    font-size: 13px;
}

.lobby-inline-row a,
.lobby-inline-row a:hover,
.lobby-link,
.lobby-link:hover {
    color: #eef1f4;
    text-decoration: none;
}

.lobby-check {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.lobby-check input {
    width: auto;
    height: auto;
}

.lobby-btn-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.lobby-btn,
button.lobby-btn,
input.lobby-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 14px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: linear-gradient(180deg, rgba(85, 91, 99, 0.98) 0%, rgba(45, 49, 54, 0.98) 100%);
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.26);
}

.lobby-btn:hover,
button.lobby-btn:hover,
input.lobby-btn:hover {
    color: #fff;
    text-decoration: none;
    filter: brightness(1.07);
}

.lobby-btn.is-primary {
    background: linear-gradient(180deg, rgba(177, 184, 191, 0.95) 0%, rgba(93, 100, 108, 0.95) 100%);
    color: #11161b;
    border-color: rgba(255, 255, 255, 0.18);
}

.lobby-btn.is-secondary {
    background: rgba(16, 18, 22, 0.72);
    color: #f0f4f7;
}

.lobby-btn.full {
    width: 100%;
}

.lobby-muted-divider {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 18px 0;
    color: #818c95;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
}

.lobby-muted-divider::before,
.lobby-muted-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.lobby-universe-card {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 16px;
    align-items: stretch;
}

.lobby-universe-visual {
    position: relative;
    min-height: 180px;
    border-radius: 18px;
    overflow: hidden;
    background: url('../../images/login/background.jpg') center center / cover no-repeat;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08);
}

.lobby-universe-visual::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(4, 6, 8, 0.03) 0%, rgba(4, 6, 8, 0.10) 100%);
}

.lobby-status-pill {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 1;
    padding: 7px 10px;
    border-radius: 999px;
    background: rgba(155, 168, 121, 0.18);
    border: 1px solid rgba(190, 215, 120, 0.35);
    color: #e5efc4;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.lobby-universe-meta h3 {
    margin: 0;
    font-size: 24px;
    font-weight: 400;
    color: #f7f8fb;
}

.lobby-universe-meta p {
    margin: 6px 0 0;
    color: #b3bcc4;
    font-size: 15px;
}

.lobby-stat-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin: 16px 0;
}

.lobby-stat-box {
    padding: 14px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.lobby-stat-box span {
    display: block;
    color: #adb7c0;
    font-size: 12px;
    line-height: 1.35;
}

.lobby-stat-box strong {
    display: block;
    margin-top: 8px;
    color: #fafcff;
    font-size: 22px;
    font-weight: 300;
}

.lobby-stat-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.lobby-stat-list li {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    color: #dce2e7;
}

.lobby-stat-list li:last-child {
    border-bottom: 0;
}

.lobby-stat-list span {
    color: #adb7bf;
}

.lobby-stat-list strong {
    color: #fbfdff;
    font-weight: 700;
}

.lobby-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.lobby-table-wrap {
    overflow-x: auto;
}

.lobby-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 760px;
}

.lobby-table th,
.lobby-table td {
    padding: 11px 10px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.lobby-table th {
    color: #98a6b1;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-weight: 700;
}

.lobby-table td {
    color: #eef2f6;
    font-size: 14px;
}

.lobby-table tr:last-child td {
    border-bottom: 0;
}

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

.lobby-news-item {
    padding: 18px 20px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.lobby-news-item h3 {
    margin: 0 0 8px;
    font-size: 20px;
    font-weight: 500;
    color: #f5f7fb;
}

.lobby-news-meta {
    color: #aeb7bf;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 10px;
}

.lobby-news-text,
.lobby-rules-content,
.lobby-copy {
    color: #d7dee4;
    font-size: 15px;
    line-height: 1.7;
}

.lobby-copy p:first-child {
    margin-top: 0;
}

.lobby-copy p:last-child {
    margin-bottom: 0;
}

.lobby-rules-content {
    padding: 4px 0 0;
}

.lobby-rules-content table,
.lobby-rules-content img {
    max-width: 100%;
}

.lobby-rules-content a,
.lobby-news-text a {
    color: #ffffff;
}

.lobby-page-header {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: end;
    margin-bottom: 20px;
}

.lobby-side-summary {
    color: #cad2d9;
    font-size: 14px;
    line-height: 1.6;
}

.lobby-footer {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 16px 24px;
}

.lobby-footer-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    padding: 20px 0 8px;
    color: #b2bbc3;
    font-size: 13px;
}

.lobby-footer-inner a {
    color: #edf1f4;
    text-decoration: none;
}

.lobby-footer-inner a:hover {
    text-decoration: underline;
}

.lobby-register-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 18px;
    align-items: start;
}

.lobby-register-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 14px;
}

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

.lobby-help {
    display: block;
    margin-top: 6px;
    color: #9da8b1;
    font-size: 12px;
    line-height: 1.5;
}

.lobby-pill-inline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    color: #eef2f5;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.lobby-empty {
    color: #aeb7bf;
    font-style: italic;
}

@media (max-width: 1050px) {
    .lobby-grid,
    .lobby-register-layout,
    .lobby-universe-card,
    .lobby-grid-2 {
        grid-template-columns: 1fr;
    }

    .lobby-stat-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .lobby-hero-title {
        font-size: 44px;
    }

    .lobby-hero-title.small {
        font-size: 36px;
    }
}

@media (max-width: 720px) {
    .lobby-topbar,
    .lobby-topbar-right,
    .lobby-page-header,
    .lobby-title-row,
    .lobby-btn-row,
    .lobby-inline-row {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }

    .lobby-main {
        padding-left: 16px;
        padding-right: 16px;
    }

    .lobby-card-inner {
        padding: 18px;
    }

    .lobby-hero-title {
        font-size: 34px;
    }

    .lobby-hero-title.small {
        font-size: 30px;
    }

    .lobby-register-form-grid,
    .lobby-stat-grid {
        grid-template-columns: 1fr;
    }
}


.lobby-universe-toolbar {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 16px;
}

.lobby-universe-toolbar .field {
    margin: 0;
    min-width: 240px;
}

.lobby-universe-toolbar .lobby-strong-label {
    margin-bottom: 8px;
}

.lobby-topbar-right strong,
.lobby-topbar-lang strong {
    color: #ffffff;
}

.lobby-topbar-lang-links a {
    opacity: 0.9;
}

@media (max-width: 900px) {
    .lobby-universe-toolbar {
        flex-direction: column;
        align-items: stretch;
    }

    .lobby-universe-toolbar .field {
        min-width: 0;
        width: 100%;
    }
}

@media (max-width: 1100px) {
    .lobby-topbar {
        flex-direction: column;
        align-items: stretch;
    }

    .lobby-topbar-right {
        flex-wrap: wrap;
        justify-content: flex-end;
    }

    .lobby-topbar-lang-select {
        width: 100%;
        justify-content: flex-end;
    }
}



@media (max-width: 1180px) {
    .lobby-main, .lobby-footer {
        max-width: 980px;
    }

    .lobby-grid {
        grid-template-columns: 260px 1fr;
        gap: 16px;
    }

    .lobby-universe-card {
        grid-template-columns: 220px 1fr;
    }

    .lobby-stat-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 860px) {
    .lobby-main {
        padding-left: 12px;
        padding-right: 12px;
    }

    .lobby-grid,
    .lobby-register-layout,
    .lobby-universe-card,
    .lobby-grid-2 {
        grid-template-columns: 1fr;
    }

    .lobby-topbar-right {
        width: 100%;
        justify-content: flex-start;
    }

    .lobby-topbar-select {
        min-width: 0;
        max-width: 100%;
        width: 100%;
    }

    .lobby-universe-toolbar .field {
        width: 100%;
        min-width: 0;
    }
}

/* Compact lobby pass - v11
   Objectif: rendu moins gros, moins de hauteur, pas d'overflow horizontal. */
html,
body {
    width: 100%;
    overflow-x: hidden !important;
}

.lobby-shell {
    min-height: 100vh;
    overflow-x: hidden;
}

.lobby-topbar {
    gap: 10px;
    padding: 5px 10px;
    flex-wrap: nowrap;
}

.lobby-brand {
    gap: 8px;
    font-size: 19px;
    line-height: 1;
    min-width: 0;
}

.lobby-brand small {
    font-size: 9px;
    letter-spacing: 0.12em;
}

.lobby-brand-icon {
    width: 24px;
    height: 24px;
    flex: 0 0 24px;
}

.lobby-brand-icon::before {
    width: 5px;
    height: 5px;
}

.lobby-brand-icon::after {
    width: 17px;
    height: 7px;
}

.lobby-topbar-right {
    gap: 7px;
    font-size: 10px;
    flex-wrap: nowrap;
    min-width: 0;
}

.lobby-topbar-stat {
    font-size: 10px;
}

.lobby-topbar-lang-select {
    gap: 6px;
    min-width: 0;
}

.lobby-topbar-lang-select label {
    font-size: 10px;
    letter-spacing: 0.02em;
}

.lobby-topbar-select {
    min-width: 110px;
    max-width: 126px;
    height: 28px;
    padding: 0 24px 0 9px;
    border-radius: 8px;
    font-size: 11px;
}

.lobby-anchor-btn {
    padding: 6px 10px;
    min-height: 28px;
    border-radius: 8px;
    font-size: 11px;
    white-space: nowrap;
}

.lobby-main {
    max-width: 960px;
    padding: 10px 10px 14px;
}

.lobby-grid {
    grid-template-columns: 230px minmax(0, 1fr);
    gap: 10px;
}

.lobby-card {
    border-radius: 13px;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.16);
}

.lobby-card + .lobby-card,
.lobby-card[style],
.lobby-grid-2[style] {
    margin-top: 10px !important;
}

.lobby-card-inner {
    padding: 10px 12px;
}

.lobby-title-row {
    gap: 8px;
    margin-bottom: 7px;
}

.lobby-section-title {
    font-size: 13px;
}

.lobby-eyebrow {
    font-size: 8px;
    letter-spacing: 0.16em;
    margin-bottom: 4px;
}

.lobby-hero-title,
.lobby-hero-title.small {
    font-size: 20px;
    line-height: 1.05;
    letter-spacing: -0.02em;
}

.lobby-hero-text {
    max-width: 100%;
    margin-top: 7px;
    font-size: 11px;
    line-height: 1.35;
}

.lobby-subtext {
    margin-top: 5px;
    font-size: 11px;
    line-height: 1.35;
}

.lobby-form .field {
    margin-bottom: 8px;
}

.lobby-form label,
.lobby-strong-label {
    margin-bottom: 4px;
    font-size: 11px;
}

.lobby-form input,
.lobby-form select,
.lobby-form textarea,
.lobby-select {
    height: 31px;
    padding: 0 9px;
    border-radius: 8px;
    font-size: 11px;
}

.lobby-inline-row {
    gap: 6px;
    margin: 6px 0 9px;
    font-size: 10px;
}

.lobby-btn-row {
    gap: 7px;
    margin-top: 9px;
}

.lobby-btn,
button.lobby-btn,
input.lobby-btn {
    min-height: 31px;
    padding: 0 10px;
    border-radius: 8px;
    font-size: 11px;
}

.lobby-muted-divider {
    gap: 8px;
    margin: 9px 0;
    font-size: 10px;
    letter-spacing: 0.1em;
}

.lobby-copy,
.lobby-news-text,
.lobby-rules-content {
    font-size: 11px;
    line-height: 1.38;
}

.lobby-copy p {
    margin: 6px 0;
}

.lobby-pill-inline {
    gap: 5px;
    padding: 4px 7px;
    font-size: 9px;
    letter-spacing: 0.06em;
}

.lobby-stat-list li {
    gap: 7px;
    padding: 6px 0;
    font-size: 11px;
}

.lobby-universe-toolbar {
    gap: 8px;
    margin-bottom: 8px;
}

.lobby-universe-toolbar .field {
    min-width: 170px;
}

.lobby-universe-toolbar .lobby-strong-label {
    margin-bottom: 4px;
}

.lobby-universe-card {
    grid-template-columns: 170px minmax(0, 1fr);
    gap: 10px;
}

.lobby-universe-visual {
    min-height: 112px;
    border-radius: 12px;
}

.lobby-status-pill {
    top: 8px;
    right: 8px;
    padding: 4px 7px;
    font-size: 9px;
}

.lobby-universe-meta h3 {
    font-size: 16px;
}

.lobby-universe-meta p {
    margin-top: 3px;
    font-size: 11px;
}

.lobby-stat-grid {
    gap: 7px;
    margin: 9px 0;
}

.lobby-stat-box {
    padding: 7px;
    border-radius: 9px;
}

.lobby-stat-box span {
    font-size: 9px;
    line-height: 1.2;
}

.lobby-stat-box strong {
    margin-top: 4px;
    font-size: 15px;
}

.lobby-table-wrap {
    width: 100%;
    overflow-x: hidden;
}

.lobby-table {
    min-width: 0;
    table-layout: fixed;
}

.lobby-table th,
.lobby-table td {
    padding: 5px 5px;
    font-size: 10px;
    word-break: break-word;
}

.lobby-table th {
    font-size: 8px;
    letter-spacing: 0.06em;
}

/* Le bloc news/règles de l'accueil prenait trop de hauteur.
   Les liens restent disponibles dans les boutons et le footer. */
.lobby-grid > section > .lobby-grid-2 {
    display: none;
}

.lobby-footer {
    max-width: 960px;
    padding: 0 10px 8px;
}

.lobby-footer-inner {
    gap: 8px;
    padding: 8px 0 4px;
    font-size: 10px;
}

@media (max-width: 980px) {
    .lobby-main,
    .lobby-footer {
        max-width: 100%;
    }

    .lobby-grid {
        grid-template-columns: 220px minmax(0, 1fr);
        gap: 8px;
    }

    .lobby-universe-card {
        grid-template-columns: 150px minmax(0, 1fr);
    }

    .lobby-stat-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 840px) {
    .lobby-topbar {
        flex-wrap: wrap;
        align-items: center;
    }

    .lobby-topbar-right {
        justify-content: flex-start;
        width: 100%;
        flex-wrap: wrap;
    }

    .lobby-grid,
    .lobby-universe-card,
    .lobby-register-layout,
    .lobby-grid-2 {
        grid-template-columns: 1fr;
    }

    .lobby-universe-toolbar {
        flex-direction: column;
        align-items: stretch;
    }

    .lobby-universe-toolbar .field,
    .lobby-topbar-select {
        width: 100%;
        min-width: 0;
        max-width: 100%;
    }

    .lobby-stat-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}


/* v12: universe select polish + alternate background */
body.light,
body#news.light,
body#rules.light,
body#register.light,
body#index.light {
    background: #05070a url('../../images/login/bg.png') center center / cover no-repeat fixed;
}

.lobby-universe-toolbar .field {
    min-width: 220px;
    max-width: 280px;
    margin: 0;
}

.lobby-universe-select,
.lobby-form select.lobby-universe-select,
.lobby-select.lobby-universe-select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    height: 34px;
    padding: 0 40px 0 14px;
    border-radius: 999px;
    border: 1px solid rgba(210, 217, 223, 0.22);
    background-color: rgba(17, 21, 25, 0.88);
    background-image:
        linear-gradient(45deg, transparent 50%, #dce2e7 50%),
        linear-gradient(135deg, #dce2e7 50%, transparent 50%),
        linear-gradient(180deg, rgba(70, 77, 84, 0.95) 0%, rgba(28, 32, 36, 0.95) 100%);
    background-position:
        calc(100% - 18px) 14px,
        calc(100% - 12px) 14px,
        0 0;
    background-size: 6px 6px, 6px 6px, 100% 100%;
    background-repeat: no-repeat;
    color: #f6f8fa;
    font-weight: 700;
    letter-spacing: 0.01em;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 10px 24px rgba(0, 0, 0, 0.18);
    transition: border-color .2s ease, box-shadow .2s ease, filter .2s ease;
}

.lobby-universe-select:hover,
.lobby-form select.lobby-universe-select:hover,
.lobby-select.lobby-universe-select:hover {
    border-color: rgba(236, 241, 245, 0.34);
    filter: brightness(1.03);
}

.lobby-universe-select:focus,
.lobby-form select.lobby-universe-select:focus,
.lobby-select.lobby-universe-select:focus {
    outline: none;
    border-color: rgba(246, 249, 252, 0.42);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.06), 0 12px 28px rgba(0, 0, 0, 0.22);
}

#universeLogin,
#heroUniversePicker,
#universe {
    min-width: 0;
}

@media (max-width: 980px) {
    .lobby-universe-toolbar {
        gap: 10px;
        align-items: flex-start;
    }
    .lobby-universe-toolbar .field {
        width: 100%;
        max-width: none;
    }
}


/* v13: restore old universe select body, only clean the dropdown arrow */
.lobby-universe-select,
.lobby-form select.lobby-universe-select,
.lobby-select.lobby-universe-select {
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
    height: 31px !important;
    min-width: 0 !important;
    padding: 0 30px 0 9px !important;
    border-radius: 8px !important;
    border: 1px solid rgba(207, 214, 220, 0.14) !important;
    background-color: rgba(18, 21, 26, 0.9) !important;
    background-image:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23cfd6dc' d='M1.41 0.59 6 5.17l4.59-4.58L12 2 6 8 0 2z'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 10px center !important;
    background-size: 10px 7px !important;
    color: #f6f7f9 !important;
    font-size: 11px !important;
    font-weight: 400 !important;
    letter-spacing: normal !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03) !important;
    transition: border-color .2s ease, box-shadow .2s ease !important;
    filter: none !important;
}

.lobby-universe-select:hover,
.lobby-form select.lobby-universe-select:hover,
.lobby-select.lobby-universe-select:hover {
    border-color: rgba(207, 214, 220, 0.24) !important;
    filter: none !important;
}

.lobby-universe-select:focus,
.lobby-form select.lobby-universe-select:focus,
.lobby-select.lobby-universe-select:focus {
    outline: none !important;
    border-color: rgba(232, 237, 241, 0.34) !important;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.06) !important;
}

.lobby-universe-select::-ms-expand {
    display: none;
}

.lobby-universe-toolbar .field {
    min-width: 0;
    max-width: 240px;
}


/* v14: vraie skin du sélecteur univers + futurs univers */
body.light,
body#news.light,
body#rules.light,
body#register.light,
body#index.light {
    background: #05070a url('../../images/login/background.jpg') center center / cover no-repeat fixed;
}

.lobby-native-select {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.lobby-universe-picker {
    position: relative;
    width: 100%;
    min-width: 0;
    z-index: 10;
}

.lobby-universe-picker.is-wide {
    min-width: 220px;
}

.lobby-picker-toggle {
    width: 100%;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 8px 38px 8px 12px;
    border: 1px solid rgba(220, 225, 230, 0.20);
    border-radius: 10px;
    background:
        linear-gradient(180deg, rgba(52, 57, 62, 0.96) 0%, rgba(19, 22, 26, 0.96) 100%);
    color: #f7f9fb;
    text-align: left;
    cursor: pointer;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 12px 28px rgba(0, 0, 0, 0.22);
    position: relative;
}

.lobby-picker-toggle::after {
    content: '';
    position: absolute;
    right: 13px;
    top: 50%;
    width: 10px;
    height: 10px;
    border-right: 2px solid rgba(240, 244, 248, 0.86);
    border-bottom: 2px solid rgba(240, 244, 248, 0.86);
    transform: translateY(-65%) rotate(45deg);
    transition: transform .18s ease;
}

.lobby-universe-picker.is-open .lobby-picker-toggle::after {
    transform: translateY(-35%) rotate(225deg);
}

.lobby-picker-title {
    display: block;
    color: #ffffff;
    font-size: 12px;
    line-height: 1.15;
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.lobby-picker-meta {
    display: block;
    margin-top: 2px;
    color: #bfc7ce;
    font-size: 10px;
    line-height: 1.1;
    font-weight: 400;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.lobby-picker-menu {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 6px);
    max-height: 250px;
    overflow-y: auto;
    padding: 6px;
    border: 1px solid rgba(220, 225, 230, 0.18);
    border-radius: 12px;
    background: rgba(10, 12, 15, 0.98);
    box-shadow: 0 24px 55px rgba(0, 0, 0, 0.55);
    z-index: 1000;
}

.lobby-universe-picker.is-open .lobby-picker-menu {
    display: block;
}

.lobby-picker-option {
    width: 100%;
    display: block;
    padding: 9px 10px;
    margin: 0 0 4px;
    border: 1px solid transparent;
    border-radius: 9px;
    background: rgba(255, 255, 255, 0.035);
    color: #eef2f5;
    text-align: left;
    cursor: pointer;
}

.lobby-picker-option:last-child {
    margin-bottom: 0;
}

.lobby-picker-option:hover,
.lobby-picker-option.is-active {
    border-color: rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.09);
}

.lobby-picker-option-title {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: #ffffff;
}

.lobby-picker-option-meta {
    display: block;
    margin-top: 3px;
    font-size: 10px;
    color: #b7c0c8;
}

.lobby-future-card {
    overflow: visible;
}

.lobby-future-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 12px;
}

.lobby-future-universe {
    padding: 14px;
    border: 1px solid rgba(220, 225, 230, 0.13);
    border-radius: 14px;
    background: rgba(12, 15, 18, 0.46);
}

.lobby-future-topline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 8px;
}

.lobby-future-date,
.lobby-future-status {
    display: inline-flex;
    align-items: center;
    min-height: 20px;
    padding: 0 8px;
    border-radius: 999px;
    font-size: 10px;
    color: #f3f5f7;
    background: rgba(255, 255, 255, 0.07);
}

.lobby-future-status {
    color: #d7ffd2;
    background: rgba(95, 185, 80, 0.14);
}

.lobby-future-universe h3 {
    margin: 0 0 5px;
    color: #ffffff;
    font-size: 15px;
}

.lobby-future-universe p {
    margin: 6px 0 0;
    color: #cbd3da;
    font-size: 11px;
    line-height: 1.45;
}

.lobby-future-subtitle {
    color: #eef1f4 !important;
    font-weight: 700;
}

.lobby-future-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 10px;
}

.lobby-future-stats span {
    display: inline-flex;
    gap: 4px;
    padding: 5px 7px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.055);
    color: #cfd6dc;
    font-size: 10px;
}

.lobby-future-stats strong {
    color: #ffffff;
}

@media (max-width: 980px) {
    .lobby-universe-picker.is-wide {
        min-width: 0;
    }
}

/* Lobby account dashboard */
.lobby-success {
    margin: 0 0 12px;
    padding: 10px 12px;
    border: 1px solid rgba(110, 220, 120, 0.28);
    border-radius: 10px;
    color: #d8ffd8;
    background: rgba(50, 150, 70, 0.13);
    font-size: 12px;
}

.lobby-account-universe-list {
    display: grid;
    gap: 10px;
    margin: 14px 0;
}

.lobby-account-universe-row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
    align-items: center;
    padding: 12px;
    border: 1px solid rgba(220, 225, 230, 0.12);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.045);
}

.lobby-account-universe-row strong,
.lobby-account-universe-row span {
    display: block;
}

.lobby-account-universe-row strong {
    color: #fff;
    font-size: 13px;
}

.lobby-account-universe-row span {
    margin-top: 3px;
    color: #b8c1ca;
    font-size: 11px;
}

.lobby-social-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin: 10px 0 16px;
}

.lobby-social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 0 12px;
    border: 1px solid rgba(220, 225, 230, 0.16);
    border-radius: 10px;
    color: #fff !important;
    background: rgba(255, 255, 255, 0.07);
    font-size: 12px;
    font-weight: 700;
}

.lobby-social-btn.is-disabled {
    cursor: not-allowed;
    opacity: 0.55;
}

@media (max-width: 560px) {
    .lobby-account-universe-row {
        grid-template-columns: 1fr;
    }

    .lobby-social-row {
        grid-template-columns: 1fr;
    }
}

/* v16 HotGame lobby dashboard */
.lobby-hotgame-shell .lobby-main {
    max-width: 1120px;
}

.lobby-hotgame-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 14px;
    align-items: stretch;
    margin-bottom: 12px;
}

.lobby-global-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(95px, 1fr));
    gap: 8px;
    min-width: 420px;
}

.lobby-global-stat {
    padding: 10px;
    border: 1px solid rgba(220, 225, 230, 0.13);
    border-radius: 12px;
    background: rgba(12, 15, 18, 0.55);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

.lobby-global-stat span,
.lobby-global-stat small {
    display: block;
    color: #aeb8c1;
    font-size: 10px;
    line-height: 1.2;
}

.lobby-global-stat strong {
    display: block;
    margin-top: 5px;
    color: #ffffff;
    font-size: 17px;
    font-weight: 600;
}

.lobby-universe-board {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(235px, 1fr));
    gap: 12px;
}

.lobby-hot-universe-card {
    position: relative;
    overflow: hidden;
    padding: 13px;
    border: 1px solid rgba(220, 225, 230, 0.14);
    border-radius: 14px;
    background:
        linear-gradient(145deg, rgba(255,255,255,0.055), rgba(255,255,255,0.015)),
        rgba(12, 15, 18, 0.58);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
}

.lobby-hot-universe-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(190, 205, 220, 0.12), transparent 42%);
    pointer-events: none;
}

.lobby-hot-universe-card.is-owned {
    border-color: rgba(175, 220, 125, 0.22);
}

.lobby-hot-card-top {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 10px;
}

.lobby-hot-card-top .lobby-status-pill {
    position: static;
}

.lobby-mini-pill {
    display: inline-flex;
    align-items: center;
    min-height: 20px;
    padding: 0 8px;
    border-radius: 999px;
    color: #e8edf2;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 10px;
    white-space: nowrap;
}

.lobby-hot-universe-card h3 {
    position: relative;
    z-index: 1;
    margin: 0;
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
}

.lobby-hot-universe-card p {
    position: relative;
    z-index: 1;
    margin: 6px 0 10px;
    color: #bfc8d0;
    font-size: 11px;
    line-height: 1.45;
}

.lobby-player-name {
    position: relative;
    z-index: 1;
    margin: 9px 0;
    padding: 8px 9px;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.22);
    color: #cdd5dc;
    font-size: 11px;
}

.lobby-player-name strong {
    color: #ffffff;
}

.lobby-hot-stats {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
    margin: 10px 0;
}

.lobby-hot-stats span {
    display: block;
    padding: 8px;
    border-radius: 9px;
    background: rgba(255, 255, 255, 0.045);
    color: #aeb7bf;
    font-size: 10px;
}

.lobby-hot-stats strong {
    display: block;
    margin-top: 3px;
    color: #ffffff;
    font-size: 14px;
}

.lobby-profile-mini strong,
.lobby-profile-mini span {
    display: block;
}

.lobby-profile-mini strong {
    color: #ffffff;
    font-size: 15px;
}

.lobby-profile-mini span {
    margin-top: 2px;
    color: #aeb7bf;
    font-size: 11px;
    word-break: break-all;
}

.lobby-error {
    margin: 0 0 12px;
    padding: 10px 12px;
    border: 1px solid rgba(255, 110, 110, 0.28);
    border-radius: 10px;
    color: #ffd8d8;
    background: rgba(150, 50, 50, 0.13);
    font-size: 12px;
}

@media (max-width: 980px) {
    .lobby-hotgame-hero {
        grid-template-columns: 1fr;
    }

    .lobby-global-stats {
        min-width: 0;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 560px) {
    .lobby-global-stats,
    .lobby-hot-stats,
    .lobby-universe-board {
        grid-template-columns: 1fr;
    }
}

/* v17 / HotGame V4: affichage simplifié, infos serveur + boutons accès */
.lobby-hotgame-v4 .lobby-topbar-right .lobby-topbar-stat:not(:last-child) {
    margin-right: 2px;
}

.lobby-hotgame-v4 .lobby-global-stats {
    grid-template-columns: repeat(4, minmax(105px, 1fr));
}

.lobby-hotgame-v4 .lobby-server-info-card .lobby-title-row {
    margin-bottom: 10px;
}

.lobby-hotgame-v4 .lobby-info-table {
    min-width: 820px;
}

.lobby-hotgame-v4 .lobby-info-table td strong {
    color: #ffffff;
}

.lobby-hotgame-v4 .lobby-info-table td small {
    display: block;
    margin-top: 3px;
    color: #aeb7bf;
    font-size: 10px;
    line-height: 1.25;
}

.lobby-btn.is-access,
a.lobby-btn.is-access {
    background: linear-gradient(180deg, rgba(112, 190, 75, 0.98) 0%, rgba(42, 112, 43, 0.98) 100%);
    border-color: rgba(170, 245, 120, 0.36);
    color: #f1ffe8;
    text-shadow: 0 1px 0 rgba(0, 0, 0, 0.36);
}

.lobby-btn.is-access:hover,
a.lobby-btn.is-access:hover {
    color: #ffffff;
    filter: brightness(1.08);
}

.lobby-btn.is-disabled,
span.lobby-btn.is-disabled {
    background: linear-gradient(180deg, rgba(95, 99, 104, 0.76) 0%, rgba(48, 51, 55, 0.76) 100%);
    border-color: rgba(190, 195, 200, 0.14);
    color: #c0c6cc;
    cursor: not-allowed;
    box-shadow: none;
    opacity: 0.72;
}

.lobby-btn.is-table-action {
    min-height: 28px;
    padding: 0 10px;
    border-radius: 8px;
    font-size: 10px;
    white-space: nowrap;
    box-shadow: none;
}

.lobby-hotgame-v4 .lobby-table th:last-child,
.lobby-hotgame-v4 .lobby-table td:last-child {
    width: 112px;
}

@media (max-width: 980px) {
    .lobby-hotgame-v4 .lobby-global-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .lobby-hotgame-v4 .lobby-info-table {
        min-width: 760px;
    }
}

/* v18 OAuth lobby buttons */
.lobby-social-btn.is-google,
.lobby-social-btn.is-facebook {
    position: relative;
    gap: 6px;
}

.lobby-social-btn.is-google::before,
.lobby-social-btn.is-facebook::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: currentColor;
    opacity: 0.85;
}

/* =========================================================
   UNIDY MODERN LOBBY 2026
   ========================================================= */
body.light,
body#news.light,
body#rules.light,
body#register.light,
body#index.light {
    color: #eaf4ff;
    background:
        linear-gradient(180deg, rgba(2, 7, 22, 0.2) 0%, rgba(2, 7, 22, 0.55) 45%, rgba(1, 4, 14, 0.88) 100%),
        radial-gradient(circle at 15% 15%, rgba(74, 32, 139, 0.35), transparent 35%),
        radial-gradient(circle at 85% 20%, rgba(40, 131, 255, 0.22), transparent 26%),
        #020611 url('../../images/login/ogamex/73dd4d54cf59c3aa92e6fcce6e462a.jpg') center top / cover no-repeat fixed;
}

body.light::before {
    content: '';
    display: block;
    position: fixed;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.08) 0, rgba(255,255,255,0.02) 2px, transparent 3px) 0 0 / 220px 220px,
        radial-gradient(circle at 70% 18%, rgba(132, 209, 255, 0.15), transparent 22%),
        radial-gradient(circle at 60% 60%, rgba(85, 123, 255, 0.10), transparent 18%);
    opacity: .9;
}

body.light::after {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(1, 6, 18, 0.15) 0%, rgba(1, 6, 18, 0) 20%, rgba(1, 6, 18, 0.35) 100%);
}

.lobby-shell {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    padding: 16px;
}

.lobby-shell-modern {
    max-width: 1680px;
    margin: 0 auto;
}

.lobby-topbar,
.lobby-topbar-modern {
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
    padding: 14px 20px;
    margin: 0 auto 22px;
    border: 1px solid rgba(89, 148, 255, 0.20);
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(6, 16, 37, 0.88) 0%, rgba(3, 11, 28, 0.78) 100%);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.34), inset 0 1px 0 rgba(255,255,255,0.06);
    backdrop-filter: blur(18px);
}

.lobby-brand {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 180px;
    color: #f6fbff;
    font-size: 34px;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.lobby-brand small {
    display: block;
    color: #96b2d5;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.26em;
    text-transform: uppercase;
}

.lobby-brand-icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    position: relative;
    background: linear-gradient(180deg, rgba(25, 99, 255, 0.28) 0%, rgba(6, 37, 93, 0.42) 100%);
    border: 1px solid rgba(111, 180, 255, 0.42);
    box-shadow: 0 0 22px rgba(59, 146, 255, 0.28), inset 0 1px 0 rgba(255,255,255,0.1);
}

.lobby-brand-icon::before,
.lobby-brand-icon::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.lobby-brand-icon::before {
    top: 8px;
    width: 16px;
    height: 20px;
    background: linear-gradient(180deg, #f4fbff, #72c4ff);
    clip-path: polygon(50% 0%, 100% 18%, 88% 100%, 50% 86%, 12% 100%, 0 18%);
}

.lobby-brand-icon::after {
    bottom: 8px;
    width: 22px;
    height: 10px;
    border-top: 2px solid rgba(202, 233, 255, 0.85);
    border-left: 2px solid transparent;
    border-right: 2px solid transparent;
    filter: drop-shadow(0 0 8px rgba(113, 190, 255, 0.4));
}

.lobby-topnav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex: 1 1 420px;
    min-width: 320px;
}

.lobby-topnav a {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 10px 14px;
    border-radius: 12px;
    color: #d6e6ff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.03em;
    transition: .2s ease;
}

.lobby-topnav a i {
    color: #7abaff;
}

.lobby-topnav a:hover,
.lobby-topnav a.is-active {
    color: #ffffff;
    background: linear-gradient(180deg, rgba(22, 52, 109, 0.66), rgba(9, 29, 73, 0.78));
    box-shadow: inset 0 -2px 0 rgba(73, 185, 255, 0.9), 0 10px 20px rgba(3, 14, 45, 0.35);
}

.lobby-topbar-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    flex-wrap: wrap;
}

.lobby-topbar-lang-select {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.lobby-topbar-lang-select label,
.lobby-topbar-stat {
    color: #b9d3ef;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.lobby-topbar-select {
    height: 40px;
    min-width: 120px;
    padding: 0 38px 0 14px;
    border-radius: 12px;
    border: 1px solid rgba(105, 162, 255, 0.24);
    background: rgba(6, 16, 37, 0.88);
    color: #eff6ff;
}

.lobby-topbar-stat {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 12px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
}

.lobby-topbar-stat i,
.lobby-topbar-stat strong {
    color: #87d456;
}

.lobby-topbar-stat.is-account strong {
    color: #f4f9ff;
}

.lobby-anchor-btn,
.lobby-btn,
.lobby-social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 44px;
    padding: 0 18px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    transition: .2s ease;
    border: 1px solid rgba(121, 179, 255, 0.25);
    color: #eef7ff;
    background: linear-gradient(180deg, rgba(16, 42, 92, 0.92) 0%, rgba(7, 22, 54, 0.96) 100%);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.24);
}

.lobby-anchor-btn:hover,
.lobby-btn:hover,
.lobby-social-btn:hover {
    color: #fff;
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.30), 0 0 18px rgba(57, 157, 255, 0.16);
}

.lobby-btn.full,
.lobby-social-btn,
.lobby-anchor-btn.full {
    width: 100%;
}

.lobby-btn.is-primary {
    background: linear-gradient(180deg, #2e8eff 0%, #0a53c8 100%);
    border-color: rgba(143, 207, 255, 0.6);
}

.lobby-btn.is-access {
    background: linear-gradient(180deg, #0f4fa3 0%, #072b63 100%);
    border-color: rgba(80, 174, 255, 0.45);
}

.lobby-btn.is-secondary {
    background: linear-gradient(180deg, rgba(11, 22, 45, 0.96), rgba(5, 14, 30, 0.98));
}

.lobby-btn.is-warm {
    background: linear-gradient(180deg, #6c4b17 0%, #31210b 100%);
    border-color: rgba(255, 189, 86, 0.48);
}

.lobby-btn.is-disabled,
.lobby-social-btn.is-disabled {
    cursor: not-allowed;
    opacity: .65;
    background: linear-gradient(180deg, rgba(39, 47, 66, 0.88), rgba(20, 25, 36, 0.92));
    border-color: rgba(255,255,255,0.08);
}

.lobby-social-row,
.lobby-btn-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.lobby-btn-row.stacked,
.lobby-social-row {
    flex-direction: column;
}

.lobby-social-btn.is-google {
    background: linear-gradient(180deg, rgba(14, 29, 58, 0.96), rgba(6, 17, 35, 0.98));
}

.lobby-social-btn.is-facebook {
    background: linear-gradient(180deg, rgba(20, 44, 106, 0.96), rgba(7, 23, 60, 0.98));
}

.lobby-main,
.lobby-main-modern {
    max-width: 1500px;
    margin: 0 auto;
    padding: 6px 0 40px;
}

.lobby-home-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.65fr) 360px;
    gap: 24px;
    align-items: start;
}

.lobby-home-main {
    position: relative;
    min-width: 0;
}

.lobby-hero-ship {
    position: absolute;
    left: -110px;
    bottom: 240px;
    width: 860px;
    height: 440px;
    background: url('../../images/login/ogamex/lobby-bg.jpg') no-repeat left bottom / 980px auto;
    opacity: .48;
    pointer-events: none;
    filter: saturate(1.08) brightness(0.95) drop-shadow(0 30px 60px rgba(0, 0, 0, 0.45));
    mix-blend-mode: screen;
    z-index: 0;
}

.lobby-logo-stage,
.lobby-universe-showcase,
.lobby-home-bottom-grid {
    position: relative;
    z-index: 1;
}

.lobby-logo-stage {
    text-align: center;
    padding: 16px 20px 22px;
}

.lobby-logo-emblem {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 110px;
    height: 70px;
    margin-bottom: 6px;
    position: relative;
}

.lobby-logo-emblem::before,
.lobby-logo-emblem::after,
.lobby-logo-emblem span {
    content: '';
    position: absolute;
    top: 8px;
    width: 30px;
    height: 42px;
    background: linear-gradient(180deg, #dff3ff, #53b8ff 68%, #1c6df1);
    clip-path: polygon(50% 0%, 100% 26%, 68% 100%, 50% 84%, 32% 100%, 0 26%);
    filter: drop-shadow(0 0 14px rgba(91, 188, 255, 0.45));
}

.lobby-logo-emblem::before { left: 16px; transform: skewY(-12deg); }
.lobby-logo-emblem::after { right: 16px; transform: skewY(12deg); }
.lobby-logo-emblem span {
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: 26px;
    height: 58px;
}

.lobby-logo-wordmark {
    font-size: clamp(68px, 11vw, 150px);
    line-height: .9;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #f6fbff;
    text-shadow: 0 4px 0 rgba(123, 145, 180, 0.4), 0 0 30px rgba(75, 164, 255, 0.18), 0 18px 36px rgba(0,0,0,.35);
}

.lobby-logo-tagline {
    margin-top: 10px;
    color: #d7ecff;
    font-size: 16px;
    letter-spacing: 0.34em;
    text-transform: uppercase;
}

.lobby-hero-intro,
.lobby-hero-text {
    max-width: 780px;
    margin: 14px auto 0;
    color: #bed0e7;
    font-size: 14px;
    line-height: 1.7;
}

.lobby-card {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    border: 1px solid rgba(99, 157, 255, 0.20);
    background: linear-gradient(180deg, rgba(5, 18, 45, 0.82) 0%, rgba(3, 11, 28, 0.90) 100%);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255,255,255,0.05);
    backdrop-filter: blur(14px);
}

.lobby-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(72, 161, 255, 0.08), transparent 42%);
    pointer-events: none;
}

.lobby-card-inner {
    position: relative;
    z-index: 1;
    padding: 22px;
}

.lobby-title-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 16px;
}

.lobby-section-title {
    margin: 0;
    color: #f6fbff;
    font-size: 29px;
    font-weight: 800;
    letter-spacing: 0.01em;
}

.lobby-link-inline {
    color: #7fc7ff;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.lobby-link-inline:hover {
    color: #ffffff;
    text-decoration: none;
}

.lobby-universe-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.lobby-universe-card {
    position: relative;
    overflow: hidden;
    min-height: 260px;
    padding: 18px;
    border-radius: 18px;
    border: 1px solid rgba(105, 166, 255, 0.28);
    background: linear-gradient(180deg, rgba(7, 22, 51, 0.92), rgba(4, 13, 33, 0.96));
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
}

.lobby-universe-card::before {
    content: '';
    position: absolute;
    right: -40px;
    bottom: -42px;
    width: 190px;
    height: 190px;
    border-radius: 50%;
    opacity: .55;
    background: radial-gradient(circle at 32% 32%, rgba(255,255,255,.7), rgba(96, 189, 255, 0.25) 34%, rgba(5, 24, 62, 0) 70%);
}

.lobby-universe-card.tone-2::before {
    background: radial-gradient(circle at 35% 35%, rgba(255,255,255,.72), rgba(99, 123, 255, 0.28) 38%, rgba(5, 24, 62, 0) 70%);
}

.lobby-universe-card.tone-3::before {
    background: radial-gradient(circle at 35% 35%, rgba(255,255,255,.74), rgba(255, 122, 72, 0.30) 40%, rgba(5, 24, 62, 0) 72%);
}

.lobby-universe-card-top {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: flex-start;
}

.lobby-universe-card h3 {
    margin: 0;
    font-size: 30px;
    color: #f4fbff;
}

.lobby-universe-card p {
    margin: 6px 0 0;
    color: #a8c4e3;
    font-size: 13px;
}

.lobby-card-badge,
.lobby-pill-inline {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
}

.lobby-card-badge.is-open,
.lobby-pill-inline {
    color: #bff1a4;
    background: rgba(91, 177, 62, 0.16);
    border: 1px solid rgba(127, 229, 87, 0.22);
}

.lobby-card-badge.is-closed {
    color: #ffb39f;
    background: rgba(183, 57, 26, 0.16);
    border: 1px solid rgba(255, 131, 78, 0.22);
}

.lobby-card-badge.is-warn {
    color: #ffd48a;
    background: rgba(191, 119, 5, 0.16);
    border: 1px solid rgba(255, 184, 75, 0.22);
}

.lobby-universe-mini-stats,
.lobby-stat-list,
.lobby-status-list {
    list-style: none;
    margin: 18px 0 0;
    padding: 0;
}

.lobby-universe-mini-stats li,
.lobby-stat-list li,
.lobby-status-list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    color: #dbe9f8;
}

.lobby-universe-mini-stats li:last-child,
.lobby-stat-list li:last-child,
.lobby-status-list li:last-child {
    border-bottom: 0;
}

.lobby-universe-mini-stats span,
.lobby-stat-list span,
.lobby-status-list span,
.lobby-metric span,
.lobby-news-meta,
.lobby-subtext,
.lobby-help,
.lobby-copy span {
    color: #9fb7d5;
}

.lobby-universe-mini-stats strong,
.lobby-stat-list strong,
.lobby-status-list strong,
.lobby-metric strong {
    color: #f4fbff;
}

.lobby-universe-card-actions {
    position: relative;
    z-index: 1;
    margin-top: 18px;
}

.lobby-home-bottom-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.16fr) minmax(0, 0.84fr);
    gap: 18px;
    margin-top: 20px;
}

.lobby-news-feed {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.lobby-news-entry {
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 14px;
    padding: 14px;
    border-radius: 16px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
}

.lobby-news-entry:nth-child(2) .lobby-news-thumb { background: linear-gradient(180deg, #532ce4 0%, #24116b 100%); }
.lobby-news-entry:nth-child(3) .lobby-news-thumb { background: linear-gradient(180deg, #d77b24 0%, #6a320c 100%); }

.lobby-news-thumb {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 14px;
    color: #fff;
    font-size: 22px;
    background: linear-gradient(180deg, #1f95ff 0%, #0a4bc2 100%);
    box-shadow: 0 10px 20px rgba(0,0,0,0.25);
}

.lobby-news-copy h3,
.lobby-news-item h3 {
    margin: 0 0 6px;
    font-size: 22px;
    color: #f4fbff;
}

.lobby-news-text,
.lobby-news-text p,
.lobby-copy p,
.lobby-future-universe p,
.lobby-rules-content {
    color: #d7e3f1;
    line-height: 1.65;
}

.lobby-live-metrics {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.lobby-metric {
    padding: 16px;
    border-radius: 16px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
}

.lobby-metric strong {
    display: block;
    margin-top: 8px;
    font-size: 32px;
    line-height: 1;
}

.lobby-highlight-strip,
.lobby-status-note,
.lobby-side-summary {
    margin-top: 18px;
    padding: 14px 16px;
    border-radius: 16px;
    color: #d9e9ff;
    background: linear-gradient(180deg, rgba(10, 26, 58, 0.96), rgba(4, 14, 34, 0.98));
    border: 1px solid rgba(97, 161, 255, 0.18);
}

.lobby-highlight-strip strong,
.lobby-status-note strong,
.lobby-side-summary strong {
    color: #ffffff;
    margin-left: 8px;
}

.lobby-highlight-strip small {
    margin-left: 10px;
    color: #9fb7d5;
}

.lobby-home-side {
    display: flex;
    flex-direction: column;
    gap: 18px;
    min-width: 0;
}

.lobby-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.lobby-form label,
.lobby-register-form-grid label,
.field label {
    display: block;
    margin-bottom: 8px;
    color: #d9e9ff;
    font-weight: 700;
    font-size: 13px;
}

.lobby-form input,
.lobby-form select,
.lobby-register-form-grid input,
.lobby-register-form-grid select,
.field input,
.field select,
.field textarea {
    width: 100%;
    min-height: 46px;
    padding: 0 14px;
    border-radius: 12px;
    border: 1px solid rgba(98, 157, 255, 0.22);
    background: rgba(5, 15, 34, 0.92);
    color: #f6fbff;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}

.lobby-form input:focus,
.lobby-form select:focus,
.lobby-register-form-grid input:focus,
.lobby-register-form-grid select:focus,
.field input:focus,
.field select:focus,
.field textarea:focus {
    outline: none;
    border-color: rgba(99, 187, 255, 0.64);
    box-shadow: 0 0 0 2px rgba(57, 149, 255, 0.18), inset 0 1px 0 rgba(255,255,255,0.05);
}

.lobby-inline-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-size: 13px;
}

.lobby-inline-row a,
.lobby-check,
.lobby-check span,
.lobby-rules-content a,
.lobby-news-text a,
.lobby-copy a,
.lobby-footer a {
    color: #79c5ff;
}

.lobby-check {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
}

.lobby-check input[type="checkbox"] {
    width: 16px;
    height: 16px;
    min-height: 16px;
    margin: 0;
}

.lobby-muted-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #92b0d4;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 12px;
    font-weight: 700;
}

.lobby-muted-divider::before,
.lobby-muted-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(255,255,255,0.10);
}

.lobby-copy {
    color: #d9e4f2;
}

.lobby-copy strong {
    display: block;
    margin-bottom: 6px;
    font-size: 26px;
    color: #ffffff;
}

.lobby-profile-mini span {
    display: block;
    margin-bottom: 10px;
}

.lobby-page-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 20px;
}

.lobby-register-layout {
    display: grid;
    grid-template-columns: 320px minmax(0, 1fr);
    gap: 20px;
    align-items: start;
}

.lobby-register-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.lobby-register-form-grid .full,
.lobby-register-form-grid > .full,
.field.full {
    grid-column: 1 / -1;
}

.lobby-help {
    display: block;
    margin-top: 6px;
    font-size: 12px;
    line-height: 1.5;
}

.lobby-error,
.lobby-success {
    padding: 12px 14px;
    margin-bottom: 14px;
    border-radius: 12px;
    font-weight: 700;
}

.lobby-error {
    color: #ffd7d0;
    background: rgba(147, 34, 9, 0.26);
    border: 1px solid rgba(255, 116, 79, 0.28);
}

.lobby-success {
    color: #dbffd1;
    background: rgba(42, 121, 16, 0.24);
    border: 1px solid rgba(122, 235, 86, 0.26);
}

.lobby-empty {
    padding: 18px;
    color: #b5cbe7;
    border-radius: 14px;
    background: rgba(255,255,255,0.03);
    border: 1px dashed rgba(255,255,255,0.10);
}

.lobby-details-section {
    margin-top: 28px;
}

.lobby-table-wrap {
    overflow-x: auto;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.08);
}

.lobby-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 880px;
}

.lobby-table thead th {
    padding: 14px 16px;
    text-align: left;
    color: #8eb2db;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    background: rgba(255,255,255,0.03);
}

.lobby-table tbody td {
    padding: 14px 16px;
    color: #e8f3ff;
    border-top: 1px solid rgba(255,255,255,0.08);
    vertical-align: middle;
}

.lobby-table tbody tr:hover {
    background: rgba(255,255,255,0.03);
}

.lobby-table small {
    display: block;
    color: #91aac7;
    margin-top: 4px;
}

.lobby-btn.is-table-action {
    min-height: 38px;
    padding: 0 14px;
    font-size: 13px;
}

.lobby-future-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.lobby-future-universe {
    padding: 18px;
    border-radius: 18px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
}

.lobby-future-topline,
.lobby-future-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 16px;
    color: #9fb7d5;
    font-size: 13px;
}

.lobby-future-universe h3 {
    margin: 12px 0 8px;
    font-size: 24px;
    color: #f6fbff;
}

.lobby-future-subtitle {
    color: #cfe3fa;
    font-weight: 700;
}

.lobby-news-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.lobby-news-item {
    padding: 4px 2px;
}

.lobby-rules-content {
    font-size: 15px;
}

.lobby-rules-content ul,
.lobby-rules-content ol {
    padding-left: 22px;
}

.lobby-rules-content h1,
.lobby-rules-content h2,
.lobby-rules-content h3,
.lobby-rules-content h4 {
    color: #ffffff;
}

.lobby-footer,
.lobby-footer-modern {
    max-width: 1500px;
    margin: 24px auto 0;
    padding: 0 0 10px;
}

.lobby-footer-benefits {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    padding: 18px 20px;
    border-radius: 22px;
    border: 1px solid rgba(99, 157, 255, 0.20);
    background: linear-gradient(180deg, rgba(6, 18, 46, 0.84), rgba(3, 11, 28, 0.92));
    box-shadow: 0 20px 44px rgba(0, 0, 0, 0.24);
}

.lobby-benefit-item {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
}

.lobby-benefit-item i {
    flex: 0 0 auto;
    width: 54px;
    height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    color: #dff3ff;
    font-size: 22px;
    background: linear-gradient(180deg, rgba(33, 105, 255, 0.44), rgba(8, 40, 101, 0.68));
    border: 1px solid rgba(111, 180, 255, 0.32);
}

.lobby-benefit-item strong {
    display: block;
    color: #ffffff;
    font-size: 18px;
}

.lobby-benefit-item span {
    display: block;
    margin-top: 4px;
    color: #a9c4e3;
    font-size: 13px;
    line-height: 1.45;
}

.lobby-footer-inner {
    margin-top: 16px;
    padding: 16px 20px 8px;
    text-align: center;
    color: #9cb8d9;
}

.lobby-footer-inner a {
    margin: 0 8px;
    text-decoration: none;
}

.lobby-footer-inner a:hover,
.lobby-inline-row a:hover,
.lobby-rules-content a:hover,
.lobby-news-text a:hover,
.lobby-copy a:hover,
.lobby-footer a:hover {
    color: #ffffff;
    text-decoration: none;
}

@media (max-width: 1400px) {
    .lobby-home-layout {
        grid-template-columns: minmax(0, 1fr) 340px;
    }

    .lobby-universe-cards,
    .lobby-future-grid,
    .lobby-footer-benefits {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .lobby-logo-wordmark {
        letter-spacing: 0.05em;
    }
}

@media (max-width: 1180px) {
    .lobby-home-layout,
    .lobby-register-layout {
        grid-template-columns: 1fr;
    }

    .lobby-home-bottom-grid {
        grid-template-columns: 1fr;
    }

    .lobby-hero-ship {
        left: -140px;
        bottom: 280px;
        width: 760px;
        opacity: .32;
    }

    .lobby-topnav {
        order: 3;
        width: 100%;
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 2px;
    }
}

@media (max-width: 860px) {
    .lobby-shell {
        padding: 10px;
    }

    .lobby-topbar,
    .lobby-topbar-modern,
    .lobby-card-inner,
    .lobby-footer-benefits {
        padding-left: 16px;
        padding-right: 16px;
    }

    .lobby-brand {
        font-size: 28px;
    }

    .lobby-logo-wordmark {
        font-size: clamp(54px, 16vw, 102px);
    }

    .lobby-logo-tagline {
        letter-spacing: 0.18em;
        font-size: 13px;
    }

    .lobby-universe-cards,
    .lobby-future-grid,
    .lobby-footer-benefits,
    .lobby-live-metrics,
    .lobby-register-form-grid {
        grid-template-columns: 1fr;
    }

    .lobby-page-header,
    .lobby-title-row,
    .lobby-inline-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .lobby-hero-ship {
        width: 620px;
        bottom: 340px;
        left: -220px;
        opacity: .24;
    }

    .lobby-section-title {
        font-size: 24px;
    }
}

@media (max-width: 560px) {
    .lobby-topbar-right,
    .lobby-topbar-lang-select {
        width: 100%;
    }

    .lobby-topbar-select,
    .lobby-anchor-btn,
    .lobby-topbar-stat {
        width: 100%;
    }

    .lobby-news-entry {
        grid-template-columns: 1fr;
    }

    .lobby-news-thumb {
        width: 48px;
        height: 48px;
    }

    .lobby-footer-inner {
        line-height: 2;
    }
}

/* =========================================================
   UNIDY LOBBY REFINEMENT 2026-07-19
   More compact and closer to approved mockup
   ========================================================= */
body.light,
body#news.light,
body#rules.light,
body#register.light,
body#index.light {
    background:
        linear-gradient(180deg, rgba(2, 6, 20, 0.16) 0%, rgba(2, 7, 20, 0.48) 44%, rgba(1, 4, 14, 0.86) 100%),
        radial-gradient(circle at 18% 14%, rgba(74, 32, 139, 0.24), transparent 34%),
        radial-gradient(circle at 84% 18%, rgba(37, 122, 255, 0.18), transparent 24%),
        #020611 url('../../images/login/ogamex/73dd4d54cf59c3aa92e6fcce6e462a.jpg') center top / cover no-repeat fixed;
}

.lobby-shell-modern,
.lobby-main,
.lobby-main-modern,
.lobby-footer,
.lobby-footer-modern {
    max-width: 1440px;
}

.lobby-topbar,
.lobby-topbar-modern {
    padding: 10px 18px;
    margin-bottom: 16px;
    border-radius: 18px;
}

.lobby-brand {
    font-size: 30px;
}

.lobby-brand small {
    font-size: 10px;
}

.lobby-topnav a {
    padding: 9px 12px;
    font-size: 12px;
}

.lobby-topbar-select,
.lobby-anchor-btn,
.lobby-btn,
.lobby-social-btn {
    min-height: 40px;
}

.lobby-main,
.lobby-main-modern {
    padding-bottom: 22px;
}

.lobby-home-layout {
    gap: 18px;
    grid-template-columns: minmax(0, 1.7fr) 330px;
}

.lobby-hero-ship {
    left: -54px;
    bottom: 286px;
    width: 540px;
    height: 355px;
    background: url('../../images/login/unidy_lobby_ship.png') no-repeat center / contain;
    opacity: .92;
    filter: drop-shadow(0 28px 42px rgba(0, 0, 0, 0.40));
    mix-blend-mode: normal;
}

.lobby-logo-stage {
    padding: 4px 10px 12px;
}

.lobby-logo-emblem {
    width: 92px;
    height: 58px;
    margin-bottom: 2px;
}

.lobby-logo-wordmark {
    font-size: clamp(60px, 9vw, 126px);
}

.lobby-logo-tagline {
    margin-top: 6px;
    font-size: 14px;
    letter-spacing: 0.28em;
}

.lobby-hero-intro,
.lobby-hero-text {
    max-width: 680px;
    margin-top: 10px;
    font-size: 13px;
    line-height: 1.55;
}

.lobby-card {
    border-radius: 20px;
}

.lobby-card-inner {
    padding: 18px;
}

.lobby-title-row {
    margin-bottom: 12px;
}

.lobby-section-title {
    font-size: 25px;
}

.lobby-universe-showcase .lobby-card-inner {
    padding-bottom: 16px;
}

.lobby-universe-cards {
    grid-template-columns: repeat(auto-fit, minmax(215px, 250px));
    justify-content: flex-start;
    align-items: start;
    gap: 14px;
}

.lobby-universe-card {
    min-height: 214px;
    padding: 15px;
    border-radius: 16px;
}

.lobby-universe-card h3 {
    font-size: 22px;
    line-height: 1.05;
}

.lobby-universe-card p,
.lobby-news-meta,
.lobby-help,
.lobby-subtext,
.lobby-hero-intro,
.lobby-hero-text,
.lobby-universe-mini-stats span,
.lobby-stat-list span,
.lobby-status-list span,
.lobby-metric span {
    font-size: 12px;
}

.lobby-universe-mini-stats,
.lobby-stat-list,
.lobby-status-list {
    margin-top: 12px;
}

.lobby-universe-mini-stats li,
.lobby-stat-list li,
.lobby-status-list li {
    padding: 8px 0;
}

.lobby-universe-card-actions {
    margin-top: 12px;
}

.lobby-home-bottom-grid {
    align-items: start;
    gap: 16px;
    margin-top: 16px;
}

.lobby-news-entry {
    padding: 12px;
    gap: 12px;
}

.lobby-news-thumb {
    width: 48px;
    height: 48px;
    font-size: 18px;
    border-radius: 12px;
}

.lobby-news-copy h3,
.lobby-news-item h3 {
    font-size: 18px;
    margin-bottom: 4px;
}

.lobby-live-metrics {
    gap: 10px;
}

.lobby-metric {
    padding: 12px;
    border-radius: 14px;
}

.lobby-metric strong {
    margin-top: 6px;
    font-size: 22px;
}

.lobby-highlight-strip,
.lobby-status-note,
.lobby-side-summary {
    margin-top: 12px;
    padding: 12px 14px;
    border-radius: 14px;
}

.lobby-home-side {
    gap: 16px;
}

.lobby-side-panel .lobby-card-inner,
.lobby-status-card .lobby-card-inner {
    padding: 16px;
}

.lobby-form {
    gap: 12px;
}

.lobby-form label,
.lobby-register-form-grid label,
.field label {
    margin-bottom: 6px;
    font-size: 12px;
}

.lobby-form input,
.lobby-form select,
.lobby-register-form-grid input,
.lobby-register-form-grid select,
.field input,
.field select,
.field textarea {
    min-height: 42px;
}

.lobby-inline-row {
    font-size: 12px;
}

.lobby-btn-row,
.lobby-social-row {
    gap: 10px;
}

.lobby-details-section {
    margin-top: 18px;
}

.lobby-table thead th,
.lobby-table tbody td {
    padding-top: 11px;
    padding-bottom: 11px;
}

.lobby-future-card {
    margin-top: 16px !important;
}

.lobby-future-grid {
    gap: 14px;
}

.lobby-future-universe {
    padding: 15px;
    border-radius: 16px;
}

.lobby-future-universe h3 {
    font-size: 20px;
}

.lobby-footer-benefits {
    gap: 14px;
    padding: 14px 18px;
    border-radius: 18px;
}

.lobby-benefit-item i {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    font-size: 18px;
}

.lobby-benefit-item strong {
    font-size: 16px;
}

.lobby-benefit-item span {
    font-size: 12px;
}

.lobby-footer-inner {
    margin-top: 10px;
    padding-top: 12px;
}

@media (max-width: 1180px) {
    .lobby-home-layout {
        grid-template-columns: 1fr;
    }

    .lobby-hero-ship {
        left: -120px;
        bottom: 250px;
        width: 440px;
        height: 300px;
        opacity: .72;
    }
}

@media (max-width: 860px) {
    .lobby-hero-ship {
        left: -170px;
        bottom: 220px;
        width: 360px;
        height: 245px;
        opacity: .45;
    }

    .lobby-logo-wordmark {
        font-size: clamp(52px, 14vw, 90px);
    }

    .lobby-logo-tagline {
        letter-spacing: 0.16em;
    }
}

/* =========================================================
   UNIDY LOBBY SIZE TUNING 2026-07-19
   Smaller logo, headings and overall typography
   ========================================================= */
.lobby-brand {
    font-size: 26px;
}

.lobby-brand-icon {
    width: 40px;
    height: 40px;
}

.lobby-logo-stage {
    padding: 0 10px 8px;
}

.lobby-logo-emblem {
    width: 74px;
    height: 46px;
    margin-bottom: 0;
}

.lobby-logo-wordmark {
    font-size: clamp(48px, 7.4vw, 96px);
    letter-spacing: 0.04em;
}

.lobby-logo-tagline {
    margin-top: 4px;
    font-size: 11px;
    letter-spacing: 0.22em;
}

.lobby-hero-intro,
.lobby-hero-text {
    max-width: 620px;
    margin-top: 8px;
    font-size: 11px;
    line-height: 1.45;
}

.lobby-section-title {
    font-size: 18px;
}

.lobby-link-inline {
    font-size: 11px;
}

.lobby-universe-card h3,
.lobby-news-copy h3,
.lobby-news-item h3,
.lobby-future-universe h3 {
    font-size: 16px;
}

.lobby-card-inner {
    padding: 15px;
}

.lobby-universe-card {
    min-height: 188px;
    padding: 12px;
}

.lobby-universe-mini-stats li,
.lobby-stat-list li,
.lobby-status-list li {
    padding: 6px 0;
}

.lobby-universe-card p,
.lobby-news-meta,
.lobby-help,
.lobby-subtext,
.lobby-universe-mini-stats span,
.lobby-stat-list span,
.lobby-status-list span,
.lobby-metric span,
.lobby-benefit-item span,
.lobby-footer-inner,
.lobby-table thead th,
.lobby-table tbody td {
    font-size: 11px;
}

.lobby-metric strong {
    font-size: 18px;
}

.lobby-topnav a,
.lobby-topbar-stat,
.lobby-form label,
.lobby-register-form-grid label,
.field label,
.lobby-inline-row,
.lobby-btn,
.lobby-anchor-btn,
.lobby-social-btn {
    font-size: 12px;
}

.lobby-topbar,
.lobby-topbar-modern {
    padding: 8px 14px;
}

.lobby-topbar-select,
.lobby-anchor-btn,
.lobby-btn,
.lobby-social-btn,
.lobby-form input,
.lobby-form select,
.lobby-register-form-grid input,
.lobby-register-form-grid select,
.field input,
.field select,
.field textarea {
    min-height: 38px;
}

.lobby-benefit-item strong {
    font-size: 14px;
}

.lobby-benefit-item i {
    width: 40px;
    height: 40px;
    font-size: 15px;
}

@media (max-width: 860px) {
    .lobby-logo-wordmark {
        font-size: clamp(40px, 13vw, 74px);
    }

    .lobby-logo-tagline {
        letter-spacing: 0.12em;
    }
}

/* =========================================================
   UNIDY LOBBY CONNECTED/GUEST LOGIC 2026-07-19
   Guest: no universe data. Connected: compact universe lists.
   ========================================================= */
.lobby-brand {
    text-decoration: none;
}

.lobby-brand:hover {
    color: #ffffff;
    text-decoration: none;
}

.lobby-guest-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 18px;
    align-items: start;
    max-width: 1120px;
    margin: 0 auto;
}

.lobby-guest-hero {
    position: relative;
    min-width: 0;
}

.lobby-guest-hero .lobby-logo-stage {
    min-height: 260px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.lobby-guest-hero .lobby-hero-ship {
    left: -92px;
    bottom: 92px;
    width: 430px;
    height: 280px;
    opacity: .62;
}

.lobby-guest-news {
    margin-top: 4px;
}

.lobby-news-feed-compact .lobby-news-entry {
    min-height: 0;
}

.lobby-news-feed-compact .lobby-news-text {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

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

.lobby-connected-dashboard {
    max-width: 1320px;
    margin: 0 auto;
}

.lobby-connected-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 14px;
    padding: 2px 4px;
}

.lobby-connected-heading h1 {
    margin: 0;
    color: #f7fbff;
    font-size: 24px;
    line-height: 1.15;
}

.lobby-connected-heading p {
    margin: 6px 0 0;
    color: #a9c0dc;
    font-size: 12px;
}

.lobby-connected-summary {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 14px;
    color: #a9c0dc;
    background: rgba(5, 18, 45, 0.72);
    border: 1px solid rgba(99, 157, 255, 0.18);
}

.lobby-connected-summary strong {
    color: #ffffff;
    font-size: 22px;
}

.lobby-universe-list-card + .lobby-universe-list-card {
    margin-top: 14px;
}

.lobby-universe-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.lobby-universe-row {
    display: grid;
    grid-template-columns: minmax(140px, 1.25fr) repeat(6, minmax(78px, .7fr)) minmax(120px, .9fr);
    gap: 10px;
    align-items: center;
    padding: 11px 12px;
    border-radius: 14px;
    background: linear-gradient(180deg, rgba(8, 28, 65, 0.78), rgba(4, 16, 39, 0.90));
    border: 1px solid rgba(96, 161, 255, 0.15);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.035);
}

.lobby-universe-row:hover {
    border-color: rgba(98, 177, 255, 0.34);
    background: linear-gradient(180deg, rgba(11, 36, 82, 0.88), rgba(5, 19, 47, 0.96));
}

.lobby-universe-row-main,
.lobby-universe-row-item {
    min-width: 0;
}

.lobby-universe-row-main strong {
    display: block;
    overflow: hidden;
    color: #ffffff;
    font-size: 15px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.lobby-universe-row-main span,
.lobby-universe-row-item span {
    display: block;
    overflow: hidden;
    color: #87a5c7;
    font-size: 9px;
    line-height: 1.25;
    text-transform: uppercase;
    letter-spacing: .05em;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.lobby-universe-row-item strong {
    display: block;
    overflow: hidden;
    margin-top: 3px;
    color: #eaf5ff;
    font-size: 12px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.lobby-universe-row-action {
    display: flex;
    justify-content: flex-end;
}

.lobby-universe-row-action .lobby-btn {
    width: 100%;
    min-height: 34px;
    padding: 0 10px;
    font-size: 11px;
}

.lobby-connected-bottom {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(260px, .65fr);
    gap: 14px;
    margin-top: 14px;
}

.lobby-connected-bottom .lobby-live-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.lobby-connected-dashboard .lobby-future-card {
    margin-top: 14px !important;
}

/* Forgot password */
.lobby-password-shell {
    min-height: 100vh;
}

.lobby-password-main {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 390px;
    gap: 26px;
    align-items: center;
    max-width: 940px;
    min-height: calc(100vh - 230px);
    margin: 0 auto;
    padding: 18px 0 30px;
}

.lobby-password-intro {
    padding: 24px;
}

.lobby-password-intro .lobby-logo-emblem {
    margin: 0 0 10px;
}

.lobby-password-intro h1 {
    margin: 4px 0 10px;
    color: #ffffff;
    font-size: 34px;
    line-height: 1.1;
}

.lobby-password-intro > p {
    max-width: 520px;
    margin: 0;
    color: #b7cce5;
    font-size: 13px;
    line-height: 1.65;
}

.lobby-password-tip {
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 520px;
    margin-top: 18px;
    padding: 14px;
    border-radius: 14px;
    color: #cfe5ff;
    font-size: 12px;
    line-height: 1.45;
    background: rgba(8, 28, 65, 0.72);
    border: 1px solid rgba(96, 161, 255, 0.18);
}

.lobby-password-tip i {
    color: #7ac3ff;
    font-size: 20px;
}

.lobby-password-card {
    width: 100%;
}

.lobby-captcha-field {
    overflow-x: auto;
}

.lobby-password-footer {
    margin-top: 0;
}

@media (max-width: 1180px) {
    .lobby-universe-row {
        grid-template-columns: minmax(140px, 1.25fr) repeat(3, minmax(85px, .75fr)) minmax(120px, .9fr);
    }

    .lobby-universe-row-item:nth-of-type(4),
    .lobby-universe-row-item:nth-of-type(5),
    .lobby-universe-row-item:nth-of-type(6) {
        display: none;
    }
}

@media (max-width: 900px) {
    .lobby-guest-layout,
    .lobby-password-main,
    .lobby-connected-bottom {
        grid-template-columns: 1fr;
    }

    .lobby-guest-login {
        position: static;
    }

    .lobby-guest-hero .lobby-logo-stage {
        min-height: 220px;
    }

    .lobby-universe-row {
        grid-template-columns: minmax(120px, 1fr) repeat(2, minmax(80px, .8fr)) minmax(110px, .8fr);
    }

    .lobby-universe-row-item:nth-of-type(3) {
        display: none;
    }

    .lobby-password-main {
        max-width: 560px;
        min-height: 0;
    }

    .lobby-password-intro {
        padding: 10px 4px;
        text-align: center;
    }

    .lobby-password-intro .lobby-logo-emblem {
        margin-left: auto;
        margin-right: auto;
    }

    .lobby-password-tip {
        margin-left: auto;
        margin-right: auto;
        text-align: left;
    }
}

@media (max-width: 640px) {
    .lobby-connected-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .lobby-universe-row {
        grid-template-columns: minmax(0, 1fr) 108px;
    }

    .lobby-universe-row-item {
        display: none !important;
    }

    .lobby-universe-row-action .lobby-btn {
        white-space: normal;
        text-align: center;
    }
}

/* V23 - vote lobby du prochain univers */
.lobby-next-universe-vote{scroll-margin-top:90px}.lobby-vote-eyebrow{display:inline-block;margin-bottom:5px;color:#64ddff;font-size:10px;font-weight:700;letter-spacing:.12em;text-transform:uppercase}.lobby-vote-message{margin:10px 0;padding:9px 11px;border-radius:8px;border:1px solid rgba(95,174,225,.35);background:rgba(13,51,79,.65);color:#d8efff}.lobby-vote-message.success{border-color:rgba(112,193,91,.55);background:rgba(38,83,31,.62);color:#d9ffd0}.lobby-vote-message.error{border-color:rgba(210,93,93,.55);background:rgba(88,30,30,.62);color:#ffd3d3}.lobby-vote-options{display:grid;grid-template-columns:repeat(2,minmax(260px,1fr));gap:12px;margin-top:13px}.lobby-vote-option{position:relative;display:flex;flex-direction:column;gap:8px;padding:13px;border:1px solid rgba(86,137,178,.24);border-radius:12px;background:linear-gradient(180deg,rgba(9,25,43,.94),rgba(5,13,24,.96));cursor:pointer;transition:.16s ease}.lobby-vote-option:hover{transform:translateY(-2px);border-color:rgba(82,190,242,.62);box-shadow:0 12px 24px rgba(0,0,0,.22)}.lobby-vote-option.selected{border-color:#67dfff;box-shadow:0 0 0 1px rgba(103,223,255,.13) inset,0 0 22px rgba(34,155,213,.14)}.lobby-vote-option>input[type=radio]{position:absolute;right:13px;top:15px;accent-color:#4dcff7}.lobby-vote-option-head{display:flex;justify-content:space-between;align-items:center;gap:10px;padding-right:28px}.lobby-vote-option-head strong{color:#fff;font-size:15px}.lobby-vote-option-head em{font-style:normal;color:#69ddff;font-size:13px;font-weight:700}.lobby-vote-option-description{color:#90a9bf;line-height:1.45}.lobby-vote-speeds{display:grid;grid-template-columns:repeat(3,1fr);gap:7px}.lobby-vote-speeds>span{padding:8px;border-radius:8px;background:rgba(3,11,20,.5);border:1px solid rgba(83,139,183,.18);color:#7792aa;font-size:10px;text-transform:uppercase}.lobby-vote-speeds b{display:block;margin-top:3px;color:#fff;font-size:14px;text-transform:none}.lobby-vote-note{color:#b8cad9;font-size:11px;line-height:1.4}.lobby-vote-progress{display:block;height:7px;border-radius:999px;overflow:hidden;background:#06101c;border:1px solid rgba(84,139,181,.24)}.lobby-vote-progress i{display:block;height:100%;min-width:0;background:linear-gradient(90deg,#258cc3,#5bddff,#85d95c);border-radius:999px}.lobby-vote-count{color:#6f8ba2;font-size:10px}.lobby-vote-footer{display:flex;justify-content:space-between;align-items:center;gap:14px;margin-top:14px;padding-top:12px;border-top:1px solid rgba(87,137,177,.17)}.lobby-vote-footer>span{color:#7893aa;font-size:11px}.lobby-vote-footer .lobby-btn{border:0;cursor:pointer}
@media(max-width:920px){.lobby-vote-options{grid-template-columns:1fr}}@media(max-width:620px){.lobby-vote-speeds{grid-template-columns:1fr 1fr 1fr}.lobby-vote-footer{align-items:stretch;flex-direction:column}.lobby-vote-footer .lobby-btn{width:100%}}

/* V23.1 - Vote du prochain univers par étapes */
.lobby-vote-v2 .lobby-card-inner{padding:20px}.lobby-vote-v2-header{display:flex;align-items:flex-start;justify-content:space-between;gap:20px}.lobby-vote-v2-header .lobby-subtext{max-width:800px}.lobby-vote-v2-state{display:flex;min-width:140px;flex-direction:column;align-items:center;padding:11px;border:1px solid rgba(83,146,188,.28);border-radius:11px;background:rgba(3,12,21,.55);text-align:center}.lobby-vote-v2-state strong{color:#fff;font-size:25px;line-height:1}.lobby-vote-v2-state span{margin:4px 0 8px;color:#7792a9;font-size:9px;text-transform:uppercase}.lobby-vote-v2-state em{padding:4px 8px;border-radius:999px;font-size:9px;font-style:normal;font-weight:800;text-transform:uppercase}.lobby-vote-v2-state.open em{border:1px solid rgba(94,169,80,.65);background:rgba(39,83,32,.7);color:#d8ffd1}.lobby-vote-v2-state.ended em{border:1px solid rgba(185,143,67,.58);background:rgba(77,55,19,.75);color:#ffe4a2}.lobby-vote-stepper{display:flex;align-items:flex-start;gap:5px;margin:17px 0 15px;overflow-x:auto;padding:2px 2px 8px}.lobby-vote-step-dot{position:relative;display:flex;min-width:112px;flex:1;flex-direction:column;align-items:center;color:#637f97;text-align:center}.lobby-vote-step-dot:not(:last-child):after{position:absolute;left:calc(50% + 18px);right:calc(-50% + 18px);top:15px;height:2px;background:#16374e;content:""}.lobby-vote-step-dot b{position:relative;z-index:1;display:grid;width:31px;height:31px;place-items:center;border:1px solid #315c77;border-radius:50%;background:#071725;color:#7895ab;transition:.18s ease}.lobby-vote-step-dot small{margin-top:6px;max-width:110px;font-size:9px;line-height:1.25}.lobby-vote-step-dot.active b{border-color:#61d9ff;background:#164f70;color:#fff;box-shadow:0 0 15px rgba(79,201,242,.24)}.lobby-vote-step-dot.active small{color:#d9f4ff}.lobby-vote-step-dot.done b{border-color:#5b9b52;background:#285b2b;color:#dcffd7}.lobby-vote-step-dot.done:not(:last-child):after{background:#3f8144}.lobby-vote-step-panels{min-height:310px}.lobby-vote-step-panel{display:none;animation:lobbyVoteFade .18s ease}.lobby-vote-step-panel.active{display:block}@keyframes lobbyVoteFade{from{opacity:.25;transform:translateX(8px)}to{opacity:1;transform:none}}.lobby-vote-question-head{margin-bottom:13px;text-align:center}.lobby-vote-question-head>span{color:#62d9ff;font-size:9px;font-weight:800;letter-spacing:.11em;text-transform:uppercase}.lobby-vote-question-head h3{margin:4px 0 5px;color:#fff;font-size:21px}.lobby-vote-question-head p{margin:0;color:#7f9aaf}.lobby-vote-choice-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(145px,1fr));gap:10px;max-width:940px;margin:0 auto}.lobby-vote-choice{position:relative;display:flex;min-height:82px;flex-direction:column;align-items:center;justify-content:center;gap:5px;padding:12px;border:1px solid rgba(76,133,173,.3);border-radius:11px;background:linear-gradient(180deg,rgba(10,31,49,.96),rgba(5,15,25,.96));cursor:pointer;text-align:center;transition:.16s ease}.lobby-vote-choice:hover{transform:translateY(-2px);border-color:rgba(84,198,239,.7);box-shadow:0 10px 20px rgba(0,0,0,.22)}.lobby-vote-choice input{position:absolute;opacity:0;pointer-events:none}.lobby-vote-choice-mark{position:absolute;right:9px;top:9px;width:13px;height:13px;border:1px solid #476d86;border-radius:50%;background:#07131f}.lobby-vote-choice.selected{border-color:#60d9ff;background:linear-gradient(180deg,rgba(17,62,87,.96),rgba(6,25,39,.96));box-shadow:0 0 0 1px rgba(96,217,255,.12) inset,0 0 18px rgba(48,171,215,.14)}.lobby-vote-choice.selected .lobby-vote-choice-mark{border:4px solid #65dcff;width:7px;height:7px;background:#fff}.lobby-vote-choice strong{color:#fff;font-size:18px}.lobby-vote-choice small{color:#7893a9;line-height:1.35}.lobby-vote-step-error{display:none;margin:10px auto 0;color:#ff9f9f;text-align:center}.lobby-vote-step-panel.has-error .lobby-vote-step-error{display:block}.lobby-vote-step-panel.has-error .lobby-vote-choice-grid{animation:lobbyVoteShake .22s ease}@keyframes lobbyVoteShake{25%{transform:translateX(-4px)}75%{transform:translateX(4px)}}.lobby-vote-step-actions{display:flex;align-items:center;justify-content:space-between;gap:10px;margin-top:17px;padding-top:12px;border-top:1px solid rgba(76,129,169,.18)}.lobby-vote-step-actions .lobby-btn{border:1px solid rgba(76,134,176,.45);cursor:pointer}.lobby-vote-step-actions .lobby-vote-prev{background:#0a1c2b;color:#9eb6c8}.lobby-vote-submit.is-loading{opacity:.65;cursor:wait}.lobby-vote-review{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:9px;max-width:800px;margin:0 auto}.lobby-vote-review>div{display:flex;align-items:center;justify-content:space-between;gap:12px;padding:11px;border:1px solid rgba(72,128,169,.28);border-radius:9px;background:rgba(4,15,25,.55)}.lobby-vote-review span{color:#7894aa}.lobby-vote-review strong{color:#fff;font-size:15px}.lobby-vote-connected-note{margin-top:10px;color:#6f8ba1;font-size:10px;text-align:center}.lobby-vote-locked,.lobby-vote-results-intro{display:flex;align-items:center;gap:13px;margin:15px 0;padding:13px;border:1px solid rgba(84,144,185,.28);border-radius:10px;background:rgba(5,20,33,.7)}.lobby-vote-locked>i,.lobby-vote-results-intro>i{display:grid;width:38px;height:38px;place-items:center;border-radius:50%;background:#173c56;color:#70dcff;font-size:17px}.lobby-vote-locked strong,.lobby-vote-results-intro strong{display:block;color:#fff}.lobby-vote-locked span,.lobby-vote-results-intro span{display:block;margin-top:3px;color:#819caf}.lobby-vote-review.static{margin-bottom:4px}.lobby-vote-results-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:11px}.lobby-vote-result-card{padding:13px;border:1px solid rgba(76,135,176,.28);border-radius:11px;background:linear-gradient(180deg,rgba(9,28,46,.94),rgba(4,14,24,.96))}.lobby-vote-result-card header{margin-bottom:11px}.lobby-vote-result-card header span{color:#63d9ff;font-size:9px;font-weight:800;text-transform:uppercase}.lobby-vote-result-card h3{margin:3px 0;color:#fff;font-size:16px}.lobby-vote-result-option{position:relative;margin-bottom:10px;padding:8px;border-radius:8px;background:rgba(2,10,18,.4)}.lobby-vote-result-option:last-child{margin-bottom:0}.lobby-vote-result-option>div:first-child{display:flex;align-items:center;justify-content:space-between;gap:8px;margin-bottom:5px}.lobby-vote-result-option strong{color:#d8eaf6}.lobby-vote-result-option span{color:#6fd9ff;font-size:10px}.lobby-vote-result-track{height:7px;overflow:hidden;border:1px solid rgba(68,120,156,.32);border-radius:999px;background:#04101a}.lobby-vote-result-track i{display:block;height:100%;border-radius:999px;background:linear-gradient(90deg,#247cac,#62dcff)}.lobby-vote-result-option.winner{border:1px solid rgba(117,181,74,.35);background:rgba(38,66,25,.35)}.lobby-vote-result-option.winner .lobby-vote-result-track i{background:linear-gradient(90deg,#558f32,#a1e46e)}.lobby-vote-result-option em{position:absolute;right:8px;top:-7px;padding:2px 6px;border-radius:999px;background:#5e8d35;color:#efffdc;font-size:8px;font-style:normal;font-weight:800;text-transform:uppercase}
@media(max-width:900px){.lobby-vote-results-grid{grid-template-columns:1fr}.lobby-vote-review{grid-template-columns:1fr}}
@media(max-width:620px){.lobby-vote-v2 .lobby-card-inner{padding:14px}.lobby-vote-v2-header{flex-direction:column}.lobby-vote-v2-state{width:100%;box-sizing:border-box}.lobby-vote-choice-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.lobby-vote-step-dot{min-width:90px}.lobby-vote-step-actions .lobby-btn{min-width:0;padding-left:12px;padding-right:12px}}
