/* ===================================================
   NARUTO BOT — PATCH NOTES v3.0.0
   Premium Dark Theme · Glassmorphism · Ultra Polish
   =================================================== */

/* ---------- Variables ---------- */
:root {
    --bg-deep: #050608;
    --bg-surface: #0a0d14;
    --bg-card: rgba(10, 13, 20, 0.8);
    --bg-glass: rgba(20, 26, 38, 0.6);
    --bg-glass-hover: rgba(30, 40, 55, 0.7);

    --accent-orange: #f97316;
    --accent-amber: #f59e0b;
    --accent-red: #ef4444;
    --accent-blue: #3b82f6;
    --accent-purple: #a855f7;
    --accent-green: #22c55e;
    --accent-gold: #fbbf24;
    --accent-cyan: #06b6d4;
    --accent-pink: #ec4899;

    --text-primary: #edf0f7;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;

    --border-subtle: rgba(255, 255, 255, 0.04);
    --border-glass: rgba(255, 255, 255, 0.07);

    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 22px;
    --radius-xl: 30px;

    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Orbitron', 'Inter', sans-serif;

    --shadow-card: 0 4px 40px rgba(0, 0, 0, 0.45);
    --shadow-glow-orange: 0 0 60px rgba(249, 115, 22, 0.08);

    --gradient-fire: linear-gradient(135deg, #f97316, #ef4444, #f59e0b);
    --gradient-subtle: linear-gradient(135deg, rgba(249, 115, 22, 0.06), rgba(168, 85, 247, 0.04));
}

/* ---------- Reset ---------- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    scrollbar-width: thin;
    scrollbar-color: var(--accent-orange) var(--bg-surface);
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-deep); }
::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--accent-orange), var(--accent-red));
    border-radius: 6px;
}

body {
    font-family: var(--font-body);
    background: var(--bg-deep);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
}

/* ---------- Selection ---------- */
::selection {
    background: rgba(249, 115, 22, 0.3);
    color: #fff;
}

/* ---------- Particles Background ---------- */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    border-radius: 50%;
    opacity: 0;
    animation: float-up linear infinite;
}

@keyframes float-up {
    0% { opacity: 0; transform: translateY(100vh) scale(0) rotate(0deg); }
    10% { opacity: 0.7; }
    50% { opacity: 0.3; }
    100% { opacity: 0; transform: translateY(-10vh) scale(1.5) rotate(180deg); }
}

/* ---------- Scroll Top Button ---------- */
.scroll-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 50px;
    height: 50px;
    background: var(--gradient-fire);
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 1.3rem;
    font-weight: 900;
    cursor: pointer;
    z-index: 1000;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: 0 4px 25px rgba(249, 115, 22, 0.4), inset 0 0 0 1px rgba(255,255,255,0.1);
}
.scroll-top.visible {
    opacity: 1;
    transform: translateY(0);
}
.scroll-top:hover {
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 8px 40px rgba(249, 115, 22, 0.55);
}

/* ======================================================
   HERO SECTION
   ====================================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: var(--bg-deep);
}

/* Ambient light orbs */
.hero::before,
.hero::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    z-index: 0;
    animation: orbit 20s ease-in-out infinite;
}

.hero::before {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.12), transparent 70%);
    top: -10%;
    left: -10%;
}

.hero::after {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1), transparent 70%);
    bottom: -10%;
    right: -15%;
    animation-delay: -10s;
    animation-direction: reverse;
}

@keyframes orbit {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(60px, 40px) scale(1.1); }
    50% { transform: translate(-30px, 80px) scale(0.95); }
    75% { transform: translate(40px, -20px) scale(1.05); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(255, 255, 255, 0.008) 2px,
            rgba(255, 255, 255, 0.008) 4px
        );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 2rem;
}

.version-badge {
    display: inline-block;
    padding: 8px 28px;
    border: 1.5px solid rgba(249, 115, 22, 0.5);
    border-radius: 50px;
    font-family: var(--font-display);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 4px;
    color: var(--accent-orange);
    margin-bottom: 1.8rem;
    background: rgba(249, 115, 22, 0.06);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

/* Shine sweep on badge */
.version-badge::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(249, 115, 22, 0.15), transparent);
    animation: shine-sweep 4s ease-in-out infinite;
}

@keyframes shine-sweep {
    0%, 100% { left: -100%; }
    50% { left: 100%; }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 7vw, 5.5rem);
    font-weight: 900;
    line-height: 1;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(0.5rem, 2vw, 1.2rem);
}

