:root {
    --bg: #050908;
    --bg-card: rgba(255, 255, 255, 0.04);
    --bg-input: rgba(0, 0, 0, 0.3);
    --border: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(147, 233, 190, 0.3);
    --text: #f5f5f5;
    --text-dim: #888;
    --text-dimmer: #555;
    --accent: #93E9BE;
    --accent-bright: #B8F0D3;
    --accent-deep: #5BC998;
    --green: #93E9BE;
    --red: #f87171;
    --yellow: #fbbf24;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    min-height: 100%;
    background: var(--bg);
    color: var(--text);
    font-family: 'Inter', system-ui, sans-serif;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background: 
        radial-gradient(ellipse at top left, rgba(147, 233, 190, 0.08), transparent 50%),
        radial-gradient(ellipse at bottom right, rgba(80, 150, 255, 0.04), transparent 50%);
    pointer-events: none;
    z-index: 0;
}

main {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    position: relative;
    z-index: 1;
}

.card {
    width: 100%;
    max-width: 560px;
    background: var(--bg-card);
    backdrop-filter: blur(20px) saturate(150%);
    -webkit-backdrop-filter: blur(20px) saturate(150%);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: 999px;
    font-size: 13px;
    color: var(--text-dim);
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

.status .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--text-dimmer);
    transition: background 0.3s ease;
}

.status.online .dot {
    background: var(--accent);
    box-shadow: 0 0 10px rgba(147, 233, 190, 0.7);
}
.status.online { color: var(--accent); border-color: rgba(147, 233, 190, 0.25); }

.status.offline .dot { background: var(--red); }
.status.offline { color: var(--red); }

h1 {
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    font-size: 56px;
    letter-spacing: -0.04em;
    line-height: 1;
    margin-bottom: 8px;
    background: linear-gradient(180deg, #fff, #aaa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.subtitle {
    font-size: 16px;
    color: var(--text-dim);
    margin-bottom: 32px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 24px;
}

.info-item {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 14px 16px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.info-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-dimmer);
    font-weight: 500;
}

.info-value {
    font-family: 'JetBrains Mono', monospace;
    font-size: 16px;
    font-weight: 500;
    color: var(--text);
}

.player-list-section {
    margin-bottom: 24px;
    padding: 16px;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border);
    border-radius: 12px;
}

.player-list-section.hidden { display: none; }

.player-list-section .info-label {
    display: block;
    margin-bottom: 10px;
}

.player-list {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.player-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 10px;
    background: rgba(147, 233, 190, 0.1);
    border: 1px solid rgba(147, 233, 190, 0.25);
    border-radius: 6px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 13px;
    color: var(--accent);
}

.player-tag::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 6px rgba(147, 233, 190, 0.6);
}

.address { margin-bottom: 32px; }

.label {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-dimmer);
    margin-bottom: 8px;
}

.address-button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 16px 20px;
    background: var(--bg-input);
    border: 1px solid var(--border);
    border-radius: 12px;
    color: var(--text);
    font-family: 'JetBrains Mono', monospace;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.address-button:hover {
    background: rgba(147, 233, 190, 0.06);
    border-color: var(--border-hover);
    transform: translateY(-1px);
}

.copy-feedback { color: var(--text-dim); display: flex; align-items: center; transition: color 0.2s ease; }
.copy-feedback.copied { color: var(--accent); }

.how { margin-bottom: 32px; }

.how h2, .request h2 {
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-dim);
    margin-bottom: 16px;
}

.how ol { list-style: none; counter-reset: step; }

.how li {
    counter-increment: step;
    padding-left: 36px;
    position: relative;
    margin-bottom: 12px;
    color: var(--text);
    font-size: 15px;
    line-height: 1.5;
}

.how li::before {
    content: counter(step);
    position: absolute;
    left: 0;
    top: 0;
    width: 24px;
    height: 24px;
    background: rgba(147, 233, 190, 0.1);
    border: 1px solid rgba(147, 233, 190, 0.25);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    font-weight: 500;
    color: var(--accent);
}

.how strong { color: var(--accent); font-weight: 600; }

.request {
    padding-top: 32px;
    border-top: 1px solid var(--border);
}

.request-help {
    font-size: 14px;
    color: var(--text-dim);
    margin-bottom: 20px;
    line-height: 1.5;
}

.field { margin-bottom: 16px; position: relative; }

.field label {
    display: block;
    font-size: 13px;
    color: var(--text-dim);
    margin-bottom: 6px;
    font-weight: 500;
}

.field input, .field textarea {
    width: 100%;
    padding: 12px 14px;
    background: var(--bg-input);
    border: 1px solid var(--border);
    border-radius: 10px;
    color: var(--text);
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    transition: all 0.2s ease;
    resize: none;
}

.field input:focus, .field textarea:focus {
    outline: none;
    border-color: var(--accent);
    background: rgba(0, 0, 0, 0.4);
    box-shadow: 0 0 0 3px rgba(147, 233, 190, 0.12);
}

.field input::placeholder, .field textarea::placeholder {
    color: var(--text-dimmer);
}

.char-count {
    position: absolute;
    bottom: 8px;
    right: 12px;
    font-size: 11px;
    color: var(--text-dimmer);
    font-family: 'JetBrains Mono', monospace;
    pointer-events: none;
}

.submit-button {
    width: 100%;
    padding: 14px 20px;
    background: var(--accent);
    border: none;
    border-radius: 10px;
    color: #052015;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.submit-button:hover {
    background: var(--accent-bright);
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(147, 233, 190, 0.25);
}

.submit-button:active { transform: translateY(0); }

.submit-button:disabled {
    background: rgba(147, 233, 190, 0.3);
    color: rgba(5, 32, 21, 0.5);
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.form-feedback {
    margin-top: 12px;
    padding: 0 4px;
    font-size: 13px;
    min-height: 18px;
    transition: color 0.2s ease;
}

.form-feedback.success { color: var(--accent); }
.form-feedback.error { color: var(--red); }

@media (max-width: 540px) {
    .card { padding: 32px 24px; }
    h1 { font-size: 44px; }
    .info-grid { grid-template-columns: repeat(3, 1fr); gap: 8px; }
    .info-item { padding: 10px 12px; }
    .info-value { font-size: 14px; }
}
