.getting-page {
    padding: 42px 0 64px;
    position: relative;
}

.getting-page::before {
    content: '';
    position: absolute;
    top: -90px;
    left: 22%;
    width: 820px;
    height: 560px;
    background:
        radial-gradient(ellipse at 30% 10%, rgba(74, 163, 255, 0.10) 0%, transparent 48%),
        radial-gradient(ellipse at 82% 36%, rgba(16, 185, 129, 0.06) 0%, transparent 42%);
    pointer-events: none;
}

.getting-shell {
    position: relative;
    z-index: 1;
    max-width: 1120px;
    margin: 0 auto;
    display: grid;
    gap: 18px;
}

.getting-hero,
.setup-panel,
.connect-panel,
.help-panel {
    position: relative;
    border: 1px solid rgba(125, 175, 255, 0.14);
    border-radius: 18px;
    background:
        radial-gradient(ellipse at 18% 0%, rgba(74, 163, 255, 0.10) 0%, transparent 42%),
        linear-gradient(180deg, rgba(10, 15, 25, 0.58), rgba(7, 12, 22, 0.52));
    backdrop-filter: blur(16px) saturate(130%);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.24);
    overflow: hidden;
}

.getting-hero::before,
.setup-panel::before,
.connect-panel::before,
.help-panel::before {
    content: '';
    position: absolute;
    inset: 0 0 auto;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(125, 175, 255, 0.42), transparent);
}

.getting-hero {
    min-height: 260px;
    padding: 34px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 28px;
    align-items: end;
}

.getting-title {
    margin: 0 0 12px;
    color: #f4f8ff;
    font-size: 2.55rem;
    font-weight: 900;
    line-height: 1.06;
}

.getting-subtitle {
    max-width: 670px;
    margin: 0;
    color: #bfd0ea;
    font-size: 1.05rem;
    line-height: 1.7;
}

.hero-status-card {
    min-width: 250px;
    padding: 16px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.045);
}

.hero-status-label {
    color: #8fa5c4;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
}

.hero-status-value {
    margin-top: 6px;
    color: #f4f8ff;
    font-size: 1.08rem;
    font-weight: 900;
}

.hero-status-note {
    margin-top: 8px;
    color: #9fb2ce;
    font-size: 0.82rem;
    line-height: 1.45;
}

.getting-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    gap: 18px;
}

.troubleshooting-panel,
.setup-panel,
.connect-panel,
.help-panel {
    padding: 24px;
}

.panel-title {
    margin: 0 0 7px;
    color: #f4f8ff;
    font-size: 1.32rem;
    font-weight: 900;
}

.panel-copy {
    margin: 0 0 18px;
    color: #9fb2ce;
    line-height: 1.6;
}

.panel-heading-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 18px;
    align-items: start;
    margin-bottom: 16px;
}

.progress-card {
    min-width: 118px;
    padding: 12px;
    border-radius: 14px;
    border: 1px solid rgba(74, 163, 255, 0.18);
    background: rgba(74, 163, 255, 0.08);
    text-align: right;
}

.progress-card span {
    display: block;
    color: #f4f8ff;
    font-size: 1.1rem;
    font-weight: 900;
}

.progress-card strong {
    display: block;
    margin-top: 2px;
    color: #8fa5c4;
    font-size: 0.7rem;
    font-weight: 900;
    text-transform: uppercase;
}

.setup-progress {
    height: 8px;
    margin: 0 0 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.07);
    overflow: hidden;
}

.setup-progress span {
    display: block;
    width: 0;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(135deg, #4aa3ff, #22c55e);
    transition: width 0.2s ease;
}

.step-list {
    display: grid;
    gap: 12px;
}

.step-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 14px;
    padding: 18px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.045);
    cursor: pointer;
    transition: all 0.2s ease;
}

.step-card:hover {
    border-color: rgba(125, 175, 255, 0.22);
    background: rgba(74, 163, 255, 0.065);
}

.step-card.completed {
    border-color: rgba(34, 197, 94, 0.24);
    background: rgba(34, 197, 94, 0.06);
}

.step-check {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.step-number {
    width: 42px;
    height: 42px;
    border-radius: 13px;
    background: linear-gradient(135deg, #4aa3ff, #1f6fd6);
    color: #fff;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 22px rgba(74, 163, 255, 0.24);
}

.step-card.completed .step-number {
    background: linear-gradient(135deg, #22c55e, #15803d);
}

.step-card.completed .step-number::before {
    content: '\F26E';
    font-family: 'bootstrap-icons';
}

.step-card.completed .step-number {
    font-size: 0;
}

.step-card.completed .step-number::before {
    font-size: 1rem;
}

.step-title {
    color: #eaf2ff;
    font-size: 1.02rem;
    font-weight: 900;
}

.step-title i {
    color: #7bb4ff;
    margin-right: 7px;
}

.step-text {
    margin-top: 5px;
    color: #95a8c4;
    font-size: 0.9rem;
    line-height: 1.55;
}

.action-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 14px;
}

.copy-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    align-items: center;
    margin-top: 12px;
    padding: 10px;
    border-radius: 12px;
    border: 1px solid rgba(125, 175, 255, 0.14);
    background: rgba(3, 7, 14, 0.36);
}

.copy-row code,
.install-path code,
.troubleshooting-list code {
    color: #b8dcff;
    font-family: Consolas, Monaco, monospace;
    font-size: 0.86rem;
}

.getting-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 42px;
    padding: 10px 17px;
    border-radius: 999px;
    color: #fff;
    font-weight: 900;
    text-decoration: none;
    border: 1px solid transparent;
    transition: all 0.2s ease;
}