.glow-text {
    background: linear-gradient(135deg, #ff8a3d, #fbbf24, #ff6b1a, #fbbf24);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 5s ease-in-out infinite;
    filter: drop-shadow(0 0 40px rgba(249, 115, 22, 0.35));
}

/* Blue gradient for BORUTO */
.glow-text-blue {
    background: linear-gradient(135deg, #38bdf8, #3b82f6, #60a5fa, #3b82f6);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 5s ease-in-out infinite;
    animation-delay: -2.5s;
    filter: drop-shadow(0 0 40px rgba(59, 130, 246, 0.35));
    font-family: var(--font-display);
    font-weight: 900;
    font-size: inherit;
}

/* Animated X separator */
.hero-x {
    font-family: var(--font-display);
    font-size: clamp(1rem, 3.5vw, 2.8rem);
    font-weight: 300;
    color: rgba(255, 255, 255, 0.2);
    animation: x-pulse 3s ease-in-out infinite;
    user-select: none;
    line-height: 1;
}

@keyframes x-pulse {
    0%, 100% { color: rgba(255, 255, 255, 0.15); text-shadow: none; }
    50% { color: rgba(255, 255, 255, 0.5); text-shadow: 0 0 20px rgba(255, 255, 255, 0.15); }
}

/* SHINOBI BOT subtitle */
.hero-botname {
    font-family: var(--font-display);
    font-size: clamp(0.75rem, 2vw, 1.2rem);
    letter-spacing: 12px;
    color: rgba(255, 255, 255, 0.18);
    font-weight: 400;
    margin-top: 0.8rem;
    text-transform: uppercase;
}

.glow-text-sm {
    background: linear-gradient(135deg, #ff8a3d, #fbbf24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 1.4rem;
    filter: drop-shadow(0 0 12px rgba(249, 115, 22, 0.2));
}

/* Footer blue variant */
.footer-blue {
    background: linear-gradient(135deg, #38bdf8, #3b82f6) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    filter: drop-shadow(0 0 12px rgba(59, 130, 246, 0.2));
}

.footer-x {
    font-family: var(--font-display);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.15);
    font-weight: 300;
}

@keyframes shimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-sub {
    display: block;
    font-size: clamp(0.9rem, 2.5vw, 1.6rem);
    color: var(--text-muted);
    letter-spacing: 10px;
    margin-top: 0.5rem;
    font-weight: 300;
}

.hero-desc {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 620px;
    margin: 2rem auto 2.5rem;
    line-height: 1.85;
    font-weight: 300;
}

.hero-stats {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.stat-pill {
    padding: 10px 22px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    backdrop-filter: blur(12px);
    transition: all 0.3s;
}

.stat-pill:hover {
    background: rgba(249, 115, 22, 0.06);
    border-color: rgba(249, 115, 22, 0.2);
    transform: translateY(-2px);
}

.stat-num {
    color: var(--accent-orange);
    font-weight: 800;
    font-family: var(--font-display);
    margin-right: 5px;
    font-size: 0.95rem;
}

.cta-btn {
    display: inline-block;
    padding: 16px 44px;
    background: var(--gradient-fire);
    background-size: 200% 200%;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.5px;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: 0 4px 30px rgba(249, 115, 22, 0.3), inset 0 1px 0 rgba(255,255,255,0.15);
    position: relative;
    overflow: hidden;
}

.cta-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s;
}

.cta-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 50px rgba(249, 115, 22, 0.45);
    background-position: 100% 0;
}

.cta-btn:hover::before {
    left: 120%;
}

/* ---------- Hero Animations ---------- */
.animate-in {
    opacity: 0;
    transform: translateY(35px);
    animation: fadeInUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }

@keyframes fadeInUp {
    to { opacity: 1; transform: translateY(0); }
}

/* ======================================================
   QUICK NAV
   ====================================================== */
.quick-nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(5, 6, 8, 0.8);
    backdrop-filter: blur(24px) saturate(1.5);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    padding: 0;
}

.nav-inner {
    display: flex;
    gap: 0;
    overflow-x: auto;
    max-width: 1200px;
    margin: 0 auto;
    scrollbar-width: none;
}

.nav-inner::-webkit-scrollbar { display: none; }

.nav-link {
    flex-shrink: 0;
    padding: 16px 22px;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 500;
    transition: all 0.3s;
    border-bottom: 2px solid transparent;
    white-space: nowrap;
    position: relative;
    letter-spacing: 0.3px;
}

.nav-link::before {
    content: attr(data-emoji) " ";
    font-size: 0.85rem;
}

.nav-link:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.02);
}

