/* ── Font ─────────────────────────────────────── */
@font-face {
    font-family: 'Inter';
    src: url('assets/fonts/inter-var.woff2') format('woff2');
    font-weight: 100 900;
    font-display: swap;
    font-style: normal;
}

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

:root {
    --radius: 12px;
    --radius-sm: 8px;
    --header-h: 72px;
    --max-w: 1120px;
    --accent: #6366f1;
    --accent-hover: #818cf8;
    --accent-subtle: rgba(99, 102, 241, 0.1);
}

[data-theme="dark"] {
    --bg: #09090b;
    --bg-alt: #0f0f13;
    --surface: #16161c;
    --border: rgba(255, 255, 255, 0.06);
    --border-hover: rgba(255, 255, 255, 0.12);
    --text: #ececef;
    --text-secondary: #a1a1aa;
    --text-muted: #71717a;
    --header-bg: rgba(9, 9, 11, 0.6);
    --header-bg-scrolled: rgba(9, 9, 11, 0.85);
    --logo-invert: 0;
    --card-shadow: rgba(0, 0, 0, 0.3);
}

[data-theme="light"] {
    --bg: #ffffff;
    --bg-alt: #f4f4f5;
    --surface: #f0f0f3;
    --border: rgba(0, 0, 0, 0.1);
    --border-hover: rgba(0, 0, 0, 0.18);
    --text: #18181b;
    --text-secondary: #52525b;
    --text-muted: #a1a1aa;
    --accent-subtle: rgba(99, 102, 241, 0.08);
    --header-bg: rgba(255, 255, 255, 0.6);
    --header-bg-scrolled: rgba(255, 255, 255, 0.85);
    --logo-invert: 1;
    --card-shadow: rgba(0, 0, 0, 0.08);
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-h);
}

*,
*::before,
*::after {
    transition: background 0.3s, background-color 0.3s, color 0.3s, border-color 0.3s, box-shadow 0.3s, fill 0.3s;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    opacity: 0;
    animation: pageIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.1s forwards;
}

@keyframes pageIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

a {
    color: inherit;
    text-decoration: none;
}

::selection {
    background: var(--accent);
    color: #fff;
}

/* ── Grain Overlay ───────────────────────────── */
.grain {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.035;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-size: 256px;
}

/* ── Sticky Header ───────────────────────────── */
#header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-h);
    z-index: 1000;
    background: var(--header-bg);
    backdrop-filter: blur(20px) saturate(1.4);
    -webkit-backdrop-filter: blur(20px) saturate(1.4);
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s, background 0.3s;
}

#header.scrolled {
    border-bottom-color: var(--border);
    background: var(--header-bg-scrolled);
}

.header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 32px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 38px;
    width: auto;
}

.logo-title {
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-left: 12px;
}

.logo-img {
    filter: invert(var(--logo-invert));
    transition: filter 0.3s;
}

/* ── Theme Toggle ────────────────────────────── */
.theme-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: none;
    border: 1px solid var(--border);
    border-radius: 50%;
    cursor: pointer;
    color: var(--text-secondary);
    transition: color 0.2s, border-color 0.2s, background 0.2s;
    margin-left: 16px;
    flex-shrink: 0;
}

.theme-toggle:hover {
    color: var(--text);
    border-color: var(--border-hover);
    background: rgba(128, 128, 128, 0.06);
}

.theme-toggle .icon-sun,
.theme-toggle .icon-moon {
    display: none;
}

[data-theme="dark"] .theme-toggle .icon-sun {
    display: block;
}

[data-theme="light"] .theme-toggle .icon-moon {
    display: block;
}

.logo-img-sm {
    height: 28px;
}

#nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

#nav a {
    padding: 6px 14px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
    border-radius: 6px;
    transition: color 0.2s, background 0.2s;
}

#nav a:hover,
#nav a.active {
    color: var(--text);
    background: var(--border);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ── Language Toggle ──────────────────────────── */
.lang-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: none;
    border: 1px solid var(--border);
    border-radius: 50%;
    cursor: pointer;
    color: var(--text-secondary);
    font-family: inherit;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.lang-toggle:hover {
    color: var(--text);
    border-color: var(--border-hover);
    background: rgba(128, 128, 128, 0.06);
}

/* ── Mobile Menu Toggle ──────────────────────── */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}

.menu-toggle.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.menu-toggle.open span:nth-child(2) {
    opacity: 0;
}
.menu-toggle.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ── Parallax Sections ───────────────────────── */
.parallax-section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero {
    height: 100vh;
    min-height: 700px;
}

.parallax-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(99, 102, 241, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 30%, rgba(168, 85, 247, 0.08) 0%, transparent 40%),
        radial-gradient(ellipse at 50% 80%, rgba(59, 130, 246, 0.06) 0%, transparent 50%);
    will-change: transform;
    pointer-events: none;
}


.hero-content {
    position: relative;
    text-align: center;
    padding: 0 32px;
    max-width: 800px;
}

.hero-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--accent);
    margin-bottom: 24px;
    padding: 6px 16px;
    background: var(--accent-subtle);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 100px;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 5.5vw, 4.5rem);
    font-weight: 800;
    letter-spacing: -0.035em;
    line-height: 1.1;
    margin-bottom: 20px;
}

