.home-hero {
    position: relative;
    overflow: hidden;

    padding: 4rem 0 3rem;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

@media (min-width: 640px) {
    .home-hero {
        padding: 5rem 0 4rem;
        min-height: 70vh;
    }
}

@media (min-width: 1024px) {
    .home-hero {
        padding: 6rem 0 5rem;
        min-height: 80vh;
    }
}

.home-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.home-hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

.home-hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(
        135deg,
        var(--sd-bg-primary) 0%,
        rgba(15, 15, 35, 0.85) 50%,
        rgba(26, 26, 46, 0.7) 100%
    );
}

.home-hero__overlay--gradient {
    background: linear-gradient(
        135deg,
        var(--sd-bg-primary) 0%,
        #1e1e3f 50%,
        var(--sd-bg-secondary) 100%
    );
}

.home-hero::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -25px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--sd-purple-glow) 0%, transparent 60%);
    pointer-events: none;
    z-index: 3;
}

@media (min-width: 768px) {
    .home-hero::before {
        top: -100px;
        right: -50px;
        width: 400px;
        height: 400px;
    }
}

@media (min-width: 1024px) {
    .home-hero::before {
        top: -150px;
        right: -75px;
        width: 600px;
        height: 600px;
    }
}

.home-hero::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -25px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(180, 240, 0, 0.15) 0%, transparent 60%);
    pointer-events: none;
    z-index: 3;
}

@media (min-width: 768px) {
    .home-hero::after {
        bottom: -100px;
        left: -50px;
        width: 300px;
        height: 300px;
    }
}

.home-hero__pattern {
    position: absolute;
    inset: 0;
    z-index: 2;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%236b5ce7' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.8;
}

.home-hero__content {
    position: relative;
    z-index: 10;
    max-width: 48rem;
}

.home-hero__title {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--sd-text-primary);
    margin-bottom: 1rem;
}

@media (min-width: 640px) {
    .home-hero__title {
        font-size: 2.75rem;
        margin-bottom: 1.25rem;
    }
}

@media (min-width: 1024px) {
    .home-hero__title {
        font-size: 3.5rem;
        margin-bottom: 1.5rem;
    }
}

.home-hero__title-accent {
    color: var(--sd-lime);
}

.home-hero__subtitle {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--sd-text-secondary);
    margin-bottom: 1.5rem;
    max-width: 36rem;
}

@media (min-width: 640px) {
    .home-hero__subtitle {
        font-size: 1.125rem;
        margin-bottom: 2rem;
    }
}

@media (min-width: 1024px) {
    .home-hero__subtitle {
        font-size: 1.25rem;
        margin-bottom: 2.5rem;
    }
}

.home-hero__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-height: 3rem;
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
    font-weight: 600;
    background-color: var(--sd-cta);
    color: white;
    border-radius: var(--sd-radius-lg);
    transition: all var(--sd-transition);
    border: none;
    cursor: pointer;

    -webkit-tap-highlight-color: transparent;
}

@media (min-width: 640px) {
    .home-hero__cta {
        min-height: 3.25rem;
        padding: 1rem 2rem;
        font-size: 1.0625rem;
        gap: 0.625rem;
    }
}

@media (min-width: 1024px) {
    .home-hero__cta {
        min-height: 3.5rem;
        padding: 1.125rem 2.5rem;
        font-size: 1.125rem;
        gap: 0.75rem;
    }
}

.home-hero__cta:active {
    background-color: var(--sd-cta-hover);
    transform: scale(0.98);
}

@media (hover: hover) {
    .home-hero__cta:hover {
        background-color: var(--sd-cta-hover);
        box-shadow: 0 0 30px rgba(255, 105, 0, 0.4);
        transform: translateY(-2px);
    }
}

.home-hero__cta-icon {
    width: 1.25rem;
    height: 1.25rem;
    transition: transform var(--sd-transition);
}