.nav-link.active {
    color: var(--accent-orange);
    border-bottom-color: var(--accent-orange);
    background: rgba(249, 115, 22, 0.04);
}

/* Active nav glow */
.nav-link.active::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 30%;
    width: 40%;
    height: 6px;
    background: var(--accent-orange);
    filter: blur(6px);
    border-radius: 50%;
}

/* ======================================================
   MAIN CONTENT
   ====================================================== */
.content {
    position: relative;
    z-index: 1;
    max-width: 1100px;
    margin: 0 auto;
    padding: 3rem 1.5rem 5rem;
}

/* ======================================================
   MODULE CARDS
   ====================================================== */
.module-section {
    margin-bottom: 3.5rem;
}

.module-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    backdrop-filter: blur(12px);
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: var(--shadow-card);
    position: relative;
    border: 1px solid var(--border-glass);
}

/* Animated gradient border on hover */
.module-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    padding: 1px;
    background: linear-gradient(135deg, transparent, transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none;
    z-index: 1;
}

.module-card:hover::before {
    opacity: 1;
}

.module-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 60px rgba(0, 0, 0, 0.5);
}

/* Per-module gradient borders */
.module-explore::before { background: linear-gradient(135deg, rgba(34, 197, 94, 0.4), transparent 60%); }
.module-armor::before { background: linear-gradient(135deg, rgba(168, 85, 247, 0.4), transparent 60%); }
.module-beasts::before { background: linear-gradient(135deg, rgba(239, 68, 68, 0.4), transparent 60%); }
.module-spin::before { background: linear-gradient(135deg, rgba(251, 191, 36, 0.4), transparent 60%); }
.module-clan::before { background: linear-gradient(135deg, rgba(6, 182, 212, 0.4), transparent 60%); }
.module-challenge::before { background: linear-gradient(135deg, rgba(236, 72, 153, 0.4), transparent 60%); }
.module-ranked::before { background: linear-gradient(135deg, rgba(249, 115, 22, 0.4), transparent 60%); }
.module-economy::before { background: linear-gradient(135deg, rgba(251, 191, 36, 0.4), transparent 60%); }
.module-fun::before { background: linear-gradient(135deg, rgba(168, 85, 247, 0.4), transparent 60%); }

.module-header {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 30px 36px;
    border-bottom: 1px solid var(--border-subtle);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent);
    position: relative;
}

.module-icon {
    font-size: 2.2rem;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-glass);
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

/* Icon subtle animation */
.module-icon::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.06), transparent);
    border-radius: inherit;
}

.module-title {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.module-tagline {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-top: 3px;
    font-weight: 300;
    letter-spacing: 0.3px;
}

/* ---------- Tags ---------- */
.module-tag {
    margin-left: auto;
    padding: 5px 16px;
    border-radius: 50px;
    font-size: 0.6rem;
    font-weight: 800;
    letter-spacing: 2.5px;
    flex-shrink: 0;
    text-transform: uppercase;
    position: relative;
}

.tag-new {
    background: rgba(34, 197, 94, 0.12);
    color: var(--accent-green);
    border: 1px solid rgba(34, 197, 94, 0.25);
    box-shadow: 0 0 20px rgba(34, 197, 94, 0.06);
}

.tag-updated {
    background: rgba(59, 130, 246, 0.12);
    color: var(--accent-blue);
    border: 1px solid rgba(59, 130, 246, 0.25);
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.06);
}

.tag-upcoming {
    background: rgba(251, 191, 36, 0.1);
    color: var(--accent-gold);
    border: 1px solid rgba(251, 191, 36, 0.25);
    box-shadow: 0 0 20px rgba(251, 191, 36, 0.06);
    animation: pulse-glow 2.5s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 15px rgba(251, 191, 36, 0.05); }
    50% { box-shadow: 0 0 25px rgba(251, 191, 36, 0.15); }
}

.module-body {
    padding: 36px;
}

.module-intro {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.85;
    margin-bottom: 2.5rem;
    max-width: 85%;
    font-weight: 300;
}

/* ======================================================
   FEATURE GRID
   ====================================================== */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 16px;
    margin-bottom: 2.5rem;
}

.feature-grid.cols-3 {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}

.feature-card {
    padding: 26px;
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    position: relative;
    overflow: hidden;
}

/* Shine sweep on feature cards */
.feature-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.03), transparent);
    transition: left 0.7s;
    pointer-events: none;
}

.feature-card:hover {
    background: var(--bg-glass-hover);
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.35);
}

.feature-card:hover::before {
    left: 120%;
}

.feature-card.compact {
    padding: 20px;
}

