.world-page {
    background: #f5f7fb;
    min-height: 100vh;
}

.world-hero {
    padding: 2.5rem 0 1.25rem;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 62%, #f0f3ff 100%);
    border-bottom: 1px solid rgba(94, 53, 177, 0.08);
}

.world-hero-inner {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1.5rem;
}

.world-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin-bottom: 0.8rem;
    color: #5e35b1;
    font-weight: 700;
    font-size: 0.92rem;
}

.world-hero h1 {
    color: #172033;
    font-size: clamp(2rem, 4vw, 3.3rem);
    line-height: 1.05;
    margin: 0 0 0.8rem;
    letter-spacing: 0;
}

.world-hero p {
    color: #64748b;
    font-size: 1.05rem;
    max-width: 640px;
    margin: 0;
}

.world-hero-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(112px, 1fr));
    gap: 0.75rem;
    min-width: 250px;
}

.world-hero-stats span {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 78px;
    padding: 0.9rem 1rem;
    border: 1px solid rgba(94, 53, 177, 0.12);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.9);
    color: #64748b;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.05);
}

.world-hero-stats strong {
    color: #172033;
    font-size: 1.15rem;
}

.world-content {
    padding: 1.35rem 0 6rem;
}

.world-toolbar {
    display: grid;
    grid-template-columns: minmax(220px, 1fr) 170px 190px 54px;
    gap: 0.75rem;
    align-items: center;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(94, 53, 177, 0.1);
    border-radius: 8px;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
}

.world-search {
    position: relative;
}

.world-search i {
    position: absolute;
    top: 50%;
    left: 1rem;
    transform: translateY(-50%);
    color: #6d5bd0;
}

.world-search input,
.world-toolbar select {
    width: 100%;
    height: 48px;
    border: 1px solid #dfe5f2;
    border-radius: 8px;
    background: #ffffff;
    color: #172033;
    font-weight: 600;
    outline: none;
}

.world-search input {
    padding: 0 1rem 0 2.7rem;
}

.world-toolbar select {
    padding: 0 0.85rem;
}

.world-search input:focus,
.world-toolbar select:focus {
    border-color: #7e57c2;
    box-shadow: 0 0 0 3px rgba(126, 87, 194, 0.14);
}

.world-submit,
.world-load-more,
.world-reset,
.world-country-chip {
    border: 0;
    border-radius: 8px;
    font-weight: 700;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.world-submit {
    width: 54px;
    height: 48px;
    display: grid;
    place-items: center;
    color: #ffffff;
    background: #5e35b1;
    box-shadow: 0 12px 22px rgba(94, 53, 177, 0.22);
}

.world-submit:hover,
.world-load-more:hover,
.world-country-chip:hover {
    transform: translateY(-1px);
}

.world-quick-countries {
    display: flex;
    gap: 0.55rem;
    flex-wrap: wrap;
    margin: 1rem 0 1.4rem;
}

.world-country-chip {
    padding: 0.58rem 0.9rem;
    background: #ffffff;
    color: #334155;
    border: 1px solid #e3e8f4;
}

.world-country-chip.active {
    background: #172033;
    color: #ffffff;
    border-color: #172033;
    box-shadow: 0 10px 24px rgba(23, 32, 51, 0.18);
}

.world-results-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}

.world-results-bar h2 {
    margin: 0;
    color: #172033;
    font-size: 1.35rem;
}

.world-results-bar span {
    color: #64748b;
    font-weight: 600;
    font-size: 0.92rem;
}

.world-reset {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.55rem 0.85rem;
    color: #5e35b1;
    background: rgba(94, 53, 177, 0.08);
}

.world-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 1rem;
}

.world-station-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    background: #ffffff;
    border: 1px solid rgba(148, 163, 184, 0.18);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 14px 32px rgba(15, 23, 42, 0.06);
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.world-station-card:hover {
    transform: translateY(-3px);
    border-color: rgba(94, 53, 177, 0.24);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.1);
}

.world-station-logo {
    position: relative;
    aspect-ratio: 1 / 0.82;
    display: grid;
    place-items: center;
    background: linear-gradient(145deg, #eef2ff, #f8fafc);
    overflow: hidden;
}

.world-station-logo img {
    width: 74%;
    height: 74%;
    object-fit: contain;
    border-radius: 8px;
}

.world-play-btn {
    position: absolute;
    right: 0.65rem;
    bottom: 0.65rem;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 999px;
    color: #ffffff;
    background: #5e35b1;
    box-shadow: 0 12px 22px rgba(94, 53, 177, 0.25);
}

.world-play-btn i {
    font-size: 1.35rem;
    margin-left: 2px;
}

.world-station-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 0.55rem;
    padding: 0.9rem;
}

.world-station-body h3 {
    min-height: 2.55rem;
    margin: 0;
    color: #172033;
    font-size: 0.98rem;
    line-height: 1.28;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.world-station-body p {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    margin: 0;
    color: #64748b;
    font-size: 0.86rem;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.world-station-tags {
    display: flex;
    gap: 0.35rem;
    flex-wrap: wrap;
}

.world-station-tags span {
    max-width: 100%;
    padding: 0.24rem 0.5rem;
    border-radius: 999px;
    background: #f1effb;
    color: #5e35b1;
    font-size: 0.76rem;
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.world-station-meta {
    display: flex;
    justify-content: space-between;
    gap: 0.55rem;
    margin-top: auto;
    color: #7b8799;
    font-size: 0.78rem;
    font-weight: 700;
}

.world-state {
    margin: 1rem 0;
    padding: 1rem;
    border-radius: 8px;
    background: #ffffff;
    border: 1px solid #dfe5f2;
    color: #64748b;
    font-weight: 700;
}

.world-state--error {
    color: #b42318;
    border-color: rgba(180, 35, 24, 0.2);
    background: #fff7f6;
}

.world-load-more-wrap {
    display: flex;
    justify-content: center;
    padding-top: 1.4rem;
}

.world-load-more {
    min-width: 180px;
    padding: 0.8rem 1.35rem;
    color: #ffffff;
    background: #172033;
}

@media (max-width: 991.98px) {
    .world-hero-inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .world-hero-stats {
        width: 100%;
    }

    .world-toolbar {
        grid-template-columns: 1fr 1fr;
    }

    .world-search {
        grid-column: 1 / -1;
    }

    .world-submit {
        width: 100%;
    }
}

@media (max-width: 575.98px) {
    .world-hero {
        padding-top: 1.6rem;
    }

    .world-hero-stats {
        grid-template-columns: 1fr;
    }

    .world-toolbar {
        grid-template-columns: 1fr;
    }

    .world-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.75rem;
    }

    .world-results-bar {
        align-items: flex-start;
        flex-direction: column;
    }

    .world-station-body {
        padding: 0.75rem;
    }
}