@media (hover: hover) {
    .home-hero__cta:hover .home-hero__cta-icon {
        transform: translateX(4px);
    }
}

.home-hero__stats {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--sd-border);
}

@media (min-width: 640px) {
    .home-hero__stats {
        gap: 2.5rem;
        margin-top: 2.5rem;
        padding-top: 2rem;
    }
}

.home-hero__stat {
    text-align: left;
}

.home-hero__stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--sd-lime);
}

@media (min-width: 640px) {
    .home-hero__stat-value {
        font-size: 2rem;
    }
}

.home-hero__stat-label {
    font-size: 0.75rem;
    color: var(--sd-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

@media (min-width: 640px) {
    .home-hero__stat-label {
        font-size: 0.8125rem;
    }
}

.home-section {
    padding: 3rem 0;
}

@media (min-width: 640px) {
    .home-section {
        padding: 4rem 0;
    }
}

@media (min-width: 1024px) {
    .home-section {
        padding: 5rem 0;
    }
}

.home-section--alt {
    background-color: var(--sd-bg-secondary);
}

.home-section__header {
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .home-section__header {
        margin-bottom: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .home-section__header {
        margin-bottom: 3rem;
    }
}

.home-section__header--center {
    text-align: center;
}

.home-section__title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--sd-lime);
    margin-bottom: 0.5rem;
}

@media (min-width: 640px) {
    .home-section__title {
        font-size: 1.875rem;
    }
}

@media (min-width: 1024px) {
    .home-section__title {
        font-size: 2.25rem;
    }
}

.home-section__subtitle {
    font-size: 0.9375rem;
    color: var(--sd-text-secondary);
    max-width: 40rem;
}

@media (min-width: 640px) {
    .home-section__subtitle {
        font-size: 1rem;
    }
}

.home-section__header--center .home-section__subtitle {
    margin-left: auto;
    margin-right: auto;
}

.home-section__footer {
    margin-top: 2rem;
    text-align: center;
}

@media (min-width: 640px) {
    .home-section__footer {
        margin-top: 2.5rem;
    }
}

.home-section__link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--sd-purple-light);
    background: transparent;
    border: 2px solid var(--sd-purple);
    border-radius: var(--sd-radius-lg);
    transition: all var(--sd-transition);
}

@media (min-width: 640px) {
    .home-section__link {
        padding: 0.875rem 1.75rem;
        font-size: 0.9375rem;
    }
}

.home-section__link:active {
    background-color: var(--sd-purple);
    color: white;
}

@media (hover: hover) {
    .home-section__link:hover {
        background-color: var(--sd-purple);
        color: white;
        box-shadow: 0 0 20px var(--sd-purple-glow);
    }
}

.home-section__link-icon {
    width: 1.125rem;
    height: 1.125rem;
    transition: transform var(--sd-transition);
}

@media (hover: hover) {
    .home-section__link:hover .home-section__link-icon {
        transform: translateX(4px);
    }
}

.home-providers-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

@media (min-width: 480px) {
    .home-providers-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
}

@media (min-width: 768px) {
    .home-providers-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 1024px) {
    .home-providers-grid {
        grid-template-columns: repeat(6, 1fr);
        gap: 1.25rem;
    }
}

.home-provider-card {
    display: block;
    background-color: var(--sd-bg-card);
    border: 1px solid var(--sd-border);
    border-radius: var(--sd-radius-lg);
    padding: 1rem;
    transition: all var(--sd-transition);
    -webkit-tap-highlight-color: transparent;
}

@media (min-width: 640px) {
    .home-provider-card {
        padding: 1.25rem;
        border-radius: var(--sd-radius-xl);
    }
}

.home-provider-card:active {
    border-color: var(--sd-purple);
}

@media (hover: hover) {
    .home-provider-card:hover {
        border-color: var(--sd-purple);
        box-shadow: 0 0 24px var(--sd-purple-glow);
        transform: translateY(-4px);
    }
}