.accent {
    background: linear-gradient(135deg, var(--accent) 0%, #a78bfa 50%, #c084fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-sub {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 520px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-indicator span {
    display: block;
    width: 24px;
    height: 40px;
    border: 2px solid var(--text-muted);
    border-radius: 12px;
    position: relative;
}

.scroll-indicator span::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    width: 3px;
    height: 8px;
    background: var(--text-muted);
    border-radius: 2px;
    transform: translateX(-50%);
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { opacity: 1; transform: translateX(-50%) translateY(0); }
    50% { opacity: 0.3; transform: translateX(-50%) translateY(10px); }
}

/* ── Parallax Divider ────────────────────────── */
.divider {
    height: 40vh;
    min-height: 280px;
}

.parallax-bg-2 {
    background:
        radial-gradient(ellipse at 50% 50%, rgba(139, 92, 246, 0.1) 0%, transparent 60%);
}

.divider-content {
    position: relative;
    text-align: center;
    padding: 0 32px;
}

.divider-content blockquote {
    font-size: clamp(1.2rem, 2.5vw, 1.75rem);
    font-style: italic;
    color: var(--text-secondary);
    max-width: 600px;
    line-height: 1.6;
}

/* ── Buttons ─────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-family: inherit;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: var(--radius);
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--accent);
    color: #fff;
    box-shadow: 0 0 0 0 rgba(99, 102, 241, 0);
}

.btn-primary:hover {
    background: var(--accent-hover);
    box-shadow: 0 4px 24px rgba(99, 102, 241, 0.3);
    transform: translateY(-1px);
}

.btn-ghost {
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid var(--border-hover);
}

.btn-ghost:hover {
    color: var(--text);
    border-color: var(--text-muted);
    background: rgba(255, 255, 255, 0.03);
}

/* ── Availability Badge ──────────────────────── */
.availability-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: var(--surface);
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.availability-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--text-muted);
}

.availability-badge[data-status="open"] .availability-dot {
    background: #22c55e;
    box-shadow: 0 0 6px rgba(34, 197, 94, 0.5);
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

/* ── Sections ────────────────────────────────── */
.section {
    padding: 120px 32px;
}

.section-alt {
    background: var(--bg-alt);
}

.container {
    max-width: var(--max-w);
    margin: 0 auto;
}

.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent);
    margin-bottom: 16px;
}

.container h2 {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 800;
    letter-spacing: -0.025em;
    margin-bottom: 24px;
    line-height: 1.2;
}

.container > p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    max-width: 540px;
    line-height: 1.7;
    margin-bottom: 32px;
}

/* ── About Grid ──────────────────────────────── */
.about-grid {
    display: grid;
    grid-template-columns: auto 1fr 1fr;
    gap: 64px;
    align-items: start;
    margin-top: 48px;
    text-align: left;
}

.about-avatar {
    display: flex;
    align-items: flex-start;
}

.about-avatar img {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--border);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.about-text p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

.stat {
    padding: 28px 32px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    display: flex;
    align-items: baseline;
    gap: 16px;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, var(--accent), #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* ── Interests ────────────────────────────────── */
.interests-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-top: 64px;
    margin-bottom: 24px;
    text-align: left;
}

.interests-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    text-align: left;
}

.interest {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    white-space: nowrap;
    transition: border-color 0.25s, color 0.25s;
}

.interest:hover {
    border-color: var(--border-hover);
    color: var(--text);
}

.interest-icon {
    font-size: 1.3rem;
}

/* ── Skills ───────────────────────────────────── */
.skills-category {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-top: 40px;
    margin-bottom: 16px;
    text-align: left;
}

.skills-category:first-of-type {
    margin-top: 48px;
}

.skills-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.skill-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: all 0.25s ease;
}

.skill-tag i {
    font-size: 1.1rem;
    opacity: 0.7;
    transition: opacity 0.25s;
}

.skill-tag:hover {
    color: var(--text);
    border-color: var(--accent);
    background: var(--accent-subtle);
}

.skill-tag:hover i {
    opacity: 1;
}

/* ── Card Grid ───────────────────────────────── */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 36px 32px;
    text-align: left;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-4px);
    border-color: rgba(99, 102, 241, 0.25);
    box-shadow: 0 16px 48px var(--card-shadow);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.card-icon {
    color: var(--accent);
    display: flex;
}

.card-links {
    display: flex;
    gap: 12px;
}

.card-links a {
    color: var(--text-muted);
    transition: color 0.2s;
}

.card-links a:hover {
    color: var(--text);
}

.card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}

.card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.65;
    margin-bottom: 20px;
}

.card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.card-tags span {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-muted);
    padding: 4px 12px;
    background: var(--border);
    border-radius: 100px;
}

/* ── Footer ──────────────────────────────────── */
#footer {
    padding: 64px 32px 48px;
    border-top: 1px solid var(--border);
}

.footer-inner {
    max-width: var(--max-w);
    margin: 0 auto;
}

.footer-top {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-bottom: 48px;
}

.footer-logo {
    display: inline-flex;
}