.feature-icon {
    font-size: 1.8rem;
    margin-bottom: 14px;
    display: inline-block;
    /* Subtle bounce on hover comes from parent */
    transition: transform 0.3s;
}

.feature-card:hover .feature-icon {
    transform: scale(1.15) translateY(-2px);
}

.feature-card h3 {
    font-size: 0.92rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-primary);
    letter-spacing: 0.2px;
}

.feature-card p {
    font-size: 0.83rem;
    color: var(--text-secondary);
    line-height: 1.7;
    font-weight: 300;
}

.game-card {
    text-align: center;
}
.game-card .feature-icon {
    font-size: 2.8rem;
    margin-bottom: 16px;
}

/* ======================================================
   COMMAND BLOCKS
   ====================================================== */
.commands-block {
    margin-top: 2.5rem;
}

.commands-block.compact {
    margin-top: 1.2rem;
}

.subsection-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-subtle);
    letter-spacing: 0.5px;
}

.command-list {
    display: grid;
    gap: 6px;
}

.command {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 12px 18px;
    background: rgba(255, 255, 255, 0.015);
    border-radius: var(--radius-sm);
    border: 1px solid transparent;
    transition: all 0.25s;
}

.command:hover {
    background: rgba(249, 115, 22, 0.04);
    border-color: rgba(249, 115, 22, 0.08);
    padding-left: 22px;
}

.command code {
    font-family: 'JetBrains Mono', 'Fira Code', 'Cascadia Code', monospace;
    font-size: 0.8rem;
    padding: 5px 12px;
    background: rgba(249, 115, 22, 0.08);
    color: var(--accent-orange);
    border-radius: 8px;
    white-space: nowrap;
    flex-shrink: 0;
    border: 1px solid rgba(249, 115, 22, 0.1);
    transition: all 0.2s;
}

.command:hover code {
    background: rgba(249, 115, 22, 0.12);
    box-shadow: 0 0 12px rgba(249, 115, 22, 0.08);
}

.command span {
    font-size: 0.82rem;
    color: var(--text-muted);
    font-weight: 300;
}

/* ======================================================
   TABLES
   ====================================================== */
.table-wrapper {
    overflow-x: auto;
    margin-bottom: 1rem;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-glass);
}

table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.84rem;
}

thead th {
    text-align: left;
    padding: 14px 18px;
    background: rgba(249, 115, 22, 0.04);
    color: var(--accent-orange);
    font-weight: 600;
    font-size: 0.72rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-bottom: 1px solid var(--border-glass);
}

tbody td {
    padding: 12px 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
    color: var(--text-secondary);
    font-weight: 300;
}

tbody tr {
    transition: background 0.2s;
}

tbody tr:hover {
    background: rgba(249, 115, 22, 0.03);
}

tbody tr:last-child td {
    border-bottom: none;
}

/* ======================================================
   TWO COLUMN LAYOUT
   ====================================================== */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 2.5rem;
}

.info-box {
    padding: 26px;
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    transition: border-color 0.3s;
}

.info-box:hover {
    border-color: rgba(255, 255, 255, 0.1);
}

/* ---------- Tier List ---------- */
.tier-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.tier {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    padding: 6px 0;
    transition: transform 0.2s;
}

.tier:hover {
    transform: translateX(4px);
}

.tier-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    flex-shrink: 0;
    transition: transform 0.2s;
}

.tier:hover .tier-dot {
    transform: scale(1.3);
}

