.home-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
    gap: 24px;
    padding: 34px;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.16);
}

.home-hero__content p {
    max-width: 780px;
    font-size: 1.02rem;
}

.home-hero__actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 28px;
}

.home-hero__panel {
    display: flex;
    align-items: stretch;
}

.hero-panel-card {
    width: 100%;
    padding: 22px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-panel-label {
    display: inline-block;
    margin-bottom: 14px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.hero-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hero-links li + li {
    margin-top: 10px;
}

.hero-links a {
    display: block;
    padding: 12px 14px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text);
    transition: 0.2s ease;
}

.hero-links a:hover {
    background: rgba(91, 140, 255, 0.08);
    border-color: rgba(91, 140, 255, 0.25);
}

.home-section {
    margin-top: 30px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.feature-card {
    display: block;
    padding: 24px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
    transition: 0.2s ease;
}

.feature-card:hover {
    transform: translateY(-3px);
    border-color: rgba(91, 140, 255, 0.3);
    background: rgba(91, 140, 255, 0.05);
}

.feature-card--primary {
    background: linear-gradient(180deg, rgba(91, 140, 255, 0.18), rgba(91, 140, 255, 0.08));
    border-color: rgba(91, 140, 255, 0.35);
}

.feature-icon {
    font-size: 1.9rem;
    margin-bottom: 14px;
    line-height: 1;
}

.feature-card h3,
.league-preview-card h3,
.admin-strip h2 {
    margin-bottom: 10px;
}

.league-preview-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.league-preview-card {
    padding: 20px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
}

.league-preview-card__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 10px;
}

.league-status {
    display: inline-flex;
    align-items: center;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 700;
    white-space: nowrap;
}

.league-status--draft {
    background: rgba(243, 201, 105, 0.12);
    color: var(--accent);
}

.league-status--active {
    background: rgba(47, 191, 113, 0.12);
    color: #9cf0c1;
}

.league-status--finished {
    background: rgba(91, 140, 255, 0.12);
    color: #b8cbff;
}

.league-preview-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 14px;
}

.text-link {
    color: var(--primary);
    font-weight: 700;
    transition: 0.2s ease;
}

.text-link:hover {
    color: var(--primary-hover);
}

.home-section--admin {
    margin-top: 34px;
}

.admin-strip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 24px 26px;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015));
    border: 1px solid rgba(255, 255, 255, 0.06);
}

@media (max-width: 1100px) {
    .feature-grid,
    .league-preview-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

@media (max-width: 760px) {
    .home-hero,
    .feature-card,
    .league-preview-card,
    .admin-strip,
    .hero-panel-card {
        padding: 20px;
    }

    .feature-grid,
    .league-preview-grid {
        grid-template-columns: 1fr;
    }

    .admin-strip {
        flex-direction: column;
        align-items: flex-start;
    }

    .admin-strip .btn,
    .home-hero__actions .btn {
        width: 100%;
    }
}