.footer-nav {
    display: flex;
    gap: 24px;
}

.footer-nav a {
    font-size: 0.875rem;
    color: var(--text-muted);
    transition: color 0.2s;
}

.footer-nav a:hover {
    color: var(--text);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    border-top: 1px solid var(--border);
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: color 0.2s;
}

.social-links a:hover {
    color: var(--text);
}

.copyright {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ── Fade-in animations ──────────────────────── */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── Staggered children ──────────────────────── */
.stagger > * {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.stagger.visible > *:nth-child(1) { transition-delay: 0s; }
.stagger.visible > *:nth-child(2) { transition-delay: 0.08s; }
.stagger.visible > *:nth-child(3) { transition-delay: 0.16s; }
.stagger.visible > *:nth-child(4) { transition-delay: 0.24s; }
.stagger.visible > *:nth-child(5) { transition-delay: 0.32s; }
.stagger.visible > *:nth-child(6) { transition-delay: 0.4s; }
.stagger.visible > *:nth-child(7) { transition-delay: 0.48s; }
.stagger.visible > *:nth-child(8) { transition-delay: 0.56s; }
.stagger.visible > *:nth-child(9) { transition-delay: 0.64s; }
.stagger.visible > *:nth-child(10) { transition-delay: 0.72s; }

.stagger.visible > * {
    opacity: 1;
    transform: translateY(0);
}

/* ── Scroll Navigation Buttons ───────────────── */
.scroll-nav {
    position: fixed;
    bottom: 32px;
    right: 32px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 999;
}

.scroll-btn {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 50%;
    color: var(--text-secondary);
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    transition: opacity 0.3s, transform 0.3s, background 0.2s, color 0.2s;
}

.scroll-btn.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.scroll-btn:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}

/* ── Light mode overrides ────────────────────── */
[data-theme="light"] .parallax-bg {
    background:
        radial-gradient(ellipse at 20% 50%, rgba(99, 102, 241, 0.18) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 30%, rgba(168, 85, 247, 0.14) 0%, transparent 40%),
        radial-gradient(ellipse at 50% 80%, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
}

[data-theme="light"] .grain {
    opacity: 0.02;
}

[data-theme="light"] .accent {
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 50%, #9333ea 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

[data-theme="light"] .btn-primary {
    box-shadow: 0 2px 12px rgba(99, 102, 241, 0.2);
}

[data-theme="light"] .scroll-indicator span {
    border-color: var(--text-muted);
}

[data-theme="light"] .scroll-indicator span::after {
    background: var(--text-muted);
}

/* ── Responsive ──────────────────────────────── */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    #nav {
        position: fixed;
        top: 0;
        right: 0;
        width: 280px;
        height: 100vh;
        background: var(--bg-alt);
        border-left: 1px solid var(--border);
        flex-direction: column;
        align-items: flex-start;
        padding: 100px 32px 32px;
        gap: 4px;
        transform: translateX(100%);
        transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    }

    #nav.open {
        transform: translateX(0);
    }

    #nav a {
        width: 100%;
        padding: 12px 16px;
        font-size: 1rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        justify-items: center;
    }

    .about-avatar img {
        width: 120px;
        height: 120px;
    }

    .section {
        padding: 80px 20px;
    }

    .header-inner {
        padding: 0 20px;
    }

    .hero-content {
        padding: 0 20px;
    }

    .footer-top {
        flex-direction: column;
        gap: 24px;
    }

    .footer-nav {
        flex-wrap: wrap;
        gap: 16px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .card-grid {
        grid-template-columns: 1fr;
    }

    .scroll-indicator {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .hero-actions .btn {
        width: 100%;
        max-width: 280px;
    }
}

/* ── Konami Easter Eggs ──────────────────────── */

/* Retro CRT Mode */
.ee-retro {
    filter: saturate(0) sepia(0.4) brightness(0.9) contrast(1.3);
    font-family: 'Courier New', monospace !important;
    transition: filter 0.5s;
}

.ee-retro-overlay {
    position: fixed;
    inset: 0;
    z-index: 99999;
    pointer-events: none;
    background: repeating-linear-gradient(
        0deg,
        rgba(0, 0, 0, 0.15) 0px,
        rgba(0, 0, 0, 0.15) 1px,
        transparent 1px,
        transparent 3px
    );
    animation: crtFlicker 0.1s infinite alternate;
}

@keyframes crtFlicker {
    from { opacity: 0.95; }
    to { opacity: 1; }
}

/* Matrix Rain */
.ee-matrix-canvas {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99999;
    pointer-events: none;
}

/* Secret Message Toast */
.ee-toast {
    position: fixed;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: var(--accent);
    color: #fff;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    z-index: 99999;
    opacity: 0;
    transition: opacity 0.4s, transform 0.4s;
    white-space: nowrap;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.ee-toast.visible {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* Mini Pong */
.ee-pong-overlay {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    cursor: none;
}

.ee-pong-canvas {
    border: 2px solid #333;
    border-radius: 4px;
    cursor: none;
}

.ee-pong-hint {
    color: #666;
    font-size: 0.85rem;
    font-family: monospace;
}