.home-provider-card__logo {
    aspect-ratio: 16 / 10;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
}

@media (min-width: 640px) {
    .home-provider-card__logo {
        margin-bottom: 1rem;
    }
}

.home-provider-card__logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform var(--sd-transition);
}

@media (hover: hover) {
    .home-provider-card:hover .home-provider-card__logo img {
        transform: scale(1.05);
    }
}

.home-provider-card__placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--sd-bg-elevated);
    border-radius: var(--sd-radius-md);
}

.home-provider-card__placeholder-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--sd-purple);
}

@media (min-width: 640px) {
    .home-provider-card__placeholder-text {
        font-size: 1.5rem;
    }
}

.home-provider-card__name {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--sd-text-primary);
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: color var(--sd-transition);
}

@media (min-width: 640px) {
    .home-provider-card__name {
        font-size: 0.9375rem;
    }
}

@media (hover: hover) {
    .home-provider-card:hover .home-provider-card__name {
        color: var(--sd-lime);
    }
}

.home-section__empty {
    text-align: center;
    padding: 3rem 1rem;
    color: var(--sd-text-muted);
}

@media (min-width: 640px) {
    .home-section__empty {
        padding: 4rem 2rem;
    }
}

.home-slots-carousel {
    display: flex;
    gap: 0.75rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;

    padding-top: 0.5rem;
    padding-bottom: 0.5rem;

    margin-left: -1rem;
    margin-right: -1rem;
    padding-left: 1rem;
    padding-right: 1rem;

    -ms-overflow-style: none;
    scrollbar-width: none;
}

.home-slots-carousel::-webkit-scrollbar {
    display: none;
}

@media (min-width: 640px) {
    .home-slots-carousel {
        gap: 1rem;
        margin-left: -1.5rem;
        margin-right: -1.5rem;
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .home-slots-carousel {
        gap: 1.25rem;
        margin-left: -2rem;
        margin-right: -2rem;
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

.home-slot-card {
    flex-shrink: 0;
    width: 10rem;
    scroll-snap-align: start;
    background-color: var(--sd-bg-card);
    border: 1px solid var(--sd-border);
    border-radius: var(--sd-radius-lg);
    overflow: hidden;
    transition: all var(--sd-transition);
    -webkit-tap-highlight-color: transparent;
}

@media (min-width: 480px) {
    .home-slot-card {
        width: 12rem;
    }
}

@media (min-width: 640px) {
    .home-slot-card {
        width: 14rem;
        border-radius: var(--sd-radius-xl);
    }
}

@media (min-width: 1024px) {
    .home-slot-card {
        width: 16rem;
    }
}

.home-slot-card:active {
    border-color: var(--sd-purple);
}

@media (hover: hover) {
    .home-slot-card:hover {
        border-color: var(--sd-purple);
        box-shadow: 0 0 24px var(--sd-purple-glow);
        transform: translateY(-4px);
    }
}

.home-slot-card__image {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: linear-gradient(135deg, var(--sd-bg-elevated) 0%, var(--sd-bg-card) 100%);
}

.home-slot-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--sd-transition);
}

@media (hover: hover) {
    .home-slot-card:hover .home-slot-card__image img {
        transform: scale(1.05);
    }
}

.home-slot-card__placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-slot-card__placeholder-icon {
    width: 2.5rem;
    height: 2.5rem;
    color: var(--sd-text-muted);
    opacity: 0.5;
}

@media (min-width: 640px) {
    .home-slot-card__placeholder-icon {
        width: 3rem;
        height: 3rem;
    }
}

.home-slot-card__placeholder-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--sd-purple);
}

@media (min-width: 640px) {
    .home-slot-card__placeholder-text {
        font-size: 1.75rem;
    }
}

.home-slot-card__overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--sd-transition);
}

