/* === GLOBAL === */
body {
    background: #0e0e11;
    color: #f0f0f0;
    font-family: 'Segoe UI', sans-serif;
    font-size: 16px;
    line-height: 1.6;
}

/* === LAYOUT === */
.wosh-hero {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
    box-sizing: border-box;
}

.wosh-hero-header {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 3rem;
    align-items: flex-start;
}

/* === HERO LEFT === */
.hero-left {
    flex: 1 1 300px;
    text-align: center;
}

.hero-thumb {
    max-width: 100%;
    border-radius: 16px;
    box-shadow: 0 0 20px rgba(255,255,255,0.15);
    transition: transform 0.3s ease;
}
.hero-thumb:hover {
    transform: scale(1.03);
}

.hero-name {
    font-size: 2.5rem;
    margin: 1rem 0 1.5rem;
    color: #ffcc66;
}

.hero-meta {
    list-style: none;
    padding: 0;
    margin: 0;
}
.hero-meta li {
    margin: 0.3rem 0;
    font-size: 1.1rem;
}
.hero-meta img.icon {
    width: 18px;
    height: 18px;
    vertical-align: middle;
    margin-right: 0.3em;
}

/* === HERO RIGHT === */
.hero-right {
    flex: 1 1 400px;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    box-sizing: border-box;
    width: 100%;
}

/* === STATS SECTIONS === */
.exploration-stats,
.expedition-stats {
    flex: 1 1 250px;
    background: #1c1c22;
    border: 1px solid #333;
    border-radius: 12px;
    padding: 1rem 1.25rem;
    transition: all 0.2s ease;
    box-sizing: border-box;
    max-width: 100%;
}
.exploration-stats:hover,
.expedition-stats:hover {
    background: #23232a;
}

.exploration-stats h2,
.expedition-stats h2 {
    font-size: 1.25rem;
    margin-top: 0;
    color: #66d9ef;
    border-bottom: 1px solid #444;
    padding-bottom: 0.5rem;
    margin-bottom: 0.75rem;
}

.exploration-stats ul,
.expedition-stats ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.exploration-stats li,
.expedition-stats li {
    margin-bottom: 0.4rem;
}

/* === DESCRIPTION === */
.hero-description {
    margin-top: 3rem;
    background: #18181d;
    border: 1px solid #2a2a2f;
    padding: 2rem;
    border-radius: 12px;
}

.hero-description h2 {
    margin-top: 0;
    color: #f08080;
    font-size: 1.5rem;
    border-bottom: 1px solid #444;
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
}

/* === SHARDS === */
.hero-shards {
    margin-top: 3rem;
}
.hero-shards h2 {
    font-size: 1.5rem;
    color: #98fb98;
    margin-bottom: 1rem;
}
.shards-table-wrapper {
    overflow-x: auto;
    width: 100%;
}
.shards-table {
    width: 100%;
    min-width: 600px;
    border-collapse: collapse;
    background: #141417;
    border: 1px solid #333;
    border-radius: 8px;
    overflow: hidden;
}
.shards-table th,
.shards-table td {
    padding: 0.75rem;
    border: 1px solid #2d2d2d;
    text-align: center;
}
.shards-table th {
    background: #292932;
    color: #ffdd88;
    font-weight: 600;
}
.shards-table td {
    background: #1a1a1f;
}
.shards-table tr.shard-row-recruit td {
    background: #212121;
    font-weight: bold;
    color: #00c0ff;
}
.shards-table tr.shard-row-total td {
    background: #181818;
    font-weight: bold;
    color: #ff8888;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
    .wosh-hero-header {
        flex-direction: column;
        align-items: center;
    }

    .hero-left {
        flex: unset;
        width: 100%;
        text-align: center;
    }

    .hero-right {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }

    .exploration-stats,
    .expedition-stats {
        width: 100%;
        flex: unset;
    }

    .hero-name {
        font-size: 2rem;
    }
}
