@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@200;300;400&family=Quicksand:wght@300;400;500&display=swap');

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

::selection { background: rgba(180,100,255,0.15); color: #333; }

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: #F2F0F5; }
::-webkit-scrollbar-thumb { background: #D0CCD8; border-radius: 2px; }

/* ===== Body: Light gray-white + faint iridescent halo ===== */
.fw-body {
    font-family: 'Inter', 'Quicksand', sans-serif;
    background: linear-gradient(160deg, #FAFAFE 0%, #F2F0F5 40%, #F5F3FA 100%);
    background-attachment: fixed;
    color: rgba(30,30,40,0.75);
    line-height: 1.6;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
    font-weight: 200;
}

/* Iridescent halo overlay */
.fw-body::before {
    content: '';
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background:
        radial-gradient(ellipse 500px 500px at 20% 25%, rgba(200,150,255,0.06), transparent),
        radial-gradient(ellipse 400px 400px at 75% 35%, rgba(150,200,255,0.05), transparent),
        radial-gradient(ellipse 350px 350px at 45% 70%, rgba(255,180,200,0.04), transparent),
        radial-gradient(ellipse 300px 300px at 85% 80%, rgba(180,255,200,0.04), transparent),
        radial-gradient(ellipse 450px 450px at 10% 75%, rgba(255,220,150,0.04), transparent);
    pointer-events: none;
    z-index: 0;
    animation: iridescentShift 25s ease-in-out infinite;
}

@keyframes iridescentShift {
    0%, 100% { transform: translate(0, 0); opacity: 1; }
    25% { transform: translate(5px, -3px); opacity: 0.85; }
    50% { transform: translate(-3px, 5px); opacity: 1.1; }
    75% { transform: translate(3px, 2px); opacity: 0.9; }
}

/* Subtle interference pattern */
.fw-body::after {
    content: '';
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background:
        repeating-linear-gradient(
            135deg,
            transparent 0px,
            rgba(200,150,255,0.012) 2px,
            rgba(150,200,255,0.01) 4px,
            rgba(255,180,200,0.012) 6px,
            transparent 8px
        );
    pointer-events: none;
    z-index: 0;
    animation: interferenceMove 40s linear infinite;
}

@keyframes interferenceMove {
    0% { background-position: 0 0; }
    100% { background-position: 200px 200px; }
}

/* ===== Navbar ===== */
.fw-navbar {
    position: sticky; top: 0; z-index: 100;
    background: rgba(250,250,254,0.88);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(180,150,220,0.1);
}
.fw-navbar-inner {
    max-width: 1200px; margin: 0 auto;
    height: 56px; display: flex; align-items: center;
    padding: 0 20px; gap: 28px;
}
.fw-logo {
    font-family: 'Inter', sans-serif;
    font-size: 20px; font-weight: 200; color: rgba(30,30,40,0.7);
    text-decoration: none; letter-spacing: 4px;
    flex-shrink: 0;
    background: linear-gradient(135deg, rgba(150,100,255,0.6), rgba(100,180,255,0.5), rgba(255,130,180,0.5));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.fw-nav-links {
    display: flex; gap: 28px; align-items: center;
}
.fw-nav-link {
    font-size: 13px; font-weight: 200; color: rgba(30,30,40,0.4);
    text-decoration: none; letter-spacing: 0.5px;
    transition: color 0.3s; position: relative;
}
.fw-nav-link::after {
    content: ''; position: absolute; bottom: -4px; left: 0;
    width: 0; height: 1px;
    background: linear-gradient(90deg, rgba(150,100,255,0.5), rgba(100,180,255,0.5));
    transition: width 0.3s;
}
.fw-nav-link:hover { color: rgba(30,30,40,0.7); }
.fw-nav-link:hover::after { width: 100%; }
.fw-search-wrap {
    display: flex; align-items: center; gap: 8px;
    margin-left: auto;
}
.fw-search-icon { flex-shrink: 0; }
.fw-search-icon circle, .fw-search-icon line { stroke: rgba(30,30,40,0.2); }
.fw-search-input {
    width: 200px; height: 36px;
    border: 1px solid rgba(180,150,220,0.15);
    background: rgba(255,255,255,0.6);
    backdrop-filter: blur(8px);
    padding: 0 12px; font-family: inherit;
    font-size: 13px; font-weight: 200; color: rgba(30,30,40,0.7); outline: none;
    border-radius: 20px;
    transition: border-color 0.3s, box-shadow 0.3s;
}
.fw-search-input:focus {
    border-color: rgba(150,100,255,0.3);
    box-shadow: 0 0 12px rgba(150,100,255,0.08);
}
.fw-search-input::placeholder { color: rgba(30,30,40,0.2); }
.fw-mobile-menu-btn {
    display: none; flex-direction: column; gap: 4px;
    background: none; border: none; cursor: pointer; padding: 4px;
}
.fw-mobile-menu-btn span {
    display: block; width: 20px; height: 1px; background: rgba(30,30,40,0.4);
    transition: all 0.3s;
}
.fw-mobile-menu-btn.active span:nth-child(1) { transform: rotate(45deg) translate(3px, 3px); }
.fw-mobile-menu-btn.active span:nth-child(2) { opacity: 0; }
.fw-mobile-menu-btn.active span:nth-child(3) { transform: rotate(-45deg) translate(3px, -3px); }
.fw-mobile-nav-panel {
    display: none; position: fixed; top: 56px; left: 0; right: 0; bottom: 0;
    background: rgba(250,250,254,0.96);
    backdrop-filter: blur(16px);
    z-index: 99; padding: 20px;
    flex-direction: column; gap: 0;
}
.fw-mobile-nav-panel.open { display: flex; }
.fw-mobile-nav-panel .fw-nav-link {
    display: block; padding: 14px 0; font-size: 15px;
    border-bottom: 1px solid rgba(180,150,220,0.06);
    color: rgba(30,30,40,0.5);
}

/* ===== Hero: Soap Film Section ===== */
.fw-hero-section {
    max-width: 1200px; margin: 0 auto;
    padding: 0px 0px 8px;
    min-height: 180px;
    position: relative;
    overflow: hidden;
}
.fw-hero-stack {
    position: relative;
    width: 100%;
    height: 180px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
}

/* ===== Soap Film ===== */
.fw-film {
    position: relative;
    cursor: pointer;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.fw-film:hover {
    transform: scale(1.06) rotate(1deg);
}

/* Film shape - irregular blob */
.fw-film-surface {
    width: 110px;
    height: 110px;
    position: relative;
    border-radius: 42% 58% 55% 45% / 50% 42% 58% 50%;
    background: linear-gradient(
        135deg,
        rgba(200,150,255,0.18) 0%,
        rgba(150,200,255,0.15) 25%,
        rgba(255,180,200,0.12) 50%,
        rgba(180,255,200,0.15) 75%,
        rgba(200,150,255,0.18) 100%
    );
    backdrop-filter: blur(2px);
    border: 1px solid rgba(200,180,255,0.2);
    overflow: hidden;
    animation: filmMorph 8s ease-in-out infinite;
    box-shadow:
        inset 0 0 30px rgba(200,150,255,0.08),
        inset 0 0 60px rgba(150,200,255,0.05),
        0 0 20px rgba(200,150,255,0.06);
}

.fw-film:nth-child(2) .fw-film-surface {
    width: 95px; height: 105px;
    border-radius: 55% 45% 48% 52% / 45% 55% 45% 55%;
    animation-delay: -2s;
    animation-duration: 9s;
}
.fw-film:nth-child(3) .fw-film-surface {
    width: 100px; height: 95px;
    border-radius: 48% 52% 58% 42% / 52% 48% 52% 48%;
    animation-delay: -4s;
    animation-duration: 7s;
}
.fw-film:nth-child(4) .fw-film-surface {
    width: 105px; height: 100px;
    border-radius: 52% 48% 45% 55% / 55% 45% 55% 45%;
    animation-delay: -6s;
    animation-duration: 10s;
}

@keyframes filmMorph {
    0%, 100% { border-radius: 42% 58% 55% 45% / 50% 42% 58% 50%; }
    25% { border-radius: 55% 45% 48% 52% / 45% 55% 45% 55%; }
    50% { border-radius: 48% 52% 42% 58% / 55% 45% 52% 48%; }
    75% { border-radius: 52% 48% 58% 42% / 48% 52% 48% 52%; }
}

/* Interference rainbow bands on film */
.fw-film-surface::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: linear-gradient(
        135deg,
        transparent 0%,
        rgba(255,100,100,0.08) 10%,
        rgba(255,200,50,0.06) 20%,
        rgba(100,255,100,0.08) 30%,
        rgba(50,200,255,0.06) 40%,
        rgba(150,50,255,0.08) 50%,
        rgba(255,50,150,0.06) 60%,
        rgba(255,150,50,0.08) 70%,
        rgba(50,255,200,0.06) 80%,
        rgba(100,100,255,0.08) 90%,
        transparent 100%
    );
    animation: interferenceShift 4s linear infinite;
    pointer-events: none;
}

@keyframes interferenceShift {
    0% { transform: translateX(0) rotate(0deg); }
    100% { transform: translateX(30%) rotate(15deg); }
}

/* Film reflection highlight */
.fw-film-surface::after {
    content: '';
    position: absolute;
    top: 10%; left: 15%;
    width: 35%; height: 25%;
    background: radial-gradient(ellipse, rgba(255,255,255,0.5) 0%, transparent 70%);
    border-radius: 50%;
    transform: rotate(-20deg);
    pointer-events: none;
    animation: reflectionShift 6s ease-in-out infinite;
}

@keyframes reflectionShift {
    0%, 100% { opacity: 0.5; transform: rotate(-20deg) translate(0, 0); }
    50% { opacity: 0.8; transform: rotate(-15deg) translate(5px, 3px); }
}

/* Film game thumbnail */
.fw-film-thumb {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 60px; height: 60px;
    border-radius: 50%;
    overflow: hidden;
    z-index: 2;
    border: 1px solid rgba(255,255,255,0.3);
}
.fw-film-thumb img {
    width: 100%; height: 100%; object-fit: cover;
    filter: saturate(0.7) brightness(1.1);
    opacity: 0.7;
}

/* Film game name */
.fw-film-name {
    position: absolute;
    bottom: -24px; left: 50%;
    transform: translateX(-50%);
    font-size: 10px; font-weight: 200;
    color: rgba(30,30,40,0.4);
    white-space: nowrap;
    letter-spacing: 0.5px;
    opacity: 0;
    transition: opacity 0.3s;
}
.fw-film:hover .fw-film-name {
    opacity: 1;
}

/* Film burst animation on click */
.fw-film.bursting .fw-film-surface {
    animation: filmBurst 0.6s ease-out forwards;
}
@keyframes filmBurst {
    0% { transform: scale(1); opacity: 1; filter: blur(0); }
    40% { transform: scale(1.2); opacity: 0.8; filter: blur(1px); }
    100% { transform: scale(0.3); opacity: 0; filter: blur(4px); }
}

/* Film reform animation */
.fw-film.reforming .fw-film-surface {
    animation: filmReform 0.8s ease-out forwards;
}
@keyframes filmReform {
    0% { transform: scale(0.3) rotate(90deg); opacity: 0; filter: blur(4px); }
    60% { transform: scale(1.05) rotate(-5deg); opacity: 0.9; filter: blur(0); }
    100% { transform: scale(1) rotate(0deg); opacity: 1; filter: blur(0); }
}

/* Burst fragments */
.fw-film-fragment {
    position: absolute;
    width: 8px; height: 8px;
    border-radius: 40% 60% 50% 50%;
    background: linear-gradient(135deg, rgba(200,150,255,0.3), rgba(150,200,255,0.2));
    pointer-events: none;
    opacity: 0;
    z-index: 5;
}
.fw-film.bursting .fw-film-fragment {
    animation: fragmentFly 0.8s ease-out forwards;
}
@keyframes fragmentFly {
    0% { opacity: 0.8; transform: translate(0, 0) scale(1); }
    100% { opacity: 0; transform: translate(var(--fx), var(--fy)) scale(0.3); }
}

/* Hero particles - floating micro bubbles */
.fw-hero-particle {
    position: absolute;
    width: 4px; height: 4px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.8), rgba(200,150,255,0.2));
    border: 0.5px solid rgba(200,180,255,0.15);
    animation: bubbleFloat 8s ease-in-out infinite;
    box-shadow: 0 0 4px rgba(200,150,255,0.1);
}
@keyframes bubbleFloat {
    0%, 100% { transform: translate(0, 0); opacity: 0.3; }
    25% { transform: translate(8px, -20px); opacity: 0.7; }
    50% { transform: translate(-5px, -10px); opacity: 0.4; }
    75% { transform: translate(6px, -15px); opacity: 0.6; }
}

.fw-hero-silk {
    display: none;
}

/* ===== Categories ===== */
.fw-categories-section {
    max-width: 1200px; margin: 0 auto;
    padding: 16px 20px 0;
}
.fw-categories-scroll {
    display: flex; gap: 0; overflow-x: auto;
    border-bottom: 1px solid rgba(180,150,220,0.08);
}
.fw-categories-scroll::-webkit-scrollbar { height: 2px; }
.fw-categories-scroll::-webkit-scrollbar-thumb { background: rgba(180,150,220,0.15); border-radius: 1px; }
.fw-category-item {
    display: flex; align-items: center; gap: 8px;
    padding: 12px 20px; text-decoration: none;
    cursor: pointer; white-space: nowrap;
    transition: all 0.3s;
}
.fw-cat-line {
    width: 2px; height: 20px;
    background: var(--cat-color);
    transition: all 0.3s;
    border-radius: 1px;
    opacity: 0.4;
}
.fw-category-item:hover .fw-cat-line {
    width: 20px; height: 2px;
    opacity: 0.8;
    box-shadow: 0 0 8px var(--cat-color);
}
.fw-cat-label {
    font-size: 12px; color: rgba(30,30,40,0.35); letter-spacing: 1px; text-transform: uppercase;
    font-weight: 200;
    transition: color 0.3s;
}
.fw-category-item:hover .fw-cat-label {
    color: rgba(30,30,40,0.65);
}

/* ===== Main ===== */
.fw-main {
    max-width: 1200px; margin: 0 auto;
    padding: 0 20px;
    position: relative; z-index: 1;
}

/* ===== Section ===== */
.fw-sector {
    margin-top: 28px;
}
.fw-section-header {
    display: flex; align-items: center; gap: 12px;
    padding: 14px 16px; cursor: pointer;
    background: rgba(255,255,255,0.5);
    border: 1px solid rgba(180,150,220,0.08);
    border-radius: 24px;
    transition: all 0.3s;
    backdrop-filter: blur(8px);
}
.fw-section-header:hover {
    background: rgba(255,255,255,0.7);
    border-color: rgba(180,150,220,0.15);
}
.fw-section-line {
    width: 8px; height: 8px;
    background: linear-gradient(135deg, rgba(150,100,255,0.3), rgba(100,180,255,0.3));
    border-radius: 50%;
    transition: all 0.4s;
    flex-shrink: 0;
}
.fw-sector.open .fw-section-line {
    width: 12px; height: 12px;
    background: linear-gradient(135deg, rgba(150,100,255,0.5), rgba(100,180,255,0.5));
    box-shadow: 0 0 10px rgba(150,100,255,0.2);
}
.fw-section-title {
    font-family: 'Inter', sans-serif;
    font-size: 18px; font-weight: 200; color: rgba(30,30,40,0.65);
    letter-spacing: 1px;
}
.fw-section-right {
    margin-left: auto; display: flex; align-items: center; gap: 12px;
}
.fw-section-more {
    font-size: 12px; color: rgba(30,30,40,0.25); text-decoration: none;
    transition: color 0.3s;
    font-weight: 200;
}
.fw-section-more:hover { color: rgba(30,30,40,0.5); }
.fw-section-arrow {
    font-size: 10px; color: rgba(30,30,40,0.25);
    transition: transform 0.3s;
}
.fw-sector.open .fw-section-arrow { transform: rotate(180deg); }
.fw-section-content {
    max-height: 0; overflow: hidden;
    transition: max-height 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.fw-sector.open .fw-section-content {
    max-height: 20000px;
}

/* ===== Game Grid ===== */
.fw-games-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    padding: 16px 0;
}
.fw-game-card {
    background: rgba(255,255,255,0.45);
    border: 1px solid rgba(180,150,220,0.08);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s ease, opacity 0.5s ease, transform 0.5s ease;
    opacity: 0;
    transform: translateY(10px);
    backdrop-filter: blur(8px);
}
.fw-game-card.visible {
    opacity: 1;
    transform: translateY(0);
}
.fw-game-card:hover {
    background: rgba(255,255,255,0.65);
    border-color: rgba(180,150,220,0.18);
    box-shadow: 0 0 20px rgba(150,100,255,0.06);
    transform: scale(0.98);
}
.fw-game-card:active {
    transform: scale(0.96);
}
.fw-card-link {
    display: block; text-decoration: none; color: rgba(30,30,40,0.7);
}
.fw-card-image {
    width: 100%; aspect-ratio: 1/1; overflow: hidden;
    border-radius: 16px 16px 0 0;
    position: relative;
}
.fw-card-image::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(200,150,255,0.05), transparent 60%);
    pointer-events: none;
}
.fw-card-image img {
    width: 100%; height: 100%; object-fit: cover;
    filter: saturate(0.9) contrast(0.95) brightness(1.05);
    transition: filter 0.4s, transform 0.4s;
}
.fw-game-card:hover .fw-card-image img {
    filter: saturate(1) contrast(1) brightness(1.08);
    transform: scale(1.03);
}
.fw-card-info {
    padding: 10px 12px;
}
.fw-card-title {
    font-size: 13px; font-weight: 200; color: rgba(30,30,40,0.6);
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
    letter-spacing: 0.3px;
}

