/* Home landing page only — load after star-classes.css */

.main--home {
    margin-bottom: 0;
    min-height: min(58vh, 30rem);
    justify-content: center;
    padding: 2rem 1.5rem 2.5rem;
    box-sizing: border-box;
}

.home-intro {
    position: relative;
    z-index: 1;
    max-width: 38rem;
    text-align: center;
    color: #f4f4f5;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}

.home-intro__title {
    margin: 0 0 1rem;
    font-size: clamp(1.65rem, 4vw, 2.25rem);
    font-weight: 700;
    letter-spacing: 0.02em;
}

.home-intro__text {
    margin: 0 0 1.5rem;
    font-size: 1.05rem;
    line-height: 1.55;
    color: rgba(244, 244, 245, 0.92);
    backdrop-filter: saturate(1.12) contrast(1.04) blur(0.6px);
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.home-intro__cta {
    margin: 0;
}

.home-intro__link {
    display: inline-block;
    padding: 0.55rem 1.35rem;
    border-radius: 999px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    color: #fff;
    background: linear-gradient(135deg, #0f0c29 0%, #302b63 50%, #24243e 100%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.home-intro__link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(111, 66, 193, 0.45);
}
.home-intro__link:active {
    transform: translateY(3px);
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.35);
}
.home-aside__title {
    margin: 0 0 1rem;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.home-aside {
    background: linear-gradient(180deg, rgba(120, 22, 22, 0.22), rgba(68, 10, 10, 0.16));
    border-left: 1px solid rgba(255, 120, 120, 0.24);
    box-shadow: inset 0 0 22px rgba(150, 32, 32, 0.14);
}

.home-aside__list {
    font-size: 1.1rem;
    width: 100%;
    margin: 0;
    padding: 0.65rem 0.5rem;
    list-style: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: rgba(165, 40, 40, 0.16);
    border: 1px solid rgba(255, 145, 145, 0.18);
    border-radius: 10px;
}

.home-aside__list-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-bottom: 0.5rem;
}

.home-aside__list-item a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: #f9f2f2;
    text-decoration: none;
}
.home-aside__list-item a:hover {
    transform: translateY(-2px);
    color:  rgba(210, 190, 248, 0.9);
    text-decoration: underline;
}
.home-aside__list-item a:active {
    color:  rgba(255, 225, 225, 0.9);
    text-decoration: underline;
}
.social-icon {
    display: inline-block;
    width: 1.1rem;
    height: 1.1rem;
    object-fit: contain;
}