@media (hover: hover) {
    .home-slot-card:hover .home-slot-card__overlay {
        opacity: 1;
    }
}

.home-slot-card__play-btn {
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    background-color: var(--sd-cta);
    color: white;
    border-radius: var(--sd-radius-md);
}

@media (min-width: 640px) {
    .home-slot-card__play-btn {
        padding: 0.625rem 1.25rem;
        font-size: 0.8125rem;
    }
}

.home-slot-card__info {
    padding: 0.75rem;
}

@media (min-width: 640px) {
    .home-slot-card__info {
        padding: 1rem;
    }
}

.home-slot-card__name {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--sd-text-primary);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    margin-bottom: 0.25rem;
}

@media (min-width: 640px) {
    .home-slot-card__name {
        font-size: 0.9375rem;
    }
}

.home-slot-card__provider {
    font-size: 0.75rem;
    color: var(--sd-text-muted);
}

.home-carousel-nav {
    display: none;
    gap: 0.5rem;
}

@media (min-width: 1024px) {
    .home-carousel-nav {
        display: flex;
    }
}

.home-carousel-nav__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background-color: var(--sd-bg-card);
    border: 1px solid var(--sd-border);
    border-radius: var(--sd-radius-md);
    color: var(--sd-text-primary);
    transition: all var(--sd-transition);
    cursor: pointer;
}

.home-carousel-nav__btn:hover {
    border-color: var(--sd-purple);
    color: var(--sd-lime);
}

.home-carousel-nav__btn-icon {
    width: 1.25rem;
    height: 1.25rem;
}

.home-section__header--with-nav {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 640px) {
    .home-section__header--with-nav {
        flex-direction: row;
        align-items: flex-end;
        justify-content: space-between;
    }
}

.home-text-block {
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}

.home-text-block--wide {
    max-width: 64rem;
}

.home-text-block__content {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--sd-text-secondary);
}

@media (min-width: 640px) {
    .home-text-block__content {
        font-size: 1.0625rem;
    }
}

.home-text-block__content h2,
.home-text-block__content h3,
.home-text-block__content h4 {
    color: var(--sd-text-primary);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.home-text-block__content h2 {
    font-size: 1.5rem;
}

.home-text-block__content h3 {
    font-size: 1.25rem;
}

@media (min-width: 640px) {
    .home-text-block__content h2 {
        font-size: 1.75rem;
    }
    .home-text-block__content h3 {
        font-size: 1.5rem;
    }
}

.home-text-block__content p {
    margin-bottom: 1rem;
}

.home-text-block__content a {
    color: var(--sd-purple-light);
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color var(--sd-transition);
}

.home-text-block__content a:hover {
    color: var(--sd-lime);
}

.home-text-block__content strong {
    color: var(--sd-text-primary);
    font-weight: 600;
}

.home-text-block__content ul,
.home-text-block__content ol {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.home-text-block__content li {
    margin-bottom: 0.5rem;
}

.home-text-block__content ul li::marker {
    color: var(--sd-purple);
}

.home-text-block__content ol li::marker {
    color: var(--sd-purple);
}

.home-faq-list {
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

@media (min-width: 640px) {
    .home-faq-list {
        gap: 1rem;
    }
}

.home-faq-item {
    background-color: var(--sd-bg-card);
    border: 1px solid var(--sd-border);
    border-radius: var(--sd-radius-lg);
    overflow: hidden;
    transition: border-color var(--sd-transition);
}

.home-faq-item:active {
    border-color: var(--sd-purple);
}

@media (hover: hover) {
    .home-faq-item:hover {
        border-color: var(--sd-border-hover);
    }
}

.home-faq-item__header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem;
    text-align: left;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--sd-text-primary);
    font-size: 0.9375rem;
    font-weight: 600;
    line-height: 1.4;
}

@media (min-width: 640px) {
    .home-faq-item__header {
        padding: 1.25rem 1.5rem;
        font-size: 1rem;
    }
}

.home-faq-item__icon {
    flex-shrink: 0;
    width: 1.25rem;
    height: 1.25rem;
    color: var(--sd-purple);
    transition: transform var(--sd-transition);
}

.home-faq-item[data-open="true"] .home-faq-item__icon {
    transform: rotate(180deg);
}

.home-faq-item__content {
    display: none;
    padding: 0 1rem 1rem;
    font-size: 0.875rem;
    line-height: 1.7;
    color: var(--sd-text-secondary);
}

@media (min-width: 640px) {
    .home-faq-item__content {
        padding: 0 1.5rem 1.25rem;
        font-size: 0.9375rem;
    }
}

.home-faq-item[data-open="true"] .home-faq-item__content {
    display: block;
}

.home-cta {
    position: relative;
    overflow: hidden;
}

.home-cta__bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--sd-purple) 0%, #5346c7 100%);
}