.getting-btn:hover {
    color: #fff;
    transform: translateY(-1px);
}

.getting-btn.primary {
    background: linear-gradient(135deg, #4aa3ff, #1f6fd6);
    box-shadow: 0 8px 22px rgba(74, 163, 255, 0.24);
}

.getting-btn.secondary {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(125, 175, 255, 0.24);
    color: #d7e6ff;
}

.connect-stack {
    display: grid;
    gap: 14px;
}

.realmlist-box {
    display: grid;
    gap: 10px;
    padding: 16px;
    border-radius: 14px;
    background: rgba(3, 7, 14, 0.42);
    border: 1px solid rgba(125, 175, 255, 0.16);
}

.realmlist-label {
    color: #8fa5c4;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
}

.realmlist-value-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    align-items: center;
}

.realmlist-value {
    color: #b8dcff;
    font-family: Consolas, Monaco, monospace;
    font-size: 0.95rem;
    font-weight: 900;
    word-break: break-all;
}

.btn-copy {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 999px;
    border: 1px solid rgba(74, 163, 255, 0.28);
    background: rgba(74, 163, 255, 0.12);
    color: #a8d8ff;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-copy.small {
    width: 34px;
    height: 34px;
}

.btn-copy:hover,
.btn-copy.copied {
    color: #fff;
    background: rgba(74, 163, 255, 0.22);
    transform: translateY(-1px);
}

.install-paths {
    display: grid;
    gap: 10px;
    margin-top: 12px;
}

.install-path {
    display: grid;
    gap: 8px;
    padding: 12px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
}

.install-path > span {
    color: #8fa5c4;
    font-size: 0.72rem;
    font-weight: 900;
    text-transform: uppercase;
}

.install-path > div {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px;
    align-items: center;
}

.support-actions {
    flex-wrap: nowrap;
}

.support-actions .getting-btn {
    flex: 1 1 0;
    padding-left: 12px;
    padding-right: 12px;
    white-space: nowrap;
}

.mini-note {
    padding: 14px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.045);
    color: #95a8c4;
    font-size: 0.9rem;
    line-height: 1.55;
}

.mini-note strong {
    color: #eaf2ff;
}

.help-panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.troubleshooting-panel {
    position: relative;
    border: 1px solid rgba(125, 175, 255, 0.14);
    border-radius: 18px;
    background:
        radial-gradient(ellipse at 18% 0%, rgba(74, 163, 255, 0.10) 0%, transparent 42%),
        linear-gradient(180deg, rgba(10, 15, 25, 0.58), rgba(7, 12, 22, 0.52));
    backdrop-filter: blur(16px) saturate(130%);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.24);
    overflow: hidden;
}

.troubleshooting-panel::before {
    content: '';
    position: absolute;
    inset: 0 0 auto;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(125, 175, 255, 0.42), transparent);
}

.band-header .panel-copy {
    margin-bottom: 0;
}

.troubleshooting-panel .band-header {
    margin-bottom: 22px;
}

.troubleshooting-list {
    display: grid;
    gap: 10px;
}

.troubleshooting-list details {
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.045);
    overflow: hidden;
}

.troubleshooting-list summary {
    list-style: none;
    padding: 15px 16px;
    color: #eaf2ff;
    font-weight: 900;
    cursor: pointer;
}

.troubleshooting-list summary::-webkit-details-marker {
    display: none;
}

.troubleshooting-list summary::after {
    content: '+';
    float: right;
    color: #7bb4ff;
}

.troubleshooting-list details[open] summary::after {
    content: '-';
}

.troubleshooting-list p {
    margin: 0;
    padding: 0 16px 16px;
    color: #9fb2ce;
    line-height: 1.55;
}

.help-title {
    margin: 0 0 5px;
    color: #f4f8ff;
    font-size: 1.05rem;
    font-weight: 900;
}

.help-text {
    margin: 0;
    color: #9fb2ce;
}

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

    .hero-status-card {
        min-width: 0;
    }
}

@media (max-width: 620px) {
    .getting-page {
        padding-top: 24px;
    }

    .getting-hero,
    .setup-panel,
    .connect-panel,
    .troubleshooting-panel,
    .help-panel {
        border-radius: 14px;
        padding: 20px;
    }

    .getting-title {
        font-size: 2.05rem;
    }

    .step-card,
    .realmlist-value-row,
    .panel-heading-row,
    .copy-row,
    .help-panel {
        grid-template-columns: 1fr;
    }

    .help-panel {
        display: grid;
    }

    .getting-btn,
    .btn-copy {
        width: 100%;
    }

    .support-actions {
        flex-wrap: wrap;
    }

    .progress-card {
        text-align: left;
    }
}
