* {
    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: 40px 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: 620px;
    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;
}

.hero-play-button {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 20;
    padding: 18px 34px;
    border-radius: 999px;
    background: rgba(0,0,0,0.55);
    border: 1px solid rgba(255,255,255,0.18);
    backdrop-filter: blur(10px);
    color: #fff6e7;
    font-size: 0.72rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.25s ease;
}

.hero-play-button:hover {
    background: rgba(255,220,230,0.12);
    border-color: rgba(255,220,230,0.35);
    transform: translate(-50%, -50%) scale(1.04);
}

.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;
}



.system-powered {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    margin-top: 18px;
    color: rgba(255,220,230,0.62);
    font-size: 0.72rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;

    transition:
        color 0.25s ease,
        opacity 0.25s ease,
        transform 0.25s ease;
}

.system-powered:hover {
    color: #fff2f7;

    transform: translateX(3px);
}

.system-dot {
    width: 10px;
    height: 10px;

    border-radius: 999px;

    background: #ffdce8;

    box-shadow:
        0 0 12px rgba(255,220,230,0.8),
        0 0 24px rgba(255,220,230,0.4);
}


.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;
}

.film-carousel {
    margin-top: 70px;
}

.carousel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.carousel-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;

    padding-bottom: 10px;
    padding-right: 300px;

    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;

    scrollbar-width: thin;
    scrollbar-color: rgba(255,220,230,0.25) transparent;
}

.carousel-track::-webkit-scrollbar {
    height: 8px;
}

.carousel-track::-webkit-scrollbar-thumb {
    background: rgba(255,220,230,0.25);
    border-radius: 999px;
}

.carousel-poster {
    scroll-snap-align: start;
    flex: 0 0 auto;

    width: 300px;
    aspect-ratio: 16 / 9;

    object-fit: cover;

    border-radius: 24px;

    border: 1px solid rgba(255,255,255,0.08);

    background: #111;

    transition: transform 0.25s ease,
                border-color 0.25s ease,
                box-shadow 0.25s ease;

    cursor: pointer;
}

.carousel-poster:hover {
    transform: translateY(-4px);

    border-color: rgba(255,220,230,0.35);

    box-shadow: 0 20px 40px rgba(0,0,0,0.35);
}

.ask-ui {
    transition: opacity 0.3s ease;
}


.dream-button {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.dream-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(255, 180, 80, 0.45);
}

.dream-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -120%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,0.35),
        transparent
    );
    transform: skewX(-20deg);
    transition: left 0.7s ease;
}

.dream-button:hover::before {
    left: 160%;
}


.btn-secondary {
    position: relative;
    overflow: hidden;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease,
        background 0.25s ease;
}

.btn-secondary:hover {
    transform: translateY(-2px);
    border-color: rgba(180,220,255,0.45);
    background: rgba(180,220,255,0.08);
    box-shadow:
        0 0 18px rgba(180,220,255,0.12),
        0 0 40px rgba(180,220,255,0.06);
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -120%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,0.18),
        transparent
    );
    transition: left 0.6s ease;
}

.btn-secondary:hover::before {
    left: 140%;
}

.footer-links {
    margin-top: 14px;
    font-size: 0.72rem;
    opacity: 0.45;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer-links a {
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.footer-links a:hover {
    opacity: 1;
}

.footer-links span {
    margin: 0 8px;
    color: rgba(255,255,255,0.25);
}

.portal-link-wrap {
    display: block;
    color: inherit;
    text-decoration: none;
}

.portal-link-wrap:hover {
    color: inherit;
    text-decoration: none;
}





@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;
    }
}