.home-cta__pattern {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.08'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.home-cta__content {
    position: relative;
    z-index: 10;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    padding: 3rem 0;
}

@media (min-width: 640px) {
    .home-cta__content {
        padding: 4rem 0;
    }
}

@media (min-width: 1024px) {
    .home-cta__content {
        padding: 5rem 0;
    }
}

.home-cta__title {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.75rem;
}

@media (min-width: 640px) {
    .home-cta__title {
        font-size: 1.875rem;
        margin-bottom: 1rem;
    }
}

@media (min-width: 1024px) {
    .home-cta__title {
        font-size: 2.25rem;
    }
}

.home-cta__subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .home-cta__subtitle {
        font-size: 1.125rem;
        margin-bottom: 2rem;
    }
}

.home-cta__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-height: 3rem;
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
    font-weight: 600;
    background-color: white;
    color: var(--sd-purple);
    border-radius: var(--sd-radius-lg);
    transition: all var(--sd-transition);
    -webkit-tap-highlight-color: transparent;
}

@media (min-width: 640px) {
    .home-cta__btn {
        min-height: 3.25rem;
        padding: 1rem 2rem;
        font-size: 1.0625rem;
    }
}

.home-cta__btn:active {
    transform: scale(0.98);
}

@media (hover: hover) {
    .home-cta__btn:hover {
        background-color: var(--sd-lime);
        color: var(--sd-bg-primary);
        box-shadow: 0 0 30px rgba(180, 240, 0, 0.4);
    }
}

.home-cta__btn-icon {
    width: 1.25rem;
    height: 1.25rem;
    transition: transform var(--sd-transition);
}

@media (hover: hover) {
    .home-cta__btn:hover .home-cta__btn-icon {
        transform: translateX(4px);
    }
}

.home-team-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    align-items: start;
}

@media (min-width: 640px) {
    .home-team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
}

@media (min-width: 1024px) {
    .home-team-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

.home-team-card {
    display: flex;
    gap: 1rem;
    background-color: var(--sd-bg-card);
    border: 1px solid var(--sd-border);
    border-radius: var(--sd-radius-lg);
    padding: 1rem;
    transition: border-color var(--sd-transition);
}

@media (min-width: 640px) {
    .home-team-card {
        padding: 1.25rem;
    }
}

@media (hover: hover) {
    .home-team-card:hover {
        border-color: var(--sd-border-hover);
    }
}

.home-team-card__avatar {
    flex-shrink: 0;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    object-fit: cover;
    background-color: var(--sd-bg-elevated);
}

@media (min-width: 640px) {
    .home-team-card__avatar {
        width: 4rem;
        height: 4rem;
    }
}

.home-team-card__avatar-placeholder {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    background-color: var(--sd-bg-elevated);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

@media (min-width: 640px) {
    .home-team-card__avatar-placeholder {
        width: 4rem;
        height: 4rem;
    }
}

.home-team-card__avatar-text {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--sd-text-muted);
}

.home-team-card__info {
    min-width: 0;
}

.home-team-card__header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.25rem;
}