.dot-common { background: #6b7280; }
.dot-rare { background: #3b82f6; box-shadow: 0 0 6px rgba(59, 130, 246, 0.3); }
.dot-epic { background: #a855f7; box-shadow: 0 0 6px rgba(168, 85, 247, 0.3); }
.dot-masterwork { background: #f97316; box-shadow: 0 0 6px rgba(249, 115, 22, 0.3); }
.dot-legendary { background: #fbbf24; box-shadow: 0 0 12px rgba(251, 191, 36, 0.4); }

.tier-mult {
    margin-left: auto;
    font-family: var(--font-display);
    font-size: 0.72rem;
    color: var(--accent-gold);
    font-weight: 700;
}

/* ---------- Slot List ---------- */
.slot-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
}

.slot-item {
    padding: 7px 16px;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid var(--border-subtle);
    border-radius: 50px;
    font-size: 0.8rem;
    color: var(--text-secondary);
    transition: all 0.2s;
}

.slot-item:hover {
    border-color: rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
}

.small-note {
    font-size: 0.73rem;
    color: var(--text-muted);
    font-style: italic;
    font-weight: 300;
}

/* ======================================================
   MATERIAL DETAILS
   ====================================================== */
.material-details {
    margin-bottom: 2.5rem;
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: border-color 0.3s;
}

.material-details:hover {
    border-color: rgba(255, 255, 255, 0.1);
}

.material-details summary {
    padding: 16px 22px;
    background: var(--bg-glass);
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-primary);
    transition: all 0.25s;
    list-style: none;
}

.material-details summary::before {
    content: "▸ ";
    color: var(--accent-orange);
    transition: transform 0.2s;
    display: inline-block;
}

.material-details[open] summary::before {
    content: "▾ ";
}

.material-details summary:hover {
    background: var(--bg-glass-hover);
    padding-left: 26px;
}

.material-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    padding: 24px;
    background: rgba(0, 0, 0, 0.15);
}

.mat-section h4 {
    font-size: 0.85rem;
    color: var(--accent-orange);
    margin-bottom: 12px;
    font-weight: 600;
}

.mat-item {
    font-size: 0.82rem;
    color: var(--text-secondary);
    padding: 5px 0;
    font-weight: 300;
}

.stars {
    color: var(--accent-gold);
    margin-right: 8px;
    font-size: 0.68rem;
    letter-spacing: 1px;
}

/* ======================================================
   BEAST SHOWCASE
   ====================================================== */
.beast-showcase {
    margin-bottom: 2.5rem;
}

.beast-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 12px;
}

.beast-card {
    padding: 22px 16px;
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    text-align: center;
    transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    position: relative;
    overflow: hidden;
}

/* Subtle radial glow on hover */
.beast-card::after {
    content: "";
    position: absolute;
    bottom: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 120%;
    height: 80%;
    background: radial-gradient(ellipse, rgba(239, 68, 68, 0.08), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
}

.beast-card:hover {
    border-color: rgba(239, 68, 68, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(239, 68, 68, 0.08);
}

.beast-card:hover::after {
    opacity: 1;
}

.beast-kurama {
    border-color: rgba(249, 115, 22, 0.25);
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.06), rgba(239, 68, 68, 0.04));
}

.beast-kurama:hover {
    border-color: rgba(249, 115, 22, 0.5);
    box-shadow: 0 12px 50px rgba(249, 115, 22, 0.12);
}

.beast-kurama::after {
    background: radial-gradient(ellipse, rgba(249, 115, 22, 0.12), transparent 70%);
}

.beast-tails {
    display: block;
    font-size: 1.4rem;
    color: var(--accent-red);
    margin-bottom: 8px;
    font-weight: 800;
    letter-spacing: 2px;
    position: relative;
    z-index: 1;
}

.beast-kurama .beast-tails {
    color: var(--accent-orange);
}

.beast-name {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-primary);
    position: relative;
    z-index: 1;
}

/* ======================================================
   RANK TIERS
   ====================================================== */
.rank-tiers {
    margin-bottom: 2.5rem;
}

.tier-showcase {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
}

.rank-tier {
    padding: 18px 10px;
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-sm);
    text-align: center;
    transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    position: relative;
    overflow: hidden;
}

.rank-tier::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
}

.rank-tier span {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-primary);
    position: relative;
    z-index: 1;
}

.rank-tier small {
    display: block;
    font-size: 0.65rem;
    color: var(--text-muted);
    margin-top: 5px;
    font-weight: 300;
    position: relative;
    z-index: 1;
}

.rank-tier:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

