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

body {
    background: #fafafa;
    font-family: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
    font-weight: 400;
    transition: background 0.2s;
    color: #18181b;
}

body.dark-mode {
    background: #0f0f0f;
    color: #e4e4e7;
}

.hero-photo {
    position: relative;
    width: 100%;
    height: 110vh;
    min-height: 700px;
    background-image: url('/images/index/index_0.jpg');
    background-size: cover;
    background-position: center 40%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.1) 60%, rgba(20,20,20,0.6) 100%);
    z-index: 1;
}

.hero-photo-content {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 2rem 2.5rem;
    color: white;
    transform: translateY(-5%);
    text-align: left;
}

.hero-photo-content h1 {
    font-size: clamp(4rem, 12vw, 6.5rem);
    font-weight: 650;
    line-height: 1.15;
    letter-spacing: -0.01em;
    text-shadow: 0 4px 20px rgba(0,0,0,0.2);
    max-width: 1000px;
}

.hero-photo-content .highlight {
    color: #6ee7b7;
    text-shadow: 0 2px 10px rgba(16,185,129,0.3);
}

.hero-subtitle {
    font-size: 1.4rem;
    opacity: 0.85;
    margin-top: 2rem;
    text-shadow: 0 2px 8px rgba(0,0,0,0.2);
    max-width: 800px;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 2rem;
    font-weight: 400;
    letter-spacing: 0.3px;
}

.hero-subtitle span {
    display: inline-flex;
    align-items: center;
}

.hero-subtitle .divider {
    color: rgba(255,255,255,0.4);
    font-weight: 300;
    margin: 0 0.5rem;
}

html, body {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

html::-webkit-scrollbar, body::-webkit-scrollbar {
    display: none;
}

@media (max-width: 768px) {
    .hero-photo {
        height: 100vh;
        min-height: 600px;
        background-position: center 35%;
    }
    .hero-photo-content {
        padding: 1.5rem 1.8rem;
        text-align: center;
        transform: translateY(-3%);
    }
    .hero-photo-content h1 {
        font-size: clamp(3.8rem, 12vw, 5.5rem);
        max-width: 100%;
        line-height: 1.2;
    }
    .hero-subtitle {
        font-size: 1.35rem;
        justify-content: center;
        margin-top: 1.8rem;
        gap: 0.5rem 1.5rem;
        max-width: 100%;
    }
    .hero-subtitle .divider {
        margin: 0 0.3rem;
    }
}

@media (max-width: 480px) {
    .hero-photo-content {
        padding: 1.2rem 1.2rem;
    }
    .hero-photo-content h1 {
        font-size: clamp(3.4rem, 11vw, 4.5rem);
    }
    .hero-subtitle {
        font-size: 1.25rem;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.4rem 0.8rem;
    }
    .hero-subtitle .divider {
        margin: 0 0.2rem;
    }
}

.server-status-section {
    padding: 3rem 1.5rem;
    background-color: #ffffff;
}

body.dark-mode .server-status-section {
    background-color: #0f0f0f;
}

.server-status-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    background-color: transparent;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 2rem 2rem 1.8rem;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

body.dark-mode .server-status-wrapper {
    border-color: #2e2e2e;
}

.server-status-title {
    font-size: 1.5rem;
    font-weight: 550;
    color: #18181b;
    margin-bottom: 1.8rem;
    margin-left: 0.2rem;
    letter-spacing: -0.01em;
}

body.dark-mode .server-status-title {
    color: #e4e4e7;
}

.status-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.server-card {
    flex: 1 1 360px;
    max-width: 420px;
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 1.8rem 1.8rem 1.2rem 1.8rem;
    transition: background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s;
    box-shadow: 0 4px 12px rgba(0,0,0,0.02);
}

body.dark-mode .server-card {
    background-color: #1a1a1a;
    border-color: #2e2e2e;
}

.server-card:hover {
    background-color: #f9fafb;
    border-color: #cbd5e1;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

body.dark-mode .server-card:hover {
    background-color: #242424;
    border-color: #52525b;
}

.card-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.server-name {
    font-size: 2rem;
    font-weight: 600;
    color: #0f172a;
    margin: 0;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.server-version {
    font-size: 1rem;
    font-weight: 450;
    color: #64748b;
    margin-left: 6px;
}

body.dark-mode .server-name {
    color: #f1f5f9;
}

body.dark-mode .server-version {
    color: #94a3b8;
}

.status-badge {
    font-size: 2rem;
    line-height: 1;
    color: #94a3b8;
    transition: color 0.2s;
}

.server-address-wrapper {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.9rem;
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 0.25rem 0.25rem 0.25rem 1rem;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.server-card:hover .server-address-wrapper {
    background-color: #f1f5f9;
    border-color: #cbd5e1;
}

body.dark-mode .server-address-wrapper {
    background-color: #1e1e1e;
    border-color: #3f3f46;
}

body.dark-mode .server-card:hover .server-address-wrapper {
    background-color: #2a2a2a;
    border-color: #52525b;
}

.server-address-text {
    font-size: 1.05rem;
    color: #475569;
    font-family: 'SF Mono', 'Monaco', 'Inconsolata', 'Fira Code', monospace;
    word-break: break-all;
    flex: 1;
}

body.dark-mode .server-address-text {
    color: #cbd5e1;
}

.copy-btn {
    background: transparent;
    border: 1px solid transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    border-radius: 12px;
    color: #64748b;
    transition: border-color 0.2s ease, background 0.2s;
    flex-shrink: 0;
}

.copy-btn:hover {
    background: #ffffff;
    border-color: #94a3b8;
    color: #0f172a;
}

body.dark-mode .copy-btn {
    color: #cbd5e1;
}

body.dark-mode .copy-btn:hover {
    background: #2e2e2e;
    border-color: #a1a1aa;
    color: #f1f5f9;
}

.server-info-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-top: 0.2rem;
    padding: 0 0.1rem;
}

.server-info-item {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.info-label {
    font-size: 0.9rem;
    font-weight: 500;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

body.dark-mode .info-label {
    color: #94a3b8;
}

.info-value {
    font-size: 1.6rem;
    font-weight: 500;
    color: #0f172a;
    font-family: 'SF Mono', 'Monaco', 'Inconsolata', 'Fira Code', monospace;
    line-height: 1.2;
}

body.dark-mode .info-value {
    color: #f1f5f9;
}

@media (max-width: 640px) {
    .server-status-section {
        padding: 2rem 1rem;
    }
    .server-status-wrapper {
        padding: 1.5rem 1.2rem;
    }
    .server-status-title {
        font-size: 1.4rem;
        margin-bottom: 1.5rem;
    }
    .server-card {
        flex: 1 1 100%;
        max-width: 100%;
        padding: 1.5rem 1.5rem 1rem 1.5rem;
    }
    .server-name {
        font-size: 1.8rem;
    }
    .info-value {
        font-size: 1.5rem;
    }
}