.home-team-card__name {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--sd-text-primary);
}

@media (min-width: 640px) {
    .home-team-card__name {
        font-size: 1rem;
    }
}

.home-team-card__position {
    font-size: 0.8125rem;
    color: var(--sd-text-muted);
    margin-bottom: 0.375rem;
}

.home-team-card__bio {
    font-size: 0.8125rem;
    line-height: 1.5;
    color: var(--sd-text-secondary);

}

.home-team-card__link {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    margin-top: 0.5rem;
    font-size: 0.75rem;
    color: var(--sd-text-muted);
    transition: color var(--sd-transition);
}

.home-team-card__link:hover {
    color: var(--sd-lime);
}

.home-team-card__link-icon {
    width: 0.875rem;
    height: 0.875rem;
}

.home-search {
    max-width: 40rem;
    margin-left: auto;
    margin-right: auto;
}

.home-search__form {
    position: relative;
}

.home-search__input {
    width: 100%;
    min-height: 3.5rem;
    padding: 1rem 1.25rem;
    padding-right: 3.5rem;
    font-size: 1rem;
    color: var(--sd-text-primary);
    background: linear-gradient(135deg, rgba(107, 92, 231, 0.15) 0%, rgba(107, 92, 231, 0.08) 100%);
    border: 2px solid var(--sd-purple);
    border-radius: var(--sd-radius-full);
    transition: all var(--sd-transition);
    box-shadow: 0 0 20px var(--sd-purple-glow);
}

@media (min-width: 640px) {
    .home-search__input {
        min-height: 4rem;
        padding: 1.125rem 1.5rem;
        padding-right: 4rem;
        font-size: 1.0625rem;
    }
}

.home-search__input::placeholder {
    color: var(--sd-text-muted);
}

.home-search__input:focus {
    outline: none;
    border-color: var(--sd-purple-light);
    box-shadow: 0 0 30px var(--sd-purple-glow);
}

.home-search__btn {
    position: absolute;
    right: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background-color: var(--sd-purple);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    transition: all var(--sd-transition);
}

@media (min-width: 640px) {
    .home-search__btn {
        width: 3rem;
        height: 3rem;
    }
}

.home-search__btn:hover {
    background-color: var(--sd-purple-light);
}

.home-search__btn-icon {
    width: 1.25rem;
    height: 1.25rem;
}

@media (min-width: 640px) {
    .home-search__btn-icon {
        width: 1.5rem;
        height: 1.5rem;
    }
}

.home-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

@media (min-width: 480px) {
    .home-stats {
        grid-template-columns: repeat(4, 1fr);
        gap: 1rem;
    }
}

@media (min-width: 768px) {
    .home-stats {
        gap: 1.25rem;
    }
}

.home-stats__item {
    background-color: var(--sd-bg-card);
    border: 1px solid var(--sd-border);
    border-radius: var(--sd-radius-lg);
    padding: 1rem;
    text-align: center;
    transition: border-color var(--sd-transition);
}

@media (min-width: 640px) {
    .home-stats__item {
        padding: 1.25rem;
    }
}

@media (hover: hover) {
    .home-stats__item:hover {
        border-color: var(--sd-purple);
    }
}

.home-stats__value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--sd-lime);
    line-height: 1.2;
}

@media (min-width: 640px) {
    .home-stats__value {
        font-size: 2rem;
    }
}

@media (min-width: 1024px) {
    .home-stats__value {
        font-size: 2.5rem;
    }
}

