/* ========================================
   CRIPTO HOTEL - Pixel Art Social Game UI
   Isometric multiplayer social experience
   ======================================== */

/* CSS Variables */
:root {
    /* Primary Colors - Neon Cyber */
    --neon-cyan: #00f5ff;
    --neon-pink: #ff00ff;
    --neon-green: #00ff88;
    --neon-yellow: #ffe600;
    --neon-orange: #ff8c00;
    --neon-purple: #9945ff;

    /* Rarity Colors */
    --mythic: #e6cc80;
    --mythic-glow: rgba(230, 204, 128, 0.8);
    --legendary: #ff8c00;
    --legendary-glow: rgba(255, 140, 0, 0.6);
    --epic: #a855f7;
    --epic-glow: rgba(168, 85, 247, 0.6);
    --rare: #3b82f6;
    --rare-glow: rgba(59, 130, 246, 0.6);
    --common: #6b7280;
    --common-glow: rgba(107, 114, 128, 0.4);

    /* Backgrounds */
    --bg-darker: #050508;
    --bg-dark: #0a0a12;
    --bg-panel: #12121c;
    --bg-card: #1a1a28;
    --bg-hover: #252535;

    /* UI Colors */
    --ui-border: #2a2a3a;
    --ui-border-light: #3a3a4a;
    --ui-accent: var(--neon-cyan);

    /* Text */
    --text-primary: #ffffff;
    --text-secondary: #a0a0b0;
    --text-muted: #606070;

    /* Fonts */
    --font-pixel: 'Press Start 2P', cursive;
    --font-retro: 'VT323', monospace;

    /* Shadows */
    --glow-cyan: 0 0 20px rgba(0, 245, 255, 0.5);
    --glow-pink: 0 0 20px rgba(255, 0, 255, 0.5);
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-retro);
    background: var(--bg-darker);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
    font-size: 18px;
}

/* Pixel Perfect Rendering */
img {
    image-rendering: -moz-crisp-edges;
    image-rendering: -webkit-crisp-edges;
    image-rendering: pixelated;
    image-rendering: crisp-edges;
}

/* ===== SCANLINES OVERLAY ===== */
.scanlines {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    background: repeating-linear-gradient(
        0deg,
        rgba(0, 0, 0, 0.15) 0px,
        rgba(0, 0, 0, 0.15) 1px,
        transparent 1px,
        transparent 2px
    );
    opacity: 0.4;
}

/* ===== FLOATING PIXELS BACKGROUND ===== */
.pixel-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    background:
        radial-gradient(circle at 20% 80%, rgba(0, 245, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(153, 69, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 0, 255, 0.05) 0%, transparent 60%);
}

.pixel {
    position: absolute;
    width: 4px;
    height: 4px;
    opacity: 0.5;
    animation: float 20s infinite linear;
}

@keyframes float {
    0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
    10% { opacity: 0.5; }
    90% { opacity: 0.5; }
    100% { transform: translateY(-100vh) rotate(720deg); opacity: 0; }
}

/* ===== HOTEL TOP BAR (HABBO STYLE) ===== */
.hotel-bar {
    position: fixed;
    top: 40px; /* Account for alpha banner */
    left: 0;
    right: 0;
    z-index: 1000;
    background: linear-gradient(180deg, var(--bg-panel) 0%, var(--bg-dark) 100%);
    border-bottom: 3px solid var(--neon-cyan);
    box-shadow: 0 4px 30px rgba(0, 245, 255, 0.2);
}

.hotel-bar-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 12px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.hotel-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.hotel-logo .logo-img {
    height: 55px;
    filter: drop-shadow(0 0 10px rgba(0, 245, 255, 0.3));
    transition: transform 0.3s ease;
}

.hotel-logo:hover .logo-img {
    transform: scale(1.05);
}

.online-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(0, 255, 136, 0.15);
    border: 2px solid var(--neon-green);
    padding: 4px 10px;
    font-family: var(--font-pixel);
    font-size: 8px;
    color: var(--neon-green);
    text-shadow: 0 0 10px var(--neon-green);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--neon-green);
    border-radius: 50%;
    animation: pulse 1.5s infinite;
    box-shadow: 0 0 10px var(--neon-green);
}

.pulse-dot.small {
    width: 6px;
    height: 6px;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.2); }
}

/* Navigation Tabs */
.hotel-nav {
    display: flex;
    gap: 5px;
}

.nav-tab {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 10px 18px;
    background: var(--bg-card);
    border: 2px solid transparent;
    text-decoration: none;
    color: var(--text-secondary);
    font-family: var(--font-pixel);
    font-size: 8px;
    transition: all 0.2s ease;
    position: relative;
}

.nav-tab .tab-icon {
    font-size: 16px;
}

.nav-tab:hover {
    background: var(--bg-hover);
    border-color: var(--ui-border-light);
    color: var(--text-primary);
}

.nav-tab.active {
    background: linear-gradient(180deg, var(--bg-hover) 0%, var(--bg-card) 100%);
    border-color: var(--neon-cyan);
    color: var(--neon-cyan);
    box-shadow: 0 0 15px rgba(0, 245, 255, 0.3);
}

.nav-tab.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid var(--neon-cyan);
}

/* Hotel Actions */
.hotel-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.social-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border: 2px solid var(--ui-border);
    color: var(--text-secondary);
    transition: all 0.2s ease;
}

.social-btn:hover {
    border-color: var(--neon-cyan);
    color: var(--neon-cyan);
    box-shadow: var(--glow-cyan);
}

/* ===== PIXEL BUTTON ===== */
.pixel-btn {
    font-family: var(--font-pixel);
    font-size: 10px;
    padding: 14px 28px;
    background: linear-gradient(180deg, var(--neon-cyan) 0%, #00a5aa 100%);
    border: none;
    color: var(--bg-dark);
    cursor: pointer;
    position: relative;
    transition: all 0.2s ease;
    box-shadow:
        0 4px 0 #006666,
        0 0 20px rgba(0, 245, 255, 0.4);
    display: flex;
    align-items: center;
    gap: 8px;
}

.pixel-btn::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    height: 40%;
    background: rgba(255, 255, 255, 0.25);
}

.pixel-btn:hover {
    transform: translateY(-2px);
    box-shadow:
        0 6px 0 #006666,
        0 0 30px rgba(0, 245, 255, 0.6);
}

.pixel-btn:active {
    transform: translateY(2px);
    box-shadow:
        0 2px 0 #006666,
        0 0 15px rgba(0, 245, 255, 0.4);
}

.pixel-btn.play-btn {
    background: linear-gradient(180deg, var(--neon-green) 0%, #00aa66 100%);
    box-shadow:
        0 4px 0 #005533,
        0 0 20px rgba(0, 255, 136, 0.4);
}

.pixel-btn.play-btn:hover {
    box-shadow:
        0 6px 0 #005533,
        0 0 30px rgba(0, 255, 136, 0.6);
}

.pixel-btn.primary-cta {
    padding: 16px 36px;
    font-size: 11px;
}

.pixel-btn.primary-cta.big {
    padding: 20px 50px;
    font-size: 14px;
}

.pixel-btn.secondary-cta {
    background: transparent;
    border: 3px solid var(--neon-cyan);
    color: var(--neon-cyan);
    box-shadow: 0 0 20px rgba(0, 245, 255, 0.3);
}

.pixel-btn.secondary-cta:hover {
    background: var(--neon-cyan);
    color: var(--bg-dark);
}

.pixel-btn.small-btn {
    padding: 10px 20px;
    font-size: 9px;
}

/* ===== HERO SECTION ===== */
.hero-section {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 90px;
    overflow: hidden;
}

.hero-video-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.hero-video-bg video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.hero-video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(5, 5, 8, 0.7) 0%,
        rgba(5, 5, 8, 0.5) 50%,
        rgba(5, 5, 8, 0.8) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 0 20px;
    max-width: 900px;
}

