/*
Theme Name: Radio No Rest Child
Template: venomous-odyssee-theme-v3_2_1
Version: 1.0
*/
.radio-portal-body {
    margin: 0;
    background: #050505;
    color: #f5f5f5;
}

.radio-portal {
    min-height: 100vh;
    background:
        radial-gradient(circle at 25% 50%, rgba(255, 80, 0, 0.18), transparent 35%),
        radial-gradient(circle at 75% 50%, rgba(190, 190, 190, 0.16), transparent 35%),
        linear-gradient(135deg, #050505 0%, #111 50%, #050505 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    box-sizing: border-box;
}

.portal-hero {
    width: min(1200px, 100%);
    text-align: center;
}

.portal-hero h1 {
    font-size: clamp(2.2rem, 6vw, 5rem);
    margin: 0 0 12px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.portal-banner-wrap {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 42px;
}

.portal-banner {
    width: min(1100px, 100%);
    max-height: 260px;
    object-fit: contain;
    display: block;
    border-radius: 18px;
    filter:
        drop-shadow(0 0 24px rgba(255, 255, 255, 0.10))
        drop-shadow(0 0 44px rgba(255, 80, 0, 0.10));
}

.portal-claim {
    font-size: clamp(1.2rem, 2.5vw, 2rem);
    margin-bottom: 48px;
    color: #d7d7d7;
}

.portal-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
}

.portal-card {
    min-height: 340px;
    border: 1px solid rgba(255,255,255,0.22);
    border-radius: 24px;
    padding: 36px;
    text-decoration: none;
    color: #fff;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;
    position: relative;
    overflow: hidden;
    background: rgba(255,255,255,0.05);
}

.portal-logo-wrap {
    width: 100%;
    height: 170px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    position: relative;
    z-index: 1;
}

.portal-logo {
    display: block;
    width: auto;
    height: auto;
    max-width: 260px;
    max-height: 160px;
    object-fit: contain;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 0 24px rgba(255,255,255,0.18));
}
.portal-logo-m4y {
    max-width: 280px;
    max-height: 170px;
    filter:
        drop-shadow(0 0 18px rgba(220, 220, 220, 0.35))
        drop-shadow(0 0 36px rgba(255, 255, 255, 0.12));
}

.portal-logo-rnr {
    max-width: 260px;
    max-height: 150px;
    filter:
        drop-shadow(0 0 18px rgba(255, 90, 0, 0.45))
        drop-shadow(0 0 36px rgba(255, 40, 0, 0.22));
}

.portal-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(255,255,255,0.12), transparent 60%);
    opacity: 0;
    transition: opacity 0.25s ease;
}

.portal-card:hover::before {
    opacity: 1;
}

.portal-card-rnr {
    box-shadow: inset 0 0 80px rgba(255, 80, 0, 0.18);
}

.portal-card-m4y {
    box-shadow: inset 0 0 80px rgba(220, 220, 220, 0.14);
}

.portal-card h2,
.portal-card p,
.portal-card span {
    position: relative;
    z-index: 1;
}

.portal-card h2 {
    font-size: clamp(1.8rem, 4vw, 3rem);
    margin: 0 0 8px;
}

.portal-card p {
    font-size: 1.1rem;
    color: #ddd;
}

.portal-card span {
    display: inline-block;
    margin-top: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

@media (max-width: 800px) {
    .portal-cards {
        grid-template-columns: 1fr;
    }

    .portal-card {
        min-height: 260px;
    }
}