/* Tier colors with glow effect */
.t1::before { background: #4b5563; }
.t2::before { background: #6b7280; }
.t3::before { background: #22c55e; }
.t3:hover { border-color: rgba(34, 197, 94, 0.3); box-shadow: 0 10px 30px rgba(34, 197, 94, 0.05); }
.t4::before { background: #3b82f6; }
.t4:hover { border-color: rgba(59, 130, 246, 0.3); box-shadow: 0 10px 30px rgba(59, 130, 246, 0.05); }
.t5::before { background: #6366f1; }
.t5:hover { border-color: rgba(99, 102, 241, 0.3); }
.t6::before { background: #8b5cf6; }
.t6:hover { border-color: rgba(139, 92, 246, 0.3); }
.t7::before { background: #a855f7; }
.t7:hover { border-color: rgba(168, 85, 247, 0.3); }
.t8::before { background: var(--accent-pink); }
.t8:hover { border-color: rgba(236, 72, 153, 0.3); box-shadow: 0 10px 30px rgba(236, 72, 153, 0.06); }
.t9::before { background: var(--accent-orange); }
.t9:hover { border-color: rgba(249, 115, 22, 0.3); }

.t10 {
    border-color: rgba(249, 115, 22, 0.2);
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.06), rgba(239, 68, 68, 0.04));
}
.t10::before {
    background: linear-gradient(90deg, #fbbf24, #f97316, #ef4444);
    height: 4px;
}
.t10:hover {
    border-color: rgba(249, 115, 22, 0.4);
    box-shadow: 0 10px 40px rgba(249, 115, 22, 0.1);
}
.t10 span {
    background: linear-gradient(135deg, #fbbf24, #f97316);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
}

/* ======================================================
   HIGHLIGHT BOX
   ====================================================== */
.highlight-box {
    padding: 28px;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.04), rgba(239, 68, 68, 0.02));
    border: 1px solid rgba(249, 115, 22, 0.12);
    border-radius: var(--radius-md);
    margin-bottom: 2.5rem;
    position: relative;
    overflow: hidden;
}

.highlight-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-fire);
    border-radius: 4px 0 0 4px;
}

.highlight-box h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 14px;
    color: var(--accent-orange);
    padding-left: 12px;
}

.highlight-box ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-left: 12px;
}

.highlight-box li {
    font-size: 0.85rem;
    color: var(--text-secondary);
    padding-left: 22px;
    position: relative;
    line-height: 1.6;
    font-weight: 300;
}

.highlight-box li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent-orange);
    font-weight: 700;
}

.highlight-box li strong {
    color: var(--text-primary);
    font-weight: 600;
}

/* ======================================================
   GETTING STARTED
   ====================================================== */
.getting-started-steps {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 22px;
    padding: 22px 28px;
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    position: relative;
    overflow: hidden;
}

/* Left accent bar on hover */
.step::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 100%;
    background: var(--gradient-fire);
    opacity: 0;
    transition: opacity 0.3s;
}

.step:hover {
    border-color: rgba(249, 115, 22, 0.15);
    background: var(--bg-glass-hover);
    transform: translateX(8px);
}

.step:hover::before {
    opacity: 1;
}

.step-num {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: var(--gradient-fire);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 1.1rem;
    color: #fff;
    box-shadow: 0 4px 20px rgba(249, 115, 22, 0.2);
}

.step-content h3 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.step-content p {
    font-size: 0.84rem;
    color: var(--text-secondary);
    font-weight: 300;
    line-height: 1.65;
}

.step-content code {
    font-family: 'JetBrains Mono', 'Fira Code', monospace;
    font-size: 0.78rem;
    padding: 3px 9px;
    background: rgba(249, 115, 22, 0.08);
    color: var(--accent-orange);
    border-radius: 6px;
    border: 1px solid rgba(249, 115, 22, 0.1);
}

/* ======================================================
   SECTION BREAK TITLE
   ====================================================== */
.section-break-title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 2.5rem;
    padding-bottom: 1.2rem;
    text-align: center;
    position: relative;
    color: var(--text-primary);
    letter-spacing: 1px;
}

.section-break-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gradient-fire);
    border-radius: 3px;
}

/* ======================================================
   MINI MODULE CARDS
   ====================================================== */
.module-mini {
    margin-bottom: 1.5rem;
}

.module-mini .module-header {
    padding: 22px 30px;
}

.module-mini .module-icon {
    width: 50px;
    height: 50px;
    font-size: 1.6rem;
}

.module-mini .module-title {
    font-size: 1.08rem;
}

.module-mini .module-body {
    padding: 22px 30px 26px;
}

.module-mini .module-intro {
    max-width: 100%;
    font-size: 0.88rem;
    margin-bottom: 1.2rem;
}

/* ======================================================
   MODULE START
   ====================================================== */
.module-start {
    border-color: rgba(249, 115, 22, 0.12);
}
.module-start .module-header {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.04), rgba(168, 85, 247, 0.02));
}
.module-start::before {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.35), rgba(168, 85, 247, 0.2), transparent 60%);
}

/* ======================================================
   MODULE ICON COLORS
   ====================================================== */