.home-stats__label {
    margin-top: 0.25rem;
    font-size: 0.75rem;
    color: var(--sd-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

@media (min-width: 640px) {
    .home-stats__label {
        margin-top: 0.375rem;
        font-size: 0.8125rem;
    }
}

.home-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .home-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
}

@media (min-width: 1024px) {
    .home-features {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
    }
}

.home-feature {
    background-color: var(--sd-bg-card);
    border: 1px solid var(--sd-border);
    border-radius: var(--sd-radius-lg);
    padding: 1.25rem;
    text-align: center;
    transition: all var(--sd-transition);
}

@media (min-width: 640px) {
    .home-feature {
        padding: 1.5rem;
    }
}

@media (hover: hover) {
    .home-feature:hover {
        border-color: var(--sd-purple);
        transform: translateY(-4px);
        box-shadow: 0 0 24px var(--sd-purple-glow);
    }
}

.home-feature__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, var(--sd-purple) 0%, #5346c7 100%);
    border-radius: var(--sd-radius-lg);
}

@media (min-width: 640px) {
    .home-feature__icon {
        width: 3.5rem;
        height: 3.5rem;
        margin-bottom: 1.25rem;
    }
}

.home-feature__icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: white;
}

@media (min-width: 640px) {
    .home-feature__icon svg {
        width: 1.75rem;
        height: 1.75rem;
    }
}

.home-feature__title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--sd-text-primary);
    margin-bottom: 0.5rem;
}

@media (min-width: 640px) {
    .home-feature__title {
        font-size: 1.0625rem;
    }
}

.home-feature__desc {
    font-size: 0.8125rem;
    line-height: 1.5;
    color: var(--sd-text-secondary);
}

@media (min-width: 640px) {
    .home-feature__desc {
        font-size: 0.875rem;
    }
}

.home-responsible {
    background-color: var(--sd-bg-secondary);
    border-top: 1px solid var(--sd-border);
    border-bottom: 1px solid var(--sd-border);
}

.home-responsible__content {
    max-width: 48rem;
    margin: 0 auto;
    text-align: center;
}

.home-responsible__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #cf2e2e 0%, #a31b1b 100%);
    border-radius: 50%;
    font-size: 1.25rem;
    font-weight: 800;
    color: white;
}

@media (min-width: 640px) {
    .home-responsible__badge {
        width: 5rem;
        height: 5rem;
        font-size: 1.5rem;
        margin-bottom: 1.25rem;
    }
}

.home-responsible__title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--sd-text-primary);
    margin-bottom: 0.75rem;
}

@media (min-width: 640px) {
    .home-responsible__title {
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }
}

.home-responsible__text {
    font-size: 0.875rem;
    line-height: 1.6;
    color: var(--sd-text-secondary);
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .home-responsible__text {
        font-size: 0.9375rem;
        margin-bottom: 2rem;
    }
}

.home-responsible__logos {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .home-responsible__logos {
        gap: 2rem;
        margin-bottom: 2rem;
    }
}

.home-responsible__logo {
    height: 2rem;
    opacity: 0.7;
    transition: opacity var(--sd-transition);
}

@media (min-width: 640px) {
    .home-responsible__logo {
        height: 2.5rem;
    }
}

.home-responsible__logo:hover {
    opacity: 1;
}

.home-responsible__links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1rem 1.5rem;
}

.home-responsible__link {
    font-size: 0.8125rem;
    color: var(--sd-text-muted);
    transition: color var(--sd-transition);
}

.home-responsible__link:hover {
    color: var(--sd-lime);
}

.home-hero--with-search .home-hero__content {
    max-width: 56rem;
}

.home-hero__search {
    margin-top: 2rem;
}

@media (min-width: 640px) {
    .home-hero__search {
        margin-top: 2.5rem;
    }
}

.home-hero__inline-stats {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.5rem 1.5rem;
    margin-top: 1.5rem;
    font-size: 0.875rem;
    color: var(--sd-text-muted);
}

@media (min-width: 640px) {
    .home-hero__inline-stats {
        gap: 0.5rem 2rem;
        margin-top: 2rem;
        font-size: 0.9375rem;
    }
}

.home-hero__inline-stats span {
    color: var(--sd-lime);
    font-weight: 600;
}