/* ===== Footer: Bubble Wand + Floating Bubbles ===== */
.fw-footer {
    background: rgba(248,246,252,0.9);
    border-top: 1px solid rgba(180,150,220,0.08);
    padding: 48px 20px 24px;
    margin-top: 48px;
    position: relative; z-index: 1;
}
.fw-footer-inner {
    max-width: 1200px; margin: 0 auto;
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
    position: relative; z-index: 1;
}
.fw-footer-heading {
    font-family: 'Inter', sans-serif;
    font-size: 12px; font-weight: 200; color: rgba(30,30,40,0.35);
    margin-bottom: 14px; letter-spacing: 2px; text-transform: uppercase;
}
.fw-footer-desc {
    color: rgba(30,30,40,0.25);
    font-size: 13px; line-height: 1.7; font-weight: 200;
}
.fw-footer-links { display: flex; flex-direction: column; gap: 8px; }
.fw-footer-links a {
    color: rgba(30,30,40,0.3); text-decoration: none; font-size: 13px;
    transition: all 0.3s; cursor: pointer; font-weight: 200;
    display: inline-block;
    position: relative;
}
.fw-footer-links a:hover { color: rgba(30,30,40,0.6); }
.fw-footer-links a:active { transform: translateY(1px); }

/* Bubble wands in footer */
.fw-footer-bubble-wands {
    display: flex; align-items: flex-start; justify-content: center; gap: 28px;
    padding-top: 8px;
    position: relative;
}
.fw-bubble-wand {
    display: flex; flex-direction: column; align-items: center;
    position: relative;
}
/* Wand stick */
.fw-wand-stick {
    width: 3px; height: 50px;
    background: linear-gradient(180deg, #C0B8D0, #A8A0B8);
    border-radius: 1.5px;
    position: relative;
}
/* Wand ring */
.fw-wand-ring {
    width: 24px; height: 24px;
    border: 2px solid rgba(180,150,220,0.35);
    border-radius: 50%;
    position: relative;
    margin-bottom: -2px;
    background: radial-gradient(circle, rgba(200,150,255,0.08), transparent);
}
.fw-wand-ring::after {
    content: '';
    position: absolute;
    top: 3px; left: 3px;
    width: 8px; height: 6px;
    background: rgba(255,255,255,0.4);
    border-radius: 50%;
    transform: rotate(-20deg);
}

/* Floating micro soap bubbles */
.fw-micro-bubble {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.7), rgba(200,150,255,0.1));
    border: 0.5px solid rgba(200,180,255,0.15);
    pointer-events: none;
    animation: microBubbleRise 6s ease-in-out infinite;
}
.fw-micro-bubble:nth-child(1) { width: 6px; height: 6px; left: 5px; bottom: 30px; animation-delay: 0s; }
.fw-micro-bubble:nth-child(2) { width: 4px; height: 4px; left: 15px; bottom: 25px; animation-delay: 1.5s; }
.fw-micro-bubble:nth-child(3) { width: 5px; height: 5px; left: -5px; bottom: 35px; animation-delay: 3s; }
.fw-micro-bubble:nth-child(4) { width: 3px; height: 3px; left: 10px; bottom: 20px; animation-delay: 4s; }