.module-explore .module-icon { background: rgba(34, 197, 94, 0.08); border-color: rgba(34, 197, 94, 0.15); }
.module-armor .module-icon { background: rgba(168, 85, 247, 0.08); border-color: rgba(168, 85, 247, 0.15); }
.module-beasts .module-icon { background: rgba(239, 68, 68, 0.08); border-color: rgba(239, 68, 68, 0.15); }
.module-spin .module-icon { background: rgba(251, 191, 36, 0.08); border-color: rgba(251, 191, 36, 0.15); }
.module-clan .module-icon { background: rgba(6, 182, 212, 0.08); border-color: rgba(6, 182, 212, 0.15); }
.module-challenge .module-icon { background: rgba(236, 72, 153, 0.08); border-color: rgba(236, 72, 153, 0.15); }
.module-ranked .module-icon { background: rgba(249, 115, 22, 0.08); border-color: rgba(249, 115, 22, 0.15); }
.module-economy .module-icon { background: rgba(251, 191, 36, 0.08); border-color: rgba(251, 191, 36, 0.15); }
.module-fun .module-icon { background: rgba(168, 85, 247, 0.08); border-color: rgba(168, 85, 247, 0.15); }

/* ======================================================
   FOOTER
   ====================================================== */
.site-footer {
    position: relative;
    z-index: 1;
    margin-top: 2rem;
    padding: 5rem 2rem;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.5));
    border-top: 1px solid var(--border-glass);
    text-align: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 2rem;
}

.footer-version {
    padding: 4px 16px;
    border: 1px solid rgba(249, 115, 22, 0.2);
    border-radius: 50px;
    font-size: 0.68rem;
    color: var(--accent-orange);
    letter-spacing: 2px;
    font-weight: 600;
    font-family: var(--font-display);
}

.footer-note {
    font-size: 0.85rem;
    color: var(--text-secondary);
    max-width: 580px;
    margin: 0 auto 1.5rem;
    line-height: 1.8;
    font-weight: 300;
}

.footer-credit {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-style: italic;
    font-weight: 300;
}

/* ======================================================
   SCROLL REVEAL
   ====================================================== */
.module-section {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.module-section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ======================================================
   RESPONSIVE
   ====================================================== */
@media (max-width: 768px) {
    .module-header {
        flex-wrap: wrap;
        padding: 22px;
    }

    .module-body {
        padding: 22px;
    }

    .module-intro {
        max-width: 100%;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .two-col {
        grid-template-columns: 1fr;
    }

    .material-grid {
        grid-template-columns: 1fr;
    }

    .tier-showcase {
        grid-template-columns: repeat(2, 1fr);
    }

    .beast-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .hero-stats {
        gap: 8px;
    }

    .stat-pill {
        padding: 8px 16px;
        font-size: 0.78rem;
    }

    .hero-title {
        font-size: clamp(2.5rem, 13vw, 3.5rem);
        flex-direction: column;
        gap: 0.3rem;
    }

    .hero-x {
        font-size: 1rem;
    }

    .hero-botname {
        letter-spacing: 6px;
        font-size: 0.65rem;
    }

    .content {
        padding: 2rem 1rem 3rem;
    }

    .nav-link {
        padding: 14px 16px;
        font-size: 0.75rem;
    }

    .module-mini .module-header {
        padding: 18px 22px;
    }

    .module-mini .module-body {
        padding: 18px 22px 22px;
    }

    .step {
        padding: 18px 20px;
    }
}

@media (max-width: 480px) {
    .hero-stats {
        flex-direction: column;
        align-items: center;
    }

    .tier-showcase {
        grid-template-columns: 1fr;
    }

    .beast-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .command {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }

    .hero-sub {
        letter-spacing: 4px;
    }

    .step {
        flex-direction: column;
        gap: 14px;
    }
}

/* ======================================================
   INTERACTIVE ELEMENTS
   ====================================================== */

/* --- Scroll Progress Bar --- */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: linear-gradient(90deg, var(--accent-orange), var(--accent-blue));
    z-index: 9999;
    transition: width 0.05s linear;
    box-shadow: 0 0 10px var(--accent-orange);
}

/* --- Cursor Glow --- */
.cursor-glow {
    position: fixed;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(249, 115, 22, 0.04), transparent 70%);
    mix-blend-mode: screen;
    transition: opacity 0.3s;
}

/* --- Toast Notification --- */
.toast {
    position: fixed;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    padding: 12px 28px;
    background: rgba(249, 115, 22, 0.95);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 50px;
    z-index: 10000;
    opacity: 0;
    transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: 0 8px 30px rgba(249, 115, 22, 0.3);
    white-space: nowrap;
    font-family: 'JetBrains Mono', 'Fira Code', monospace;
    letter-spacing: 0.3px;
}

.toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* --- Command Copy --- */
.copy-icon {
    margin-left: auto;
    font-size: 0.8rem;
    opacity: 0;
    transition: opacity 0.2s;
    flex-shrink: 0;
}

.command:hover .copy-icon {
    opacity: 0.6;
}