/* Welcome Bubble - Chat Bubble Style */
.welcome-bubble {
    background: var(--bg-panel);
    border: 3px solid var(--neon-cyan);
    padding: 40px 50px;
    margin-bottom: 30px;
    position: relative;
    box-shadow:
        0 0 30px rgba(0, 245, 255, 0.3),
        inset 0 0 30px rgba(0, 245, 255, 0.05);
}

.welcome-bubble::before {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 15px solid var(--neon-cyan);
}

.welcome-bubble::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 12px solid var(--bg-panel);
}

.bubble-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-pixel);
    font-size: 12px;
    color: var(--text-secondary);
    margin-bottom: 15px;
}

.bubble-icon {
    font-size: 24px;
    animation: wave 1.5s infinite;
}

@keyframes wave {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(20deg); }
    75% { transform: rotate(-10deg); }
}

.hotel-title {
    font-family: var(--font-pixel);
    font-size: clamp(32px, 8vw, 72px);
    line-height: 1.2;
}

.title-line {
    display: block;
    text-shadow:
        0 0 10px var(--neon-cyan),
        0 0 20px var(--neon-cyan),
        0 0 40px var(--neon-cyan);
}

.title-line.accent {
    color: var(--neon-pink);
    text-shadow:
        0 0 10px var(--neon-pink),
        0 0 20px var(--neon-pink),
        0 0 40px var(--neon-pink);
}

.hotel-tagline {
    font-family: var(--font-pixel);
    font-size: 14px;
    color: var(--neon-yellow);
    letter-spacing: 4px;
    margin-top: 15px;
    text-shadow: 0 0 15px rgba(255, 230, 0, 0.5);
}

/* Hero Features Pills */
.hero-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin: 35px 0;
}

.feature-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--bg-card);
    border: 2px solid var(--ui-border);
    padding: 10px 18px;
    font-family: var(--font-pixel);
    font-size: 9px;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.feature-pill:hover {
    border-color: var(--neon-cyan);
    color: var(--neon-cyan);
    transform: translateY(-3px);
    box-shadow: var(--glow-cyan);
}

.pill-icon {
    font-size: 16px;
}

/* Hero Token Section */
.hero-token {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin: 30px 0;
}

.token-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--neon-green), #00cc66);
    padding: 12px 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 0 25px rgba(0, 255, 136, 0.4);
    animation: tokenPulse 2s infinite;
}

@keyframes tokenPulse {
    0%, 100% { box-shadow: 0 0 25px rgba(0, 255, 136, 0.4); }
    50% { box-shadow: 0 0 40px rgba(0, 255, 136, 0.7); }
}

.token-badge:hover {
    transform: scale(1.05);
    box-shadow: 0 0 50px rgba(0, 255, 136, 0.8);
}

.token-icon {
    font-size: 20px;
}

.token-text {
    font-family: var(--font-pixel);
    font-size: 14px;
    color: var(--bg-dark);
    font-weight: bold;
}

.token-contract {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(0, 0, 0, 0.6);
    border: 3px solid var(--neon-green);
    padding: 16px 28px;
    flex-wrap: wrap;
    justify-content: center;
    box-shadow: 0 0 20px rgba(0, 245, 255, 0.3), inset 0 0 15px rgba(0, 0, 0, 0.5);
}

.ca-label {
    font-family: var(--font-pixel);
    font-size: 14px;
    color: var(--neon-green);
    text-shadow: 0 0 10px var(--neon-green);
}

.ca-address {
    font-family: var(--font-retro);
    font-size: 18px;
    color: var(--text-primary);
    background: var(--bg-panel);
    padding: 10px 16px;
    border: 2px solid var(--ui-border);
    user-select: all;
    letter-spacing: 0.5px;
}

.ca-copy {
    font-family: var(--font-pixel);
    font-size: 12px;
    padding: 10px 20px;
    background: var(--neon-green);
    border: none;
    color: var(--bg-dark);
    cursor: pointer;
    transition: all 0.2s ease;
    min-width: 70px;
}

.ca-copy:hover {
    background: #00ff99;
    transform: scale(1.05);
}

/* Hero Video Showcase */
.hero-video-showcase {
    margin: 40px 0;
    display: flex;
    justify-content: center;
}

.video-showcase-frame {
    position: relative;
    width: 100%;
    max-width: 600px;
    border: 4px solid var(--neon-cyan);
    box-shadow:
        0 0 30px rgba(0, 245, 255, 0.4),
        inset 0 0 30px rgba(0, 0, 0, 0.5);
    background: var(--bg-dark);
    overflow: hidden;
}

.video-showcase-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--neon-cyan), var(--neon-purple), var(--neon-pink), var(--neon-cyan));
    background-size: 400% 400%;
    animation: glowBorder 4s ease infinite;
    z-index: -1;
    opacity: 0.6;
}

@keyframes glowBorder {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.video-showcase-frame video {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
    object-fit: cover;
}

.video-showcase-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    padding: 40px 20px 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.video-badge {
    font-family: var(--font-pixel);
    font-size: 8px;
    background: var(--neon-cyan);
    color: var(--bg-dark);
    padding: 4px 10px;
    animation: pulse 2s infinite;
}

.video-title {
    font-family: var(--font-pixel);
    font-size: 12px;
    color: var(--text-primary);
    text-shadow: 0 0 10px var(--neon-cyan);
}

/* Alpha Notice */
.alpha-notice {
    text-align: center;
    margin: 25px 0;
    padding: 20px 30px;
    background: rgba(255, 140, 0, 0.1);
    border: 2px solid var(--legendary);
    box-shadow: 0 0 30px rgba(255, 140, 0, 0.3);
}

.alpha-badge {
    display: inline-block;
    font-family: var(--font-pixel);
    font-size: 14px;
    color: var(--bg-dark);
    background: linear-gradient(90deg, var(--legendary), #ffd700);
    padding: 10px 25px;
    margin-bottom: 15px;
    animation: alphaPulse 2s infinite;
}

@keyframes alphaPulse {
    0%, 100% { box-shadow: 0 0 20px rgba(255, 140, 0, 0.5); }
    50% { box-shadow: 0 0 40px rgba(255, 140, 0, 0.8); }
}

.alpha-notice p {
    font-size: 16px;
    color: var(--text-secondary);
    margin: 0;
}

.alpha-notice a {
    color: var(--neon-green);
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.alpha-notice a:hover {
    color: #00ff99;
    text-shadow: 0 0 10px var(--neon-green);
}

/* Disabled button state */
.pixel-btn.disabled {
    background: linear-gradient(180deg, #666 0%, #444 100%);
    box-shadow: 0 4px 0 #333;
    cursor: not-allowed;
    opacity: 0.7;
}

.pixel-btn.disabled:hover {
    transform: none;
    box-shadow: 0 4px 0 #333;
}

/* Hero CTA Buttons */
.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 40px;
}

/* Live Stats */
.live-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    background: var(--bg-panel);
    border: 2px solid var(--ui-border);
    padding: 20px 40px;
    margin: 0 auto;
}

.stat-box {
    text-align: center;
}

.stat-value {
    font-family: var(--font-pixel);
    font-size: 28px;
    color: var(--neon-cyan);
    text-shadow: 0 0 15px rgba(0, 245, 255, 0.5);
}

.stat-value.live {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--neon-green);
    font-size: 14px;
    text-shadow: 0 0 15px rgba(0, 255, 136, 0.5);
}

.stat-label {
    font-family: var(--font-pixel);
    font-size: 8px;
    color: var(--text-muted);
    letter-spacing: 2px;
    margin-top: 5px;
}

.stat-divider {
    width: 2px;
    height: 40px;
    background: var(--ui-border);
}

/* Hero Avatars */
.hero-avatars {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 5;
}

.avatar-float {
    position: absolute;
    left: var(--x);
    top: var(--y);
    animation: avatarFloat 4s ease-in-out infinite;
    animation-delay: var(--delay);
}

.avatar-float img {
    height: 160px;
    width: auto;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.5));
}