@keyframes microBubbleRise {
    0% { opacity: 0; transform: translateY(0) translateX(0); }
    15% { opacity: 0.7; }
    50% { opacity: 0.5; transform: translateY(-40px) translateX(5px); }
    85% { opacity: 0.2; }
    100% { opacity: 0; transform: translateY(-70px) translateX(-3px); }
}

/* Footer iridescent line */
.fw-footer-glow {
    position: absolute;
    bottom: 80px; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(150,100,255,0.1), rgba(100,180,255,0.12), rgba(255,130,180,0.1), transparent);
    animation: glowLineFlow 8s ease-in-out infinite;
}
@keyframes glowLineFlow {
    0%, 100% { opacity: 0.3; transform: scaleX(0.8); }
    50% { opacity: 0.7; transform: scaleX(1.1); }
}

.fw-footer-bottom {
    max-width: 1200px; margin: 28px auto 0;
    padding-top: 20px; border-top: 1px solid rgba(180,150,220,0.06);
    text-align: center; position: relative; z-index: 1;
}
.fw-footer-bottom p { color: rgba(30,30,40,0.18); font-size: 13px; font-weight: 200; }

/* ===== Mobile Bottom Nav ===== */
.fw-bottom-nav {
    display: none;
    position: fixed; bottom: 0; left: 0; right: 0;
    background: rgba(250,250,254,0.92);
    backdrop-filter: blur(12px);
    border-top: 1px solid rgba(180,150,220,0.08);
    z-index: 100;
    padding: 8px 0;
}
.fw-bottom-nav a {
    display: flex; flex-direction: column; align-items: center;
    gap: 2px; text-decoration: none; color: rgba(30,30,40,0.3);
    font-size: 10px; font-weight: 200;
    transition: color 0.3s;
}
.fw-bottom-nav a:hover { color: rgba(30,30,40,0.6); }
.fw-bottom-nav-icon { font-size: 16px; }
.fw-bottom-nav-active { color: rgba(100,100,200,0.6) !important; }