.command.copied {
    border-color: rgba(34, 197, 94, 0.3) !important;
    background: rgba(34, 197, 94, 0.04) !important;
}

.command.copied code {
    background: rgba(34, 197, 94, 0.1) !important;
    color: var(--accent-green) !important;
}

/* --- Click Spark --- */
.click-spark {
    position: fixed;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    animation: spark-fly 0.55s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes spark-fly {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 1;
    }
    100% {
        transform: translate(var(--tx), var(--ty)) scale(0);
        opacity: 0;
    }
}

/* --- Collapsible Module Toggle --- */
.collapse-toggle {
    margin-left: 12px;
    font-size: 1rem;
    color: var(--text-muted);
    transition: transform 0.3s, color 0.2s;
    flex-shrink: 0;
    opacity: 0.4;
    line-height: 1;
}

.module-header:hover .collapse-toggle {
    opacity: 0.8;
    color: var(--accent-orange);
}

.module-card .module-body {
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    max-height: none;
}

.module-card.collapsed .module-body {
    max-height: 0 !important;
    padding-top: 0;
    padding-bottom: 0;
}

.module-card.collapsed .collapse-toggle {
    transform: rotate(0deg);
}

/* --- Beast Card Flip --- */
.beast-flippable {
    perspective: 600px;
    position: relative;
    cursor: pointer;
}

.beast-flippable .beast-tails,
.beast-flippable .beast-name {
    transition: opacity 0.3s, transform 0.3s;
    backface-visibility: hidden;
}

.beast-back {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: rotateY(180deg);
    transition: opacity 0.3s, transform 0.3s;
    backface-visibility: hidden;
    padding: 10px 8px;
    z-index: 2;
}

.beast-flippable.flipped .beast-tails,
.beast-flippable.flipped .beast-name {
    opacity: 0;
    transform: rotateY(180deg);
}

.beast-flippable.flipped .beast-back {
    opacity: 1;
    transform: rotateY(0deg);
}

.beast-flippable.flipped {
    border-color: rgba(249, 115, 22, 0.3);
    background: rgba(249, 115, 22, 0.04);
}

.beast-back-title {
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--accent-orange);
    margin-bottom: 6px;
    letter-spacing: 1px;
}

.beast-back-info {
    font-size: 0.68rem;
    color: var(--text-secondary);
    display: flex;
    flex-direction: column;
    gap: 3px;
    text-align: center;
    font-weight: 300;
    line-height: 1.4;
}

/* --- Search Bar --- */
.search-container {
    display: flex;
    align-items: center;
    padding: 0 4px;
    flex-shrink: 0;
}

.search-input {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    padding: 8px 14px;
    font-size: 0.78rem;
    color: var(--text-primary);
    font-family: var(--font-body);
    outline: none;
    width: 160px;
    transition: all 0.3s;
}

.search-input::placeholder {
    color: var(--text-muted);
    font-size: 0.75rem;
}

.search-input:focus {
    border-color: rgba(249, 115, 22, 0.3);
    background: rgba(249, 115, 22, 0.04);
    width: 220px;
    box-shadow: 0 0 20px rgba(249, 115, 22, 0.06);
}

/* --- No Results --- */
.no-results {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-muted);
    font-size: 1.1rem;
}

.no-results strong {
    color: var(--accent-orange);
}

.no-results-sub {
    font-size: 0.82rem;
    margin-top: 10px;
    color: var(--text-muted);
    font-weight: 300;
}

/* --- Keyboard Hints --- */
.keyboard-hint {
    display: inline;
    font-size: 0.75rem;
    color: var(--text-muted);
    font-style: normal;
}

kbd {
    display: inline-block;
    padding: 2px 8px;
    font-family: var(--font-display);
    font-size: 0.65rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    color: var(--text-secondary);
    margin: 0 2px;
}

/* --- Typewriter Cursor --- */
.hero-desc::after {
    content: "▎";
    animation: blink-cursor 0.8s step-end infinite;
    color: var(--accent-orange);
    font-weight: 300;
}

.hero-desc.typing-done::after {
    animation: blink-cursor 0.8s step-end 3;
    animation-fill-mode: forwards;
}

@keyframes blink-cursor {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

/* --- Mobile adjustments for interactive elements --- */
@media (max-width: 768px) {
    .search-input {
        width: 120px;
        font-size: 0.72rem;
        padding: 7px 10px;
    }
    .search-input:focus {
        width: 160px;
    }
    .cursor-glow {
        display: none;
    }
    .copy-icon {
        opacity: 0.4;
    }
    .keyboard-hint {
        display: none;
    }
}
