* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #050505;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    background-image:
        radial-gradient(circle at top, rgba(255,220,180,0.15), transparent 40%),
        linear-gradient(to bottom, rgba(255,192,203,0.06), rgba(255,230,180,0.02), #050505 70%);
}

.site-shell {
    min-height: 100vh;

    max-width: 1400px;
    margin: 0 auto;
}

.topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 50px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.logo {
    font-size: 2rem;
    font-weight: 300;
    letter-spacing: 0.35em;
    color: #ffe6ef;
}

.tagline {
    margin-top: 8px;
    font-size: 0.72rem;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 0.22em;
}

.node-info {
    text-align: right;
    color: rgba(255,255,255,0.6);
    font-size: 0.82rem;
    line-height: 1.8;
}

.hero {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 60px;

    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
    padding: 80px 60px;
}

.badge {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 999px;
    background: rgba(255,220,220,0.05);
    border: 1px solid rgba(255,220,220,0.2);
    color: #ffdce8;
    font-size: 0.7rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.hero h1 {
    font-size: clamp(3rem, 6vw, 6rem);
    line-height: 1.05;
    font-weight: 300;
    color: #fff6e7;
}

.hero h1 span {
    color: #ffd8e5;
}

.hero-copy {
    margin-top: 30px;
    max-width: 620px;
    line-height: 1.8;
    color: rgba(255,255,255,0.7);
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 40px;
}

.btn-primary,
.btn-secondary {
    padding: 18px 30px;
    border-radius: 20px;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.72rem;
    letter-spacing: 0.22em;
    transition: 0.3s ease;
}

.btn-primary {
    background: linear-gradient(to right, #ffe0ea, #fff0c6);
    color: #000;
}

.btn-secondary {
    border: 1px solid rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.75);
}

.hostess-card {
    position: relative;
    min-height: 720px;
    border-radius: 34px;
    overflow: hidden;
    background: #111;
    border: 1px solid rgba(255,255,255,0.08);
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.hero-video.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.82), transparent 55%);
}

.hero-copy-overlay {
    position: absolute;
    bottom: 40px;
    left: 40px;
    z-index: 5;
}

.welcome {
    font-size: 0.8rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #ffdce8;
    margin-bottom: 10px;
}

.fantasy {
    font-size: 2rem;
    line-height: 1.08;
    color: #fff6e7;
    font-weight: 300;
}

.portals {
    padding: 0 60px 80px;
}

.portal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.portal-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.portal-card {
    border-radius: 30px;
    overflow: hidden;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
}

.portal-image {

    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;

}

.portal-video-wrap {
    position: relative;
    aspect-ratio: 16 / 9;
}

.portal-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.portal-video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.55), rgba(0,0,0,0.05));
}

.live-indicator {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 5;
    padding: 7px 10px;
    border-radius: 999px;
    background: rgba(255,192,203,0.15);
    border: 1px solid rgba(255,192,203,0.25);
    color: #ffe0ea;
    font-size: 0.6rem;
    letter-spacing: 0.2em;
}

.portal-content {
    padding: 24px;
}

.portal-topline {
    display: flex;
    justify-content: space-between;
    margin-bottom: 14px;
}

.portal-title {
    font-size: 1.3rem;
    color: #fff5e8;
}

.portal-status {
    font-size: 0.62rem;
    color: rgba(255,220,230,0.75);
    letter-spacing: 0.2em;
}

.portal-subtitle {
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
    margin-bottom: 22px;
}

.enter-link {
    color: #ffd8e5;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.22em;
}

.footer {
    display: flex;
    justify-content: space-between;
    padding: 30px 60px;
    border-top: 1px solid rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.35);
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.warning {
    color: rgba(255,130,130,0.45);
}

.portal-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}



@media (max-width: 1200px) {
    .hero {
        grid-template-columns: 1fr;
    }

    .portal-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .topbar,
    .hero,
    .portals,
    .footer {
        padding-left: 24px;
        padding-right: 24px;
    }

    .topbar,
    .footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .portal-grid {
        grid-template-columns: 1fr;
    }

    .hostess-card {
        min-height: 480px;
    }

    .hero-copy-overlay {
        left: 24px;
        bottom: 24px;
    }
}