@keyframes avatarFloat {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-15px) scale(1.02); }
}

/* Scroll Hint */
.scroll-hint {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    font-family: var(--font-pixel);
    font-size: 8px;
    color: var(--text-muted);
    letter-spacing: 2px;
    animation: bounce 2s infinite;
}

.scroll-arrow {
    font-size: 20px;
    color: var(--neon-cyan);
    text-shadow: var(--glow-cyan);
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* ===== ABOUT SECTION ===== */
.about-section {
    padding: 100px 20px;
    background: linear-gradient(180deg, var(--bg-darker) 0%, var(--bg-dark) 50%, var(--bg-darker) 100%);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(0, 245, 255, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(255, 0, 255, 0.05) 0%, transparent 40%);
    pointer-events: none;
}

.about-container {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.about-main {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
    align-items: center;
}

.about-text {
    color: var(--text-secondary);
    font-size: 17px;
    line-height: 1.8;
}

.about-intro {
    font-size: 19px;
    margin-bottom: 30px;
}

.about-intro strong {
    color: var(--neon-cyan);
    font-size: 22px;
}

.highlight {
    color: var(--neon-pink);
    font-weight: bold;
}

.highlight-green {
    color: var(--neon-green);
    font-weight: bold;
}

.about-story {
    background: var(--bg-panel);
    border-left: 4px solid var(--neon-cyan);
    padding: 25px;
}

.about-story h3 {
    font-family: var(--font-pixel);
    font-size: 12px;
    color: var(--neon-cyan);
    margin-bottom: 15px;
}

.about-story p {
    margin: 0;
}

.about-story em {
    color: var(--neon-yellow);
    font-style: normal;
    font-weight: bold;
}

.about-visual {
    display: flex;
    justify-content: center;
}

.visual-box {
    width: 250px;
    height: 250px;
    background: var(--bg-card);
    border: 3px solid var(--neon-cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 0 40px rgba(0, 245, 255, 0.3);
    animation: visualFloat 4s ease-in-out infinite;
}

@keyframes visualFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(2deg); }
}

.visual-glow {
    position: absolute;
    inset: -20px;
    background: radial-gradient(circle, rgba(0, 245, 255, 0.2) 0%, transparent 70%);
    animation: glowPulse 2s infinite;
}

.visual-content {
    text-align: center;
    z-index: 1;
}

.visual-emoji {
    font-size: 60px;
    display: block;
    margin-bottom: 15px;
}

.visual-text {
    font-family: var(--font-pixel);
    font-size: 16px;
    color: var(--neon-cyan);
    text-shadow: 0 0 20px var(--neon-cyan);
}

/* Differences Table */
.differences-grid {
    background: var(--bg-panel);
    border: 2px solid var(--ui-border);
    padding: 30px;
}

.differences-title {
    font-family: var(--font-pixel);
    font-size: 14px;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.differences-title span {
    font-size: 20px;
}

.diff-table {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.diff-row {
    display: grid;
    grid-template-columns: 150px 1fr 1fr;
    gap: 2px;
}

.diff-row.header {
    margin-bottom: 5px;
}

.diff-cell {
    padding: 15px 20px;
    background: var(--bg-card);
    font-size: 14px;
}

.diff-cell.label {
    font-family: var(--font-pixel);
    font-size: 9px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
}

.diff-cell.habbo {
    color: var(--text-muted);
    border-left: 3px solid #666;
}

.diff-cell.cripto {
    color: var(--neon-green);
    border-left: 3px solid var(--neon-green);
    background: rgba(0, 255, 136, 0.05);
}

.diff-row.header .diff-cell {
    font-family: var(--font-pixel);
    font-size: 10px;
    text-align: center;
    padding: 12px;
}

.diff-row.header .diff-cell.habbo {
    background: #333;
    color: #888;
}

.diff-row.header .diff-cell.cripto {
    background: rgba(0, 255, 136, 0.2);
    color: var(--neon-green);
    text-shadow: 0 0 10px var(--neon-green);
}

/* Stats Showcase */
.stats-showcase {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.showcase-item {
    background: var(--bg-card);
    border: 3px solid var(--ui-border);
    padding: 35px 25px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.showcase-item:hover {
    transform: translateY(-10px);
}

.showcase-item.legendary {
    border-color: var(--legendary);
}

.showcase-item.legendary:hover {
    box-shadow: 0 20px 50px var(--legendary-glow);
}

.showcase-item.epic {
    border-color: var(--epic);
}

.showcase-item.epic:hover {
    box-shadow: 0 20px 50px var(--epic-glow);
}

.showcase-item.rare {
    border-color: var(--rare);
}

.showcase-item.rare:hover {
    box-shadow: 0 20px 50px var(--rare-glow);
}

.showcase-glow {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.showcase-item.legendary .showcase-glow {
    background: radial-gradient(circle, var(--legendary-glow) 0%, transparent 70%);
}

.showcase-item.epic .showcase-glow {
    background: radial-gradient(circle, var(--epic-glow) 0%, transparent 70%);
}

.showcase-item.rare .showcase-glow {
    background: radial-gradient(circle, var(--rare-glow) 0%, transparent 70%);
}

.showcase-item:hover .showcase-glow {
    opacity: 1;
}

.showcase-number {
    font-family: var(--font-pixel);
    font-size: 48px;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.showcase-item.legendary .showcase-number {
    color: var(--legendary);
    text-shadow: 0 0 30px var(--legendary);
}

.showcase-item.epic .showcase-number {
    color: var(--epic);
    text-shadow: 0 0 30px var(--epic);
}

.showcase-item.rare .showcase-number {
    color: var(--rare);
    text-shadow: 0 0 30px var(--rare);
}

.showcase-label {
    font-family: var(--font-pixel);
    font-size: 11px;
    color: var(--text-primary);
    margin-bottom: 15px;
    letter-spacing: 2px;
    position: relative;
    z-index: 1;
}

.showcase-desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
    position: relative;
    z-index: 1;
}

/* About Features */
.about-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.feature-card {
    background: var(--bg-panel);
    border: 2px solid var(--ui-border);
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: var(--neon-cyan);
    transform: translateY(-5px);
}

.feature-icon-wrapper {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: var(--bg-card);
    border: 2px solid var(--neon-cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

.feature-card h4 {
    font-family: var(--font-pixel);
    font-size: 10px;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* About CTA */
.about-cta {
    text-align: center;
    padding: 40px;
    background: var(--bg-panel);
    border: 2px solid var(--neon-cyan);
    box-shadow: 0 0 30px rgba(0, 245, 255, 0.2);
}

.about-cta p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 25px;
}

.cta-buttons-row {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive About */
@media (max-width: 1024px) {
    .about-main {
        grid-template-columns: 1fr;
    }

    .about-visual {
        order: -1;
    }

    .visual-box {
        width: 200px;
        height: 200px;
    }

    .about-features {
        grid-template-columns: repeat(2, 1fr);
    }

    .diff-row {
        grid-template-columns: 100px 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .stats-showcase {
        grid-template-columns: 1fr;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .diff-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .diff-row.header {
        display: none;
    }

    .diff-cell {
        padding: 12px 15px;
    }

    .diff-cell.label {
        background: var(--bg-panel);
        font-size: 10px;
        color: var(--neon-cyan);
    }

    .diff-cell.habbo::before {
        content: 'HABBO: ';
        font-family: var(--font-pixel);
        font-size: 8px;
        color: #666;
    }

    .diff-cell.cripto::before {
        content: 'CRIPTO: ';
        font-family: var(--font-pixel);
        font-size: 8px;
    }

    .showcase-number {
        font-size: 36px;
    }

    .cta-buttons-row {
        flex-direction: column;
        align-items: center;
    }
}

/* ===== VIDEO GALLERY SECTION ===== */
.gallery-section {
    padding: 100px 20px;
    background: var(--bg-dark);
}

.gallery-container {
    max-width: 1200px;
    margin: 0 auto;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.video-card {
    background: var(--bg-panel);
    border: 2px solid var(--ui-border);
    overflow: hidden;
    transition: all 0.4s ease;
}

.video-card:hover {
    border-color: var(--neon-cyan);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 245, 255, 0.2);
}

.video-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: var(--bg-darker);
}

.video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.video-card:hover .video-wrapper video {
    transform: scale(1.05);
}

.video-info {
    padding: 20px;
    background: var(--bg-card);
    border-top: 2px solid var(--ui-border);
}

.video-info h4 {
    font-family: var(--font-pixel);
    font-size: 11px;
    color: var(--neon-cyan);
    margin-bottom: 5px;
}

.video-info p {
    font-size: 14px;
    color: var(--text-secondary);
    margin: 0;
}

/* Play overlay on hover */
.video-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.video-card:hover .video-wrapper::after {
    opacity: 0;
}

/* Responsive video grid */
@media (max-width: 768px) {
    .video-grid {
        grid-template-columns: 1fr;
    }

    .video-info {
        padding: 15px;
    }

    .video-info h4 {
        font-size: 10px;
    }
}

/* ===== ROOMS SECTION ===== */
.rooms-section {
    padding: 100px 20px;
    background: var(--bg-dark);
}

.section-frame {
    max-width: 1200px;
    margin: 0 auto;
    background: var(--bg-panel);
    border: 3px solid var(--ui-border);
    overflow: hidden;
}

.frame-header {
    display: flex;
    background: var(--bg-card);
    border-bottom: 3px solid var(--ui-border);
}

.frame-tab {
    padding: 15px 25px;
    font-family: var(--font-pixel);
    font-size: 10px;
    color: var(--text-secondary);
    border-right: 2px solid var(--ui-border);
    cursor: pointer;
    transition: all 0.2s ease;
}

.frame-tab:hover {
    background: var(--bg-hover);
    color: var(--text-primary);
}

.frame-tab.active {
    background: var(--bg-panel);
    color: var(--neon-cyan);
    border-bottom: 3px solid var(--neon-cyan);
    margin-bottom: -3px;
}

/* Rooms Grid */
.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    padding: 25px;
}

.room-card {
    background: var(--bg-card);
    border: 2px solid var(--ui-border);
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.room-card:hover {
    border-color: var(--neon-cyan);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 245, 255, 0.2);
}

.room-card.featured {
    border-color: var(--neon-yellow);
    box-shadow: 0 0 20px rgba(255, 230, 0, 0.2);
}

.room-preview {
    height: 140px;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.lobby-preview {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
}

.beach-preview {
    background: linear-gradient(135deg, #f4a261 0%, #e9c46a 50%, #2a9d8f 100%);
}

.bar-preview {
    background: linear-gradient(135deg, #512000 0%, #443344 50%, #2a1a1a 100%);
}

.pool-preview {
    background: linear-gradient(135deg, #0077b6 0%, #00b4d8 50%, #90e0ef 100%);
}

.hospital-preview {
    background: linear-gradient(135deg, #7CB987 0%, #a5d6a7 50%, #D8E4E4 100%);
}

.lounge-preview {
    background: linear-gradient(135deg, #443344 0%, #6a4c93 50%, #9d4edd 100%);
}

.room-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.room-card:hover .room-overlay {
    opacity: 1;
}

.room-enter {
    font-family: var(--font-pixel);
    font-size: 14px;
    color: var(--neon-green);
    text-shadow: 0 0 15px var(--neon-green);
    animation: pulse 1s infinite;
}

.room-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    font-family: var(--font-pixel);
    font-size: 8px;
    padding: 5px 10px;
}

.room-badge.hot {
    background: linear-gradient(90deg, #ff4757, #ff6b6b);
    color: white;
    animation: badgePulse 1.5s infinite;
}

.room-badge.new {
    background: linear-gradient(90deg, var(--neon-green), #00cc66);
    color: var(--bg-dark);
}

.room-badge.event {
    background: linear-gradient(90deg, var(--neon-purple), #c084fc);
    color: white;
}

.room-badge.vip {
    background: linear-gradient(90deg, #ffd700, #ff8c00);
    color: #1a1a28;
    font-weight: bold;
}

@keyframes badgePulse {
    0%, 100% { box-shadow: 0 0 10px rgba(255, 71, 87, 0.5); }
    50% { box-shadow: 0 0 20px rgba(255, 71, 87, 0.8); }
}

.room-info {
    padding: 15px;
}

.room-name {
    font-family: var(--font-pixel);
    font-size: 10px;
    color: var(--text-primary);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.room-icon {
    font-size: 16px;
}

.room-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: var(--text-muted);
}

.room-owner {
    font-size: 11px;
}

.room-users {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--neon-green);
    text-decoration: line-through;
    opacity: 0.6;
}

.users-dot {
    width: 6px;
    height: 6px;
    background: var(--neon-green);
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

/* Rooms Footer */
.rooms-footer {
    padding: 20px;
    text-align: center;
    background: var(--bg-card);
    border-top: 2px solid var(--ui-border);
}

.rooms-footer p {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 15px;
}

/* ===== SECTION HEADER GAME STYLE ===== */
.section-header-game {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-bottom: 50px;
    padding: 0 20px;
}

.section-header-game h2 {
    font-family: var(--font-pixel);
    font-size: clamp(16px, 4vw, 24px);
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 15px;
    text-shadow: 0 0 20px rgba(0, 245, 255, 0.3);
    white-space: nowrap;
}

.header-icon {
    font-size: 28px;
}

.header-decoration {
    height: 4px;
    flex: 1;
    max-width: 150px;
    background: linear-gradient(90deg, transparent, var(--neon-cyan), transparent);
}

.header-decoration.left {
    background: linear-gradient(90deg, transparent, var(--neon-cyan));
}

.header-decoration.right {
    background: linear-gradient(90deg, var(--neon-cyan), transparent);
}

/* ===== AVATARS SECTION ===== */
.avatars-section {
    padding: 100px 20px;
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
}

.avatar-showcase {
    max-width: 1200px;
    margin: 0 auto;
}

/* Rarity Tabs */
.rarity-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.rarity-tab {
    font-family: var(--font-pixel);
    font-size: 9px;
    padding: 12px 20px;
    background: var(--bg-card);
    border: 2px solid var(--ui-border);
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
}

.rarity-tab:hover {
    border-color: var(--ui-border-light);
    color: var(--text-primary);
}

.rarity-tab.active {
    border-color: var(--neon-cyan);
    color: var(--neon-cyan);
    box-shadow: var(--glow-cyan);
}

.rarity-tab.mythic.active {
    border-color: var(--mythic);
    color: var(--mythic);
    box-shadow: 0 0 20px var(--mythic-glow), 0 0 40px var(--mythic-glow);
}

.rarity-tab.legendary.active {
    border-color: var(--legendary);
    color: var(--legendary);
    box-shadow: 0 0 20px var(--legendary-glow);
}

.rarity-tab.epic.active {
    border-color: var(--epic);
    color: var(--epic);
    box-shadow: 0 0 20px var(--epic-glow);
}

.rarity-tab.rare.active {
    border-color: var(--rare);
    color: var(--rare);
    box-shadow: 0 0 20px var(--rare-glow);
}

.rarity-tab.common.active {
    border-color: var(--common);
    color: var(--common);
    box-shadow: 0 0 20px var(--common-glow);
}

/* Avatar Carousel */
.avatar-carousel {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 25px;
}

.avatar-card {
    background: var(--bg-card);
    border: 3px solid var(--ui-border);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.avatar-card:hover {
    transform: translateY(-10px);
}

.avatar-card.mythic {
    border-color: var(--mythic);
    background: linear-gradient(135deg, var(--bg-card) 0%, rgba(230, 204, 128, 0.1) 100%);
}

.avatar-card.mythic:hover {
    box-shadow: 0 15px 40px var(--mythic-glow), 0 0 30px var(--mythic-glow);
}

.avatar-card.legendary {
    border-color: var(--legendary);
}

.avatar-card.legendary:hover {
    box-shadow: 0 15px 40px var(--legendary-glow);
}

.avatar-card.epic {
    border-color: var(--epic);
}

.avatar-card.epic:hover {
    box-shadow: 0 15px 40px var(--epic-glow);
}

.avatar-card.rare {
    border-color: var(--rare);
}

.avatar-card.rare:hover {
    box-shadow: 0 15px 40px var(--rare-glow);
}

.avatar-card.common {
    border-color: var(--common);
}

.avatar-card.common:hover {
    box-shadow: 0 15px 40px var(--common-glow);
}

.card-glow {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.avatar-card.mythic .card-glow {
    background: radial-gradient(circle at center, var(--mythic-glow) 0%, transparent 70%);
}

.avatar-card.legendary .card-glow {
    background: radial-gradient(circle at center, var(--legendary-glow) 0%, transparent 70%);
}

.avatar-card.epic .card-glow {
    background: radial-gradient(circle at center, var(--epic-glow) 0%, transparent 70%);
}

.avatar-card.rare .card-glow {
    background: radial-gradient(circle at center, var(--rare-glow) 0%, transparent 70%);
}

.avatar-card:hover .card-glow {
    opacity: 1;
}

/* Avatar Lore System */
.avatar-lore {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.85) 70%, transparent 100%);
    padding: 60px 15px 15px 15px;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;
}

.avatar-card:hover .avatar-lore {
    transform: translateY(0);
}

.lore-title {
    font-family: var(--font-pixel);
    font-size: 8px;
    color: var(--neon-cyan);
    margin-bottom: 8px;
    letter-spacing: 2px;
}

.lore-text {
    font-family: var(--font-retro);
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.4;
}

.avatar-card.mythic .lore-title {
    color: var(--mythic);
}

.avatar-card.legendary .lore-title {
    color: var(--legendary);
}

.avatar-card.epic .lore-title {
    color: var(--epic);
}

.avatar-card.rare .lore-title {
    color: var(--rare);
}

.rarity-label {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 8px;
    font-family: var(--font-pixel);
    font-size: 8px;
    text-align: center;
    letter-spacing: 2px;
    z-index: 5;
}

.avatar-card.mythic .rarity-label {
    background: linear-gradient(90deg, #e6cc80, #ffd700, #e6cc80);
    background-size: 200% 100%;
    animation: mythicShine 2s linear infinite;
    color: var(--bg-dark);
    font-weight: bold;
    text-shadow: 0 0 5px rgba(230, 204, 128, 0.5);
}

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

.avatar-card.legendary .rarity-label {
    background: linear-gradient(90deg, var(--legendary), #ffd700);
    color: var(--bg-dark);
}

.avatar-card.epic .rarity-label {
    background: linear-gradient(90deg, var(--epic), #c084fc);
    color: white;
}

.avatar-card.rare .rarity-label {
    background: linear-gradient(90deg, var(--rare), #60a5fa);
    color: white;
}

.avatar-display {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: 30px;
}

.avatar-sprite {
    position: relative;
    z-index: 2;
}

.avatar-sprite img {
    height: 140px;
    max-height: 140px;
    width: auto;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.avatar-sprite.scale-up img {
    height: 155px;
    max-height: 155px;
}

.avatar-card:hover .avatar-sprite img {
    transform: scale(1.15);
}

/* Avatar scale normalization - some sprites are bigger than others */
.avatar-sprite.scale-xs img {
    height: 70px;  /* For 435x803 like majin_boo */
}

.avatar-sprite.scale-sm img {
    height: 125px;  /* For 352x768 like arabe/sheikh */
}

.avatar-sprite.scale-md img {
    height: 115px;  /* For bitcoin_wizard */
}

.avatar-sprite.scale-lg img {
    height: 140px; /* Base size 144x270 */
}

.avatar-shadow {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 20px;
    background: radial-gradient(ellipse, rgba(0, 0, 0, 0.4) 0%, transparent 70%);
    z-index: 1;
}

.avatar-details {
    padding: 20px;
    text-align: center;
    background: var(--bg-panel);
    border-top: 2px solid var(--ui-border);
}

.avatar-details h3 {
    font-family: var(--font-pixel);
    font-size: 12px;
    margin-bottom: 8px;
}

.avatar-trait {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.avatar-actions {
    font-family: var(--font-pixel);
    font-size: 9px;
    color: var(--neon-pink);
}

/* Collection Counter */
.collection-counter {
    text-align: center;
    margin-top: 50px;
}

.counter-frame {
    display: inline-block;
    padding: 25px 50px;
    background: var(--bg-card);
    border: 3px solid var(--neon-cyan);
    box-shadow: var(--glow-cyan);
}

.counter-number {
    font-family: var(--font-pixel);
    font-size: 36px;
    color: var(--neon-cyan);
    text-shadow: 0 0 20px rgba(0, 245, 255, 0.5);
    display: block;
}

.counter-text {
    font-family: var(--font-pixel);
    font-size: 10px;
    color: var(--text-muted);
    letter-spacing: 3px;
    display: block;
    margin-top: 5px;
}

.collection-counter p {
    color: var(--text-secondary);
    margin-top: 20px;
    font-size: 16px;
}

/* ===== FURNITURE SECTION ===== */
.furniture-section {
    padding: 100px 20px;
    background: var(--bg-darker);
}

.inventory-panel {
    max-width: 1000px;
    margin: 0 auto;
    background: var(--bg-panel);
    border: 3px solid var(--ui-border);
}

.inventory-tabs {
    display: flex;
    background: var(--bg-card);
    border-bottom: 3px solid var(--ui-border);
    overflow-x: auto;
}

.inv-tab {
    padding: 15px 20px;
    font-family: var(--font-pixel);
    font-size: 9px;
    color: var(--text-secondary);
    background: none;
    border: none;
    border-right: 2px solid var(--ui-border);
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.inv-tab:hover {
    background: var(--bg-hover);
    color: var(--text-primary);
}

.inv-tab.active {
    background: var(--bg-panel);
    color: var(--neon-cyan);
}

.inv-tab span {
    font-size: 16px;
}

/* Inventory Grid */
.inventory-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 15px;
    padding: 25px;
}

.furni-slot {
    aspect-ratio: 1;
    background: var(--bg-card);
    border: 2px solid var(--ui-border);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
}

.furni-slot:hover {
    transform: scale(1.05);
}

.furni-slot.legendary {
    border-color: var(--legendary);
}

.furni-slot.legendary:hover {
    box-shadow: 0 0 25px var(--legendary-glow);
}

.furni-slot.epic {
    border-color: var(--epic);
}

.furni-slot.epic:hover {
    box-shadow: 0 0 25px var(--epic-glow);
}

.furni-slot.rare {
    border-color: var(--rare);
}

.furni-slot.rare:hover {
    box-shadow: 0 0 25px var(--rare-glow);
}

.furni-slot.empty {
    border-style: dashed;
    opacity: 0.4;
}

.empty-text {
    font-family: var(--font-pixel);
    font-size: 24px;
    color: var(--text-muted);
}

.slot-glow {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.furni-slot.legendary .slot-glow {
    background: radial-gradient(circle, var(--legendary-glow) 0%, transparent 70%);
}

.furni-slot.epic .slot-glow {
    background: radial-gradient(circle, var(--epic-glow) 0%, transparent 70%);
}

.furni-slot.rare .slot-glow {
    background: radial-gradient(circle, var(--rare-glow) 0%, transparent 70%);
}

.furni-slot:hover .slot-glow {
    opacity: 1;
}

.slot-rarity {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 14px;
    z-index: 2;
}

.furni-slot img {
    max-width: 80%;
    max-height: 70%;
    object-fit: contain;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.furni-slot:hover img {
    transform: scale(1.1);
}

.slot-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 8px;
    background: rgba(0, 0, 0, 0.8);
    text-align: center;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.furni-slot:hover .slot-info {
    transform: translateY(0);
}

/* Furniture Lore System */
.furni-lore {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.85) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 15;
}

.furni-slot:hover .furni-lore {
    opacity: 1;
}

.furni-lore p {
    font-family: var(--font-retro);
    font-size: 13px;
    color: var(--text-secondary);
    text-align: center;
    line-height: 1.4;
    margin: 0;
}

.furni-slot.legendary .furni-lore p {
    color: var(--legendary);
}

.furni-slot.epic .furni-lore p {
    color: var(--epic);
}

.furni-slot.rare .furni-lore p {
    color: var(--rare);
}

.furni-slot.empty .furni-lore p {
    color: var(--text-muted);
    font-style: italic;
}

.slot-name {
    font-family: var(--font-pixel);
    font-size: 7px;
    color: var(--text-primary);
    display: block;
}

.slot-tag {
    font-family: var(--font-pixel);
    font-size: 6px;
    display: inline-block;
    padding: 2px 6px;
    margin-top: 4px;
}

.slot-tag.legendary {
    background: var(--legendary);
    color: var(--bg-dark);
}

.slot-tag.epic {
    background: var(--epic);
    color: white;
}

.slot-tag.rare {
    background: var(--rare);
    color: white;
}

/* Inventory Footer */
.inventory-footer {
    padding: 25px;
    text-align: center;
    background: var(--bg-card);
    border-top: 2px solid var(--ui-border);
}

.furni-count {
    margin-bottom: 10px;
}

.count-number {
    font-family: var(--font-pixel);
    font-size: 28px;
    color: var(--neon-cyan);
    text-shadow: var(--glow-cyan);
}

.count-text {
    font-family: var(--font-pixel);
    font-size: 10px;
    color: var(--text-muted);
    margin-left: 10px;
    letter-spacing: 2px;
}

.inventory-footer p {
    color: var(--text-secondary);
    font-size: 14px;
}

/* ===== FEATURES SECTION ===== */
.features-section {
    padding: 100px 20px;
    background: var(--bg-dark);
}

.features-showcase {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.feature-box {
    background: var(--bg-panel);
    border: 2px solid var(--ui-border);
    padding: 35px 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-box:hover {
    border-color: var(--neon-cyan);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 245, 255, 0.15);
}

.feature-icon-box {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    border: 3px solid;
}

.feature-icon-box.multiplayer {
    border-color: var(--neon-cyan);
    color: var(--neon-cyan);
    box-shadow: var(--glow-cyan);
}

.feature-icon-box.build {
    border-color: var(--neon-green);
    color: var(--neon-green);
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
}

.feature-icon-box.trade {
    border-color: var(--neon-yellow);
    color: var(--neon-yellow);
    box-shadow: 0 0 20px rgba(255, 230, 0, 0.3);
}

.feature-icon-box.dance {
    border-color: var(--neon-pink);
    color: var(--neon-pink);
    box-shadow: var(--glow-pink);
}

.feature-box h3 {
    font-family: var(--font-pixel);
    font-size: 12px;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.feature-box p {
    color: var(--text-secondary);
    font-size: 15px;
    margin-bottom: 20px;
    line-height: 1.6;
}

.feature-list {
    list-style: none;
    text-align: left;
}

.feature-list li {
    font-family: var(--font-pixel);
    font-size: 9px;
    color: var(--text-muted);
    padding: 8px 0;
    border-bottom: 1px solid var(--ui-border);
}

.feature-list li:last-child {
    border-bottom: none;
}

/* ===== ROADMAP SECTION ===== */
.roadmap-section {
    padding: 100px 20px;
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
}

.roadmap-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.timeline-track {
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--ui-border);
}

.milestone {
    position: relative;
    padding-left: 80px;
    margin-bottom: 40px;
}

.milestone-marker {
    position: absolute;
    left: 15px;
    top: 0;
    width: 34px;
    height: 34px;
    background: var(--bg-card);
    border: 3px solid var(--ui-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-pixel);
    font-size: 12px;
    color: var(--text-muted);
    z-index: 2;
}

.milestone.completed .milestone-marker {
    background: var(--neon-green);
    border-color: var(--neon-green);
    color: var(--bg-dark);
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.5);
}

.milestone.active .milestone-marker {
    background: var(--neon-yellow);
    border-color: var(--neon-yellow);
    color: var(--bg-dark);
    box-shadow: 0 0 20px rgba(255, 230, 0, 0.5);
}

.milestone.active .milestone-marker.pulse {
    animation: markerPulse 2s infinite;
}

@keyframes markerPulse {
    0%, 100% { box-shadow: 0 0 20px rgba(255, 230, 0, 0.5); }
    50% { box-shadow: 0 0 35px rgba(255, 230, 0, 0.8); }
}

.milestone-content {
    background: var(--bg-panel);
    border: 2px solid var(--ui-border);
    padding: 25px;
}

.milestone.completed .milestone-content {
    border-color: var(--neon-green);
}

.milestone.active .milestone-content {
    border-color: var(--neon-yellow);
}

.milestone-phase {
    font-family: var(--font-pixel);
    font-size: 8px;
    color: var(--text-muted);
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.milestone-content h3 {
    font-family: var(--font-pixel);
    font-size: 16px;
    margin-bottom: 15px;
}

.milestone-content ul {
    list-style: none;
    margin-bottom: 15px;
}

.milestone-content li {
    color: var(--text-secondary);
    padding: 6px 0;
    padding-left: 20px;
    position: relative;
    font-size: 14px;
}

.milestone-content li::before {
    content: '>';
    position: absolute;
    left: 0;
    color: var(--neon-cyan);
    font-family: var(--font-pixel);
    font-size: 10px;
}

.milestone-status {
    display: inline-block;
    font-family: var(--font-pixel);
    font-size: 8px;
    padding: 6px 14px;
    background: var(--ui-border);
    color: var(--text-muted);
}

.milestone-status.completed {
    background: var(--neon-green);
    color: var(--bg-dark);
}

.milestone-status.active {
    background: var(--neon-yellow);
    color: var(--bg-dark);
    animation: blink 1.5s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 100px 20px;
    background: var(--bg-darker);
}

.cta-container {
    max-width: 1000px;
    margin: 0 auto;
}

.cta-frame {
    position: relative;
    background: var(--bg-panel);
    border: 4px solid var(--neon-cyan);
    padding: 60px 50px;
    box-shadow: var(--glow-cyan);
}

.cta-decoration {
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--neon-cyan);
}

.cta-decoration.top-left { top: -4px; left: -4px; }
.cta-decoration.top-right { top: -4px; right: -4px; }
.cta-decoration.bottom-left { bottom: -4px; left: -4px; }
.cta-decoration.bottom-right { bottom: -4px; right: -4px; }

.cta-content {
    text-align: center;
}

.cta-content h2 {
    font-family: var(--font-pixel);
    font-size: clamp(18px, 5vw, 28px);
    margin-bottom: 15px;
    text-shadow: 0 0 20px rgba(0, 245, 255, 0.5);
}

.cta-content p {
    color: var(--text-secondary);
    font-size: 18px;
    margin-bottom: 35px;
}

.cta-buttons {
    margin-bottom: 30px;
}

.cta-social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-family: var(--font-pixel);
    font-size: 10px;
    color: var(--text-muted);
}

.social-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border: 2px solid var(--ui-border);
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.social-icon:hover {
    border-color: var(--neon-cyan);
    color: var(--neon-cyan);
    box-shadow: var(--glow-cyan);
}

/* ===== FOOTER ===== */
.hotel-footer {
    background: var(--bg-panel);
    border-top: 3px solid var(--ui-border);
    padding: 60px 20px 30px;
}

.footer-content {
    max-width: 1000px;
    margin: 0 auto;
}

.footer-logo {
    text-align: center;
    margin-bottom: 40px;
}

.footer-logo img {
    height: 60px;
    opacity: 0.7;
    filter: grayscale(20%);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 80px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.footer-column h4 {
    font-family: var(--font-pixel);
    font-size: 10px;
    color: var(--neon-cyan);
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.footer-column a {
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    padding: 8px 0;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--neon-cyan);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--ui-border);
}

.copyright {
    font-family: var(--font-pixel);
    font-size: 8px;
    color: var(--text-muted);
    letter-spacing: 2px;
}

.made-with {
    font-family: var(--font-pixel);
    font-size: 8px;
    color: var(--text-muted);
    margin-top: 10px;
}

.pixel-heart {
    color: var(--neon-pink);
    text-shadow: 0 0 10px var(--neon-pink);
}

.made-by {
    font-family: var(--font-pixel);
    font-size: 10px;
    color: var(--neon-cyan);
    margin-top: 15px;
    text-shadow: 0 0 8px var(--neon-cyan);
}

/* ===== RESPONSIVE DESIGN ===== */

/* Large tablets */
@media (max-width: 1024px) {
    .hotel-nav {
        display: none;
    }

    .avatar-float {
        display: none;
    }
}

/* Tablets */
@media (max-width: 768px) {
    .hotel-bar-content {
        padding: 10px 15px;
    }

    .hotel-logo .logo-img {
        height: 40px;
    }

    .online-badge {
        display: none;
    }

    .pixel-btn {
        padding: 12px 20px;
        font-size: 9px;
    }

    .welcome-bubble {
        padding: 30px;
    }

    .hotel-title {
        font-size: clamp(24px, 10vw, 48px);
    }

    .hotel-tagline {
        font-size: 10px;
        letter-spacing: 2px;
    }

    .hero-features {
        gap: 8px;
    }

    .feature-pill {
        padding: 8px 12px;
        font-size: 8px;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .hero-token {
        width: 100%;
        padding: 0 10px;
    }

    .token-contract {
        padding: 8px 12px;
    }

    .ca-address {
        font-size: 10px;
        padding: 4px 8px;
    }

    .token-badge {
        padding: 10px 20px;
    }

    .token-text {
        font-size: 12px;
    }

    .hero-video-showcase {
        margin: 25px 0;
        padding: 0 10px;
    }

    .video-showcase-frame {
        max-width: 100%;
        border-width: 3px;
    }

    .video-title {
        font-size: 10px;
    }

    .video-badge {
        font-size: 7px;
        padding: 3px 8px;
    }

    .live-stats {
        flex-wrap: wrap;
        gap: 15px;
        padding: 15px 20px;
    }

    .stat-divider {
        display: none;
    }

    .stat-value {
        font-size: 20px;
    }

    .rooms-grid {
        grid-template-columns: 1fr;
        padding: 15px;
    }

    .avatar-carousel {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .avatar-display {
        height: 160px;
    }

    .avatar-sprite img {
        width: 80px;
    }

    .inventory-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        padding: 15px;
    }

    .features-showcase {
        grid-template-columns: 1fr;
    }

    .milestone {
        padding-left: 60px;
    }

    .timeline-track {
        left: 20px;
    }

    .milestone-marker {
        left: 5px;
        width: 30px;
        height: 30px;
        font-size: 10px;
    }

    .footer-links {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .cta-frame {
        padding: 40px 20px;
    }
}

/* Small phones */
@media (max-width: 480px) {
    .hotel-logo .logo-img {
        height: 35px;
    }

    .pixel-btn.play-btn .btn-text {
        display: none;
    }

    .section-header-game h2 {
        font-size: 14px;
    }

    .header-decoration {
        max-width: 50px;
    }

    .avatar-carousel {
        grid-template-columns: 1fr 1fr;
    }

    .avatar-details h3 {
        font-size: 10px;
    }

    .avatar-trait {
        font-size: 12px;
    }

    .rarity-tabs {
        gap: 5px;
    }

    .rarity-tab {
        padding: 10px 12px;
        font-size: 7px;
    }

    .inventory-tabs {
        flex-wrap: wrap;
    }

    .inv-tab {
        font-size: 8px;
        padding: 12px 15px;
    }

    .counter-frame {
        padding: 20px 30px;
    }

    .counter-number {
        font-size: 28px;
    }
}

/* Touch-friendly */
@media (hover: none) and (pointer: coarse) {
    .pixel-btn,
    .nav-tab,
    .room-card,
    .avatar-card,
    .furni-slot,
    .feature-box {
        -webkit-tap-highlight-color: transparent;
    }

    .room-overlay {
        opacity: 1;
        background: rgba(0, 0, 0, 0.3);
    }

    .slot-info {
        transform: translateY(0);
    }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .scanlines {
        display: none;
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--neon-cyan);
    border: 2px solid var(--bg-dark);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--neon-pink);
}

/* Selection */
::selection {
    background: var(--neon-cyan);
    color: var(--bg-dark);
}

/* ===== TOKEN ADDRESS ===== */
.token-address {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: var(--bg-card);
    border: 2px solid var(--neon-green);
    padding: 15px 25px;
    margin-bottom: 25px;
    flex-wrap: wrap;
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.2);
}

.token-label {
    font-family: var(--font-pixel);
    font-size: 10px;
    color: var(--neon-green);
    text-shadow: 0 0 10px var(--neon-green);
}

.token-link {
    text-decoration: none;
    transition: all 0.3s ease;
}

.token-link:hover {
    transform: scale(1.02);
}

.token-ca {
    font-family: var(--font-retro);
    font-size: 14px;
    color: var(--text-primary);
    background: var(--bg-panel);
    padding: 8px 12px;
    border: 1px solid var(--ui-border);
    word-break: break-all;
    transition: all 0.3s ease;
}

.token-link:hover .token-ca {
    border-color: var(--neon-green);
    color: var(--neon-green);
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.3);
}

.copy-btn {
    font-family: var(--font-pixel);
    font-size: 8px;
    padding: 8px 15px;
    background: var(--neon-green);
    border: none;
    color: var(--bg-dark);
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 0 #005533;
}

.copy-btn:hover {
    background: #00ff99;
    transform: translateY(-2px);
    box-shadow: 0 4px 0 #005533;
}

.copy-btn:active {
    transform: translateY(1px);
    box-shadow: 0 1px 0 #005533;
}

.social-icon.pumpfun {
    background: linear-gradient(135deg, #00ff88, #00cc66);
    border-color: var(--neon-green);
}

.social-icon.pumpfun:hover {
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.5);
}

/* Footer Token */
.footer-token {
    text-align: center;
    margin-bottom: 30px;
    padding: 20px;
    background: var(--bg-card);
    border: 2px solid var(--neon-green);
}

.footer-token .token-label {
    display: block;
    margin-bottom: 10px;
}

.footer-token .token-ca {
    font-size: 12px;
    display: block;
    margin-bottom: 10px;
}

.footer-token .token-links {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.footer-token .token-link-btn {
    font-family: var(--font-pixel);
    font-size: 8px;
    padding: 10px 20px;
    background: var(--bg-panel);
    border: 2px solid var(--neon-green);
    color: var(--neon-green);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-token .token-link-btn:hover {
    background: var(--neon-green);
    color: var(--bg-dark);
}

/* Responsive token */
@media (max-width: 768px) {
    .token-address {
        flex-direction: column;
        gap: 10px;
        padding: 15px;
    }

    .token-ca {
        font-size: 11px;
        padding: 6px 10px;
    }
}

/* ========================================
   ALPHA BANNER - Fixed Top Marquee
   ======================================== */
.alpha-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    background: linear-gradient(90deg, #ff6b00, #ff8c00, #ffa500, #ff8c00, #ff6b00);
    background-size: 200% 100%;
    animation: bannerGradient 3s ease infinite;
    padding: 10px 0;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(255, 140, 0, 0.5);
}

@keyframes bannerGradient {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.marquee-container {
    width: 100%;
    overflow: hidden;
}

.marquee-content {
    display: inline-block;
    white-space: nowrap;
    animation: marquee 20s linear infinite;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-33.33%); }
}

.marquee-content span {
    font-family: var(--font-pixel);
    font-size: 11px;
    color: #000;
    text-shadow: none;
}

.marquee-content a {
    color: #000;
    text-decoration: underline;
    font-weight: bold;
}

.marquee-content a:hover {
    color: #fff;
}

.marquee-content strong {
    color: #000;
    text-transform: uppercase;
}

/* Adjust body padding for fixed banner + nav bar */
body {
    padding-top: 110px; /* 40px banner + 70px nav bar */
}

/* Telegram icon style */
.social-icon.telegram {
    background: linear-gradient(135deg, #0088cc, #00aaff);
}

.social-icon.telegram:hover {
    background: linear-gradient(135deg, #00aaff, #0088cc);
    transform: translateY(-3px);
}

/* Mobile responsive */
@media (max-width: 768px) {
    .alpha-banner {
        padding: 10px 15px;
        flex-wrap: wrap;
    }
    
    .alpha-banner-text {
        font-size: 9px;
    }
    
    .alpha-banner-icon {
        font-size: 16px;
    }
}

/* Telegram button in nav */
.social-btn.telegram-btn {
    background: linear-gradient(135deg, #0088cc, #00aaff);
}

.social-btn.telegram-btn:hover {
    background: linear-gradient(135deg, #00aaff, #00ccff);
    transform: translateY(-2px);
}

/* Disabled button styles */
.pixel-btn.disabled,
.pixel-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    background: linear-gradient(180deg, #555 0%, #333 100%) !important;
    border-color: #666 !important;
    color: #aaa !important;
    animation: none !important;
}

.pixel-btn.disabled:hover,
.pixel-btn:disabled:hover {
    transform: none !important;
    box-shadow: none !important;
}

.play-btn.disabled {
    background: linear-gradient(180deg, #444 0%, #222 100%) !important;
}

/* ========================================
   HERO SOCIAL BUTTONS
   ======================================== */
.hero-socials {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 25px;
    flex-wrap: wrap;
}

.hero-social-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-family: var(--font-pixel);
    font-size: 10px;
    color: #fff;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.hero-social-btn.telegram {
    background: linear-gradient(135deg, #0088cc, #00aaff);
    border-color: #00ccff;
}

.hero-social-btn.telegram:hover {
    background: linear-gradient(135deg, #00aaff, #00ccff);
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 170, 255, 0.4);
}

.hero-social-btn.twitter {
    background: linear-gradient(135deg, #1a1a2e, #2a2a3e);
    border-color: #444;
}

.hero-social-btn.twitter:hover {
    background: linear-gradient(135deg, #2a2a3e, #3a3a4e);
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(255, 255, 255, 0.1);
}

.hero-social-btn.pumpfun {
    background: linear-gradient(135deg, #00c853, #00e676);
    border-color: #69f0ae;
    color: #000;
}

.hero-social-btn.pumpfun:hover {
    background: linear-gradient(135deg, #00e676, #76ff03);
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 230, 118, 0.4);
}

.hero-social-btn svg {
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .hero-socials {
        gap: 10px;
    }
    
    .hero-social-btn {
        padding: 10px 15px;
        font-size: 9px;
    }
    
    .hero-social-btn svg {
        width: 18px;
        height: 18px;
    }
}

/* ========================================
   NOSTALGIA MEMORIES SECTION
   ======================================== */
.nostalgia-memories {
    margin: 60px 0;
    text-align: center;
}

.memories-title {
    font-family: var(--font-pixel);
    font-size: 18px;
    color: var(--neon-yellow);
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.memories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.memory-card {
    background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-panel) 100%);
    border: 2px solid var(--ui-border);
    border-radius: 12px;
    padding: 25px 20px;
    transition: all 0.3s ease;
}

.memory-card:hover {
    border-color: var(--neon-cyan);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 245, 255, 0.2);
}

.memory-icon {
    font-size: 40px;
    display: block;
    margin-bottom: 15px;
}

.memory-card p {
    font-family: var(--font-retro);
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0;
}

/* ========================================
   WHAT'S DIFFERENT SECTION
   ======================================== */
.whats-different {
    margin: 60px 0;
    padding: 40px;
    background: linear-gradient(135deg, rgba(0, 245, 255, 0.05) 0%, rgba(153, 69, 255, 0.05) 100%);
    border-radius: 16px;
    border: 1px solid var(--ui-border);
}

.different-title {
    font-family: var(--font-pixel);
    font-size: 18px;
    color: var(--neon-green);
    margin-bottom: 30px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.different-items {
    display: flex;
    flex-direction: column;
    gap: 25px;
    max-width: 700px;
    margin: 0 auto;
}

.different-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    text-align: left;
}

.different-icon {
    font-size: 28px;
    flex-shrink: 0;
}

.different-item strong {
    font-family: var(--font-pixel);
    font-size: 14px;
    color: var(--text-primary);
    display: block;
    margin-bottom: 5px;
}

.different-item p {
    font-family: var(--font-retro);
    font-size: 18px;
    color: var(--text-secondary);
    margin: 0;
}

@media (max-width: 768px) {
    .memories-grid {
        grid-template-columns: 1fr;
    }
    
    .memory-card {
        padding: 20px 15px;
    }
    
    .whats-different {
        padding: 25px 20px;
    }
    
    .different-item {
        gap: 15px;
    }
}

/* ========================================
   IN DEV BADGE
   ======================================== */
.online-badge.dev {
    background: linear-gradient(135deg, #ff6b00, #ff8c00);
}

.online-badge.dev .pulse-dot {
    background: #fff;
}

/* ========================================
   ABOUT DEV SECTION
   ======================================== */
.about-dev {
    margin-top: 25px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.1) 0%, rgba(255, 107, 0, 0.05) 100%);
    border-left: 3px solid var(--neon-orange);
    border-radius: 0 8px 8px 0;
}

.about-dev h3 {
    font-family: var(--font-pixel);
    font-size: 12px;
    color: var(--neon-orange);
    margin-bottom: 10px;
}

.about-dev p {
    font-family: var(--font-retro);
    font-size: 18px;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.6;
}

.about-dev a {
    color: var(--neon-orange);
    text-decoration: underline;
}

.about-dev a:hover {
    color: var(--neon-yellow);
}