/* ===== Detail Page ===== */
.fw-detail-header {
    background: rgba(250,250,254,0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(180,150,220,0.08);
    padding: 16px 20px;
}
.fw-back-btn {
    font-size: 13px; font-weight: 200; color: rgba(30,30,40,0.35);
    text-decoration: none; transition: color 0.3s;
}
.fw-back-btn:hover { color: rgba(30,30,40,0.6); }
.fw-detail-main {
    max-width: 900px; margin: 0 auto;
    padding: 24px 20px;
    position: relative; z-index: 1;
}
.fw-detail-image {
    width: 100%; max-width: 350px; margin: 24px auto;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(180,150,220,0.1);
    box-shadow: 0 0 30px rgba(150,100,255,0.06);
}
.fw-detail-image::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border-radius: 50%;
    background:
        radial-gradient(circle at 35% 30%, rgba(255,255,255,0.15) 0%, transparent 40%),
        radial-gradient(circle, transparent 50%, rgba(248,246,252,0.3) 100%);
    pointer-events: none;
}
.fw-detail-image img {
    width: 100%; height: 100%; object-fit: cover;
    filter: saturate(0.9) contrast(0.95);
}
.fw-detail-title {
    font-family: 'Inter', sans-serif;
    font-size: 24px; font-weight: 200; color: rgba(30,30,40,0.7);
    text-align: center; margin: 16px 0 8px;
}
.fw-detail-category {
    text-align: center; font-size: 13px; color: rgba(30,30,40,0.3);
    font-weight: 200; margin-bottom: 24px;
}
.fw-detail-play-btn {
    display: block; width: 200px; margin: 0 auto;
    padding: 14px 0; text-align: center;
    background: linear-gradient(135deg, rgba(150,100,255,0.6), rgba(100,180,255,0.5));
    color: #fff; font-weight: 300; font-size: 15px;
    border-radius: 30px; text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 0 20px rgba(150,100,255,0.15);
}
.fw-detail-play-btn:hover {
    box-shadow: 0 0 30px rgba(150,100,255,0.25);
    transform: scale(1.03);
}
.fw-detail-iframe-wrap {
    margin-top: 24px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(180,150,220,0.1);
    background: #FAFAFE;
}
.fw-detail-iframe-wrap iframe {
    width: 100%; height: 500px; border: none;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
    .fw-nav-links { display: none; }
    .fw-search-wrap { display: none; }
    .fw-mobile-menu-btn { display: flex; }
    .fw-hero-stack { gap: 16px; }
    .fw-film-surface { width: 85px !important; height: 85px !important; }
    .fw-film-thumb { width: 45px; height: 45px; }
    .fw-footer-inner { grid-template-columns: 1fr; gap: 24px; }
    .fw-bottom-nav {
        display: flex; justify-content: space-around;
    }
    .fw-games-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
}

@media (max-width: 480px) {
    .fw-hero-stack { gap: 10px; }
    .fw-film-surface { width: 70px !important; height: 70px !important; }
    .fw-film-thumb { width: 35px; height: 35px; }
    .fw-games-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
}
