.radiohy-home {
    max-width: 1100px;
    margin: 0 auto;
    padding: 16px 12px 28px;
    box-sizing: border-box;
}

.radiohy-home-slideshow {
    position: relative;
    border: 2px solid rgba(0, 229, 255, 0.45);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 0 24px rgba(0, 229, 255, 0.15);
    background: linear-gradient(180deg, #0a0a12 0%, #060608 100%);
    margin-bottom: 18px;
}

.radiohy-home-slides {
    position: relative;
    width: 100%;
    min-height: 160px;
    transition: height 0.35s ease;
}

.radiohy-home-slide {
    position: absolute;
    inset: 0;
    margin: 0;
    opacity: 0;
    transition: opacity 0.7s ease;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 12px 36px;
    box-sizing: border-box;
}

.radiohy-home-slide.is-active {
    opacity: 1;
    pointer-events: auto;
    z-index: 1;
}

.radiohy-home-slide img {
    display: block;
    max-width: 100%;
    width: auto;
    height: auto;
    max-height: min(440px, 52vh);
    object-fit: contain;
    object-position: center center;
    border-radius: 10px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.45);
}

.radiohy-home-slide-caption {
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 38px;
    margin: 0;
    padding: 10px 14px;
    background: rgba(0, 0, 0, 0.72);
    border: 1px solid rgba(0, 229, 255, 0.25);
    border-radius: 8px;
    color: #fff;
    font-size: 0.88rem;
    text-align: center;
    z-index: 2;
}

.radiohy-home-dots {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 10px;
    display: flex;
    justify-content: center;
    gap: 8px;
    z-index: 3;
}

.radiohy-home-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1px solid rgba(0, 229, 255, 0.6);
    background: rgba(0, 0, 0, 0.45);
    cursor: pointer;
    padding: 0;
}

.radiohy-home-dot.is-active {
    background: #00e5ff;
    box-shadow: 0 0 10px rgba(0, 229, 255, 0.7);
}

.radiohy-home-slideshow-placeholder {
    min-height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.radiohy-home-slide-placeholder {
    text-align: center;
    color: #00e5ff;
    padding: 24px;
}

.radiohy-home-slide-placeholder span {
    display: block;
    font-size: 1.6rem;
    font-weight: bold;
    margin-bottom: 8px;
}

.radiohy-home-slide-placeholder small {
    color: #888;
    font-size: 0.82rem;
}

.radiohy-home-welcome {
    background: linear-gradient(135deg, #0d1018, #151820);
    border: 2px solid rgba(255, 65, 108, 0.35);
    border-radius: 16px;
    padding: 22px 20px;
    box-shadow: 0 0 18px rgba(255, 65, 108, 0.08);
    text-align: center;
}

.radiohy-home-welcome-title {
    margin: 0 0 12px;
    color: #00e5ff;
    font-size: clamp(1.35rem, 4vw, 1.85rem);
    text-shadow: 0 0 12px rgba(0, 229, 255, 0.35);
}

.radiohy-home-welcome-text {
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.55;
    max-width: 720px;
    margin: 0 auto;
}

.radiohy-home-welcome-text p {
    margin: 0 0 8px;
}

.radiohy-home-welcome-text p:last-child {
    margin-bottom: 0;
}

@media (max-width: 640px) {
    .radiohy-home {
        padding: 10px 8px 20px;
    }

    .radiohy-home-slide {
        padding: 8px 8px 32px;
    }

    .radiohy-home-slide img {
        max-height: min(320px, 42vh);
        border-radius: 8px;
    }

    .radiohy-home-slide-caption {
        left: 8px;
        right: 8px;
        bottom: 34px;
        font-size: 0.8rem;
        padding: 8px 10px;
    }

    .radiohy-home-welcome {
        padding: 16px 14px;
    }
}
