:root {
    --metallic-black: #040404;
    --metallic-charcoal: #111215;
    --metallic-steel: #2a2d31;
    --metallic-silver: #f5f5f7;
    --metallic-graphite: #40444b;
    --metallic-chrome: #c7cad1;
    --liquid-highlight: rgba(255, 255, 255, 0.16);
    --liquid-shadow: rgba(0, 0, 0, 0.92);
    --liquid-core: rgba(38, 40, 46, 0.8);
    --liquid-sheen: rgba(255, 255, 255, 0.36);
    --accent-blue: #fdfdfd;
    --accent-glow: rgba(255, 255, 255, 0.34);
    --text-primary: #f7f7fa;
    --text-secondary: #d5d7dd;
    --border-glow: rgba(255, 255, 255, 0.2);
    --chrome-line: rgba(255, 255, 255, 0.45);
    --panel-edge: rgba(255, 255, 255, 0.26);
    --shadow-core: rgba(0, 0, 0, 0.9);
    --shadow-ambient: rgba(0, 0, 0, 0.55);
}

body {
    font-family: 'Roboto', 'Segoe UI', sans-serif;
    background:
        radial-gradient(150% 130% at 80% -20%, rgba(255, 255, 255, 0.22), transparent 62%),
        radial-gradient(120% 120% at -10% 35%, rgba(150, 150, 150, 0.12), transparent 70%),
        conic-gradient(from 210deg at 60% 30%, rgba(255, 255, 255, 0.1), rgba(0, 0, 0, 0.85), rgba(130, 130, 130, 0.16), rgba(0, 0, 0, 0.92)),
        linear-gradient(155deg, #030303 0%, #09090c 42%, #1c1e24 100%);
    background-size: 200% 200%, 160% 160%, 140% 140%, 100% 100%;
    background-blend-mode: screen, soft-light, hard-light, normal;
    animation: auroraShift 22s ease-in-out infinite;
    color: var(--text-primary);
    max-width: 1200px;
    margin: 0 auto;
    padding: 32px;
    min-height: 100vh;
    text-rendering: optimizeLegibility;
    letter-spacing: 0.01em;
    position: relative;
    overflow-x: hidden;
    isolation: isolate;
}

body::before {
    content: '';
    position: fixed;
    inset: -50% -30% auto -30%;
    height: 140vh;
    background:
        radial-gradient(120% 120% at 35% 20%, rgba(255, 255, 255, 0.28), transparent 58%),
        conic-gradient(from 140deg at 60% 40%, rgba(255, 255, 255, 0.25), rgba(42, 42, 48, 0.75), rgba(255, 255, 255, 0.12), rgba(24, 24, 28, 0.82), rgba(255, 255, 255, 0.25)),
        repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0 12px, rgba(20, 20, 24, 0.12) 12px 24px);
    background-blend-mode: screen, color-dodge, soft-light;
    filter: blur(48px) saturate(130%);
    opacity: 0.6;
    mix-blend-mode: screen;
    pointer-events: none;
    animation: liquidDrift 24s linear infinite;
    transform-origin: 50% 40%;
}

body::after {
    content: '';
    position: fixed;
    inset: auto -25% -38% -25%;
    height: 70vh;
    background:
        radial-gradient(70% 60% at 50% 40%, rgba(255, 255, 255, 0.26), transparent 72%),
        radial-gradient(90% 60% at 50% 80%, rgba(0, 0, 0, 0.78), transparent 85%);
    opacity: 0.5;
    filter: blur(70px);
    pointer-events: none;
    animation: horizonPulse 14s ease-in-out infinite;
}

.background-spinner {
    position: fixed;
    top: 50%;
    left: 50%;
    width: clamp(320px, 52vw, 560px);
    height: clamp(320px, 52vw, 560px);
    margin-left: calc(clamp(320px, 52vw, 560px) / -2);
    margin-top: calc(clamp(320px, 52vw, 560px) / -2);
    background: url('./logo/logo-512.png') no-repeat center/contain;
    opacity: 0.22;
    animation: spin 26s linear infinite;
    filter: drop-shadow(0 28px 60px rgba(0, 0, 0, 0.65));
    z-index: -4;
    pointer-events: none;
}

.grid-overlay {
    position: fixed;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
    background-size: 70px 70px;
    opacity: 0.35;
    mix-blend-mode: soft-light;
    z-index: -5;
    pointer-events: none;
}

.metallic-sheen {
    position: fixed;
    inset: -20% -10% auto -10%;
    height: 120vh;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.05) 42%, rgba(0, 0, 0, 0.55) 100%);
    mix-blend-mode: screen;
    pointer-events: none;
    z-index: -6;
    opacity: 0.45;
    transform: rotate(-4deg);
}

.corner-glow {
    position: fixed;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.35), transparent 65%);
    filter: blur(40px);
    opacity: 0.3;
    z-index: -4;
    pointer-events: none;
}

.corner-glow.glow-top {
    top: -140px;
    right: -60px;
}

.corner-glow.glow-bottom {
    bottom: -160px;
    left: -40px;
}

.main-layout {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: clamp(26px, 6vw, 42px);
    padding: clamp(22px, 5vw, 40px);
    width: min(100%, 1100px);
    margin: 0 auto;
    backdrop-filter: blur(6px) saturate(120%);
    perspective: 1400px;
}

.widget-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.widget-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 68px;
    padding: 18px 20px;
    color: var(--text-secondary);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.16em;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    background:
        linear-gradient(150deg, rgba(22, 22, 26, 0.95), rgba(10, 10, 14, 0.9)),
        radial-gradient(circle at 20% -30%, rgba(255, 255, 255, 0.18), transparent 65%);
    box-shadow: 0 22px 36px rgba(0, 0, 0, 0.68), inset 0 0 40px rgba(255, 255, 255, 0.08);
    position: relative;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.widget-placeholder::before {
    content: '';
    position: absolute;
    inset: 6px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    opacity: 0.6;
    pointer-events: none;
}

.widget-placeholder::after {
    content: '';
    position: absolute;
    top: -20%;
    left: -40%;
    width: 80%;
    height: 160%;
    background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.35) 40%, transparent 70%);
    opacity: 0.22;
    transform: rotate(12deg);
    pointer-events: none;
}

.widget-placeholder:hover {
    transform: translate3d(0, -4px, 18px);
    box-shadow: 0 32px 48px rgba(0, 0, 0, 0.65), inset 0 0 45px rgba(255, 255, 255, 0.12);
}

.widget-placeholder.widget-loaded {
    color: var(--metallic-silver);
    text-transform: none;
    font-size: 1rem;
    letter-spacing: 0.04em;
}

.holo-card {
    position: relative;
}

.holo-card::after {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 22px;
    background: linear-gradient(130deg, rgba(255, 255, 255, 0.35), transparent 65%);
    mix-blend-mode: screen;
    opacity: 0.25;
    pointer-events: none;
}

.page-header {
    text-align: center;
    position: relative;
    padding: 12px 0;
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: -18px;
    left: 50%;
    width: clamp(120px, 28vw, 260px);
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.65), transparent);
    transform: translateX(-50%);
    opacity: 0.6;
}

.page-subtitle {
    margin-top: 16px;
    font-size: 0.95rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(235, 236, 240, 0.86);
    text-shadow: 0 12px 28px rgba(0, 0, 0, 0.7), 0 1px 0 rgba(255, 255, 255, 0.1);
}

.content-grid {
    display: grid;
    gap: clamp(20px, 5vw, 32px);
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    align-content: start;
}

.section-wide {
    grid-column: 1 / -1;
}

.content-grid > .section {
    margin-bottom: 0;
}

h1,
h2 {
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

h1 {
    margin-bottom: 36px;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(112deg, #ffffff 0%, #e6e7ec 28%, #a5a9b1 58%, #f7f7f9 94%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow:
        0 1px 0 rgba(255, 255, 255, 0.9),
        0 4px 6px var(--shadow-core),
        0 14px 28px rgba(0, 0, 0, 0.75),
        0 -2px 8px rgba(255, 255, 255, 0.45);
    filter: drop-shadow(0 0 22px rgba(255, 255, 255, 0.25));
}

h1::before {
    content: '';
    position: absolute;
    top: -45%;
    left: 8%;
    width: 84%;
    height: 190%;
    background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.5), transparent 68%);
    filter: blur(16px);
    opacity: 0.4;
    transform: rotate(6deg);
}

h1::after {
    content: '';
    position: absolute;
    top: 50%;
    left: -25%;
    width: 150%;
    height: 130%;
    background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.6) 42%, transparent 74%);
    transform: translateY(-50%) translateX(-110%);
    animation: highlightSweep 6s ease-in-out infinite;
}

.section,
.info,
.rankings,
.search,
.genesis {
    margin-bottom: 30px;
    padding: 28px 32px;
    background:
        linear-gradient(160deg, rgba(22, 22, 26, 0.96), rgba(6, 6, 8, 0.92)),
        radial-gradient(circle at 20% -10%, rgba(255, 255, 255, 0.18), transparent 62%),
        repeating-linear-gradient(120deg, rgba(255, 255, 255, 0.05) 0 24px, rgba(0, 0, 0, 0.12) 24px 48px);
    border: 1px solid var(--panel-edge);
    border-radius: 22px;
    box-shadow: 0 26px 44px rgba(0, 0, 0, 0.85), inset 0 0 60px rgba(255, 255, 255, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(12px) saturate(135%);
    transform-style: preserve-3d;
    transition: transform 0.45s ease, box-shadow 0.45s ease, border-color 0.45s ease;
    will-change: transform, box-shadow;
}

.section::before,
.info::before,
.rankings::before,
.search::before,
.genesis::before {
    content: '';
    position: absolute;
    inset: -55% 38% auto -45%;
    height: 320px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.22), transparent 70%);
    pointer-events: none;
    transform: rotate(16deg) translateZ(0);
    opacity: 0.55;
    filter: blur(2px);
    mix-blend-mode: screen;
}

.section::after,
.info::after,
.rankings::after,
.search::after,
.genesis::after {
    content: '';
    position: absolute;
    inset: -20% -40% -30% -40%;
    background: linear-gradient(120deg, transparent 15%, rgba(255, 255, 255, 0.28) 35%, transparent 60%);
    opacity: 0.15;
    pointer-events: none;
    animation: sheenSweep 16s ease-in-out infinite;
    mix-blend-mode: color-dodge;
}

.section:hover,
.info:hover,
.rankings:hover,
.search:hover,
.genesis:hover {
    transform: translate3d(0, -6px, 24px);
    box-shadow: 0 36px 60px rgba(0, 0, 0, 0.9), inset 0 0 80px rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.34);
}

.section:hover::after,
.info:hover::after,
.rankings:hover::after,
.search:hover::after,
.genesis:hover::after {
    opacity: 0.38;
}

.section h2,
.info h2,
.rankings h2,
.search h2,
.genesis h2 {
    margin-bottom: 20px;
    background: linear-gradient(118deg, #ffffff 0%, #dadde3 40%, #8d9199 78%, #f2f3f5 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow:
        0 1px 0 rgba(255, 255, 255, 0.85),
        0 3px 8px rgba(0, 0, 0, 0.75),
        0 10px 22px rgba(0, 0, 0, 0.55);
}

.section p,
.section code,
.info p,
.info code,
.rankings p,
.rankings code,
.search p,
.search code,
.genesis p,
.genesis code {
    color: var(--text-secondary);
    text-shadow:
        0 1px 0 rgba(255, 255, 255, 0.1),
        0 8px 18px var(--shadow-ambient);
    letter-spacing: 0.02em;
}

.section p span,
.info p span,
.rankings p span,
.search p span,
.genesis p span,
.section p strong,
.info p strong,
.rankings p strong,
.search p strong,
.genesis p strong {
    color: var(--metallic-silver);
    text-shadow:
        0 1px 0 rgba(255, 255, 255, 0.7),
        0 6px 16px rgba(0, 0, 0, 0.7);
}

.section.search,
.section.converter {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.section.search .btn-success {
    align-self: flex-start;
}

.section.converter {
    justify-content: space-between;
}

.section.converter #coingecko-converter {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section code,
.info code,
.rankings code,
.search code,
.genesis code {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(20, 20, 24, 0.85));
    padding: 3px 9px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    box-shadow: inset 0 0 14px rgba(255, 255, 255, 0.14);
}

.section .text-muted {
    color: rgba(230, 232, 238, 0.72) !important;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

input.form-control {
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.18), rgba(8, 8, 12, 0.7));
    border: 1px solid rgba(255, 255, 255, 0.32);
    color: var(--metallic-silver);
    border-radius: 14px;
    padding: 12px 16px;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.6), 0 12px 24px rgba(0, 0, 0, 0.4);
    transition: all 0.25s ease;
    backdrop-filter: blur(6px) saturate(120%);
    letter-spacing: 0.06em;
}

input.form-control::placeholder {
    color: rgba(255, 255, 255, 0.55);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

input.form-control:hover {
    border-color: rgba(255, 255, 255, 0.55);
    box-shadow: inset 0 0 18px rgba(255, 255, 255, 0.22), 0 12px 26px rgba(0, 0, 0, 0.4);
}

input.form-control:focus {
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.26), rgba(12, 12, 18, 0.75));
    box-shadow: 0 0 0 0.3rem rgba(255, 255, 255, 0.28), inset 0 0 24px rgba(255, 255, 255, 0.28);
    border-color: rgba(255, 255, 255, 0.75);
    outline: none;
    color: #000;
}

.btn-success {
    background: linear-gradient(140deg, rgba(255, 255, 255, 0.98), rgba(201, 205, 210, 0.98) 45%, rgba(134, 138, 146, 0.95));
    border: 1px solid rgba(255, 255, 255, 0.6);
    color: var(--metallic-black);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    padding: 12px 26px;
    border-radius: 36px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 14px 24px rgba(0, 0, 0, 0.45), inset 0 2px 0 rgba(255, 255, 255, 0.85);
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.8);
}

.btn-success::before {
    content: '';
    position: absolute;
    inset: 4px;
    border-radius: inherit;
    background: linear-gradient(140deg, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0) 70%);
    opacity: 0.35;
    pointer-events: none;
}

.btn-success::after {
    content: '';
    position: absolute;
    inset: -10px;
    background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.7) 50%, transparent 90%);
    transform: translateX(-120%);
    transition: transform 0.45s ease;
}

.btn-success:hover {
    background: linear-gradient(140deg, rgba(255, 255, 255, 1), rgba(226, 226, 230, 1) 45%, rgba(168, 170, 176, 0.98));
    box-shadow: 0 0 28px rgba(255, 255, 255, 0.4), 0 16px 28px rgba(0, 0, 0, 0.5);
    transform: translateY(-1px);
}

.btn-success:hover::after {
    transform: translateX(120%);
}

.btn-success:active {
    transform: translateY(1px) scale(0.99);
    box-shadow: inset 0 6px 16px rgba(0, 0, 0, 0.4);
}

.pagination {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.pagination button {
    margin: 0;
    background: linear-gradient(150deg, rgba(64, 66, 74, 0.92), rgba(18, 18, 24, 0.98));
    color: var(--text-secondary);
    border: 1px solid rgba(255, 255, 255, 0.28);
    padding: 10px 18px;
    border-radius: 18px;
    transition: all 0.25s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.65), inset 0 0 0 rgba(255, 255, 255, 0);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.08em;
    backdrop-filter: blur(6px);
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.4);
}

.pagination button::before {
    content: '';
    position: absolute;
    inset: 3px;
    border-radius: inherit;
    border: 1px solid rgba(255, 255, 255, 0.18);
    opacity: 0.5;
    pointer-events: none;
}

.pagination button::after {
    content: '';
    position: absolute;
    top: -20%;
    left: -120%;
    width: 140%;
    height: 140%;
    background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.4) 45%, transparent 80%);
    transition: transform 0.35s ease;
    transform: skewX(-20deg) translateX(0);
    opacity: 0;
}

.pagination button:hover:not(:disabled) {
    color: var(--metallic-silver);
    border-color: rgba(255, 255, 255, 0.55);
    box-shadow: 0 0 18px var(--accent-glow), 0 12px 24px rgba(0, 0, 0, 0.65);
    transform: translateY(-1px);
}

.pagination button:hover:not(:disabled)::after {
    opacity: 1;
    transform: skewX(-20deg) translateX(120%);
}

.pagination button:disabled {
    background: linear-gradient(150deg, rgba(190, 194, 202, 0.45), rgba(106, 110, 120, 0.35));
    color: rgba(255, 255, 255, 0.68);
    cursor: default;
    box-shadow: inset 0 0 18px rgba(255, 255, 255, 0.18);
}

.pagination span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 32px;
    color: rgba(240, 241, 245, 0.65);
    letter-spacing: 0.22em;
    text-shadow: 0 8px 18px rgba(0, 0, 0, 0.6);
}

.table-shell {
    position: relative;
    margin-top: 18px;
    padding: clamp(14px, 3vw, 22px);
    border-radius: 26px;
    background:
        linear-gradient(155deg, rgba(16, 16, 22, 0.96), rgba(32, 34, 42, 0.92)),
        radial-gradient(circle at 22% -18%, rgba(255, 255, 255, 0.18), transparent 65%);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 34px 52px rgba(0, 0, 0, 0.8), inset 0 0 50px rgba(255, 255, 255, 0.06);
    overflow: hidden;
}

.table-shell::before {
    content: '';
    position: absolute;
    inset: 12px;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    opacity: 0.6;
    pointer-events: none;
}

.table-shell::after {
    content: '';
    position: absolute;
    inset: auto 20% -40px 20%;
    height: 120px;
    background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.24), transparent 70%);
    opacity: 0.3;
    filter: blur(30px);
    pointer-events: none;
}

.table-shell > table {
    margin: 0;
    border-radius: 18px;
    overflow: hidden;
}

table.table {
    background:
        linear-gradient(160deg, rgba(10, 10, 14, 0.82), rgba(28, 28, 34, 0.94)),
        repeating-linear-gradient(130deg, rgba(255, 255, 255, 0.05) 0 26px, rgba(0, 0, 0, 0.12) 26px 52px);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 22px 36px rgba(0, 0, 0, 0.75);
    position: relative;
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    z-index: 1;
}

table.table::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.2), transparent 60%);
    opacity: 0.16;
    pointer-events: none;
}

table.table::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(120% 80% at 50% -20%, rgba(255, 255, 255, 0.18), transparent 70%);
    opacity: 0.2;
    mix-blend-mode: screen;
    pointer-events: none;
}

table.table thead {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.4), rgba(128, 132, 140, 0.4));
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.85rem;
    box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.22);
    position: relative;
}

table.table thead::after {
    content: '';
    position: absolute;
    inset: auto 0 -1px 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    opacity: 0.6;
}

table.table thead th {
    color: transparent;
    background: linear-gradient(120deg, #fdfdfd 0%, #d5d7dd 45%, #8b8f97 80%, #f5f6f8 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow:
        0 1px 0 rgba(255, 255, 255, 0.85),
        0 3px 8px rgba(0, 0, 0, 0.6);
    padding: 16px 18px;
    border-bottom: none;
}

table.table tbody tr {
    transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

table.table tbody tr:hover {
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.18), rgba(18, 18, 24, 0.78));
    transform: translateY(-2px);
    box-shadow: inset 0 0 22px rgba(255, 255, 255, 0.22);
}

table.table tbody td,
table.table tbody th {
    padding: 16px 18px;
    position: relative;
}

table.table tbody tr td:first-child,
table.table tbody tr th:first-child {
    border-left: none;
}

table.table tbody tr td:last-child,
table.table tbody tr th:last-child {
    border-right: none;
}

table.table tbody tr:nth-child(odd) {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(0, 0, 0, 0));
}

table.table-dark td,
table.table-dark th {
    border-color: rgba(255, 255, 255, 0.14);
    color: var(--metallic-silver);
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.6);
    background-color: transparent;
}

#search-result {
    font-weight: 600;
    letter-spacing: 0.06em;
    color: transparent;
    background: linear-gradient(118deg, #ffffff 0%, #dfe1e6 40%, #969aa1 78%, #f6f7f9 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.6), 0 0 18px rgba(255, 255, 255, 0.28);
}

@media (max-width: 768px) {
    body {
        padding: 18px;
    }

    .main-layout {
        padding: 24px 18px;
    }

    .widget-row {
        grid-template-columns: 1fr;
    }

    .page-header::after {
        width: clamp(140px, 48vw, 220px);
    }
}

@media (max-width: 520px) {
    .main-layout {
        padding: 20px 16px;
    }

    .section,
    .info,
    .rankings,
    .search,
    .genesis {
        padding: 24px 22px;
    }

    .table-shell {
        padding: 16px;
    }

    .widget-placeholder {
        padding: 16px;
    }

    .page-subtitle {
        letter-spacing: 0.1em;
        font-size: 0.85rem;
    }
}

@keyframes auroraShift {
    0% {
        background-position: 0% 50%, 80% 20%, 0 0;
    }
    50% {
        background-position: 50% 50%, 20% 40%, 0 0;
    }
    100% {
        background-position: 0% 50%, 80% 20%, 0 0;
    }
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes horizonPulse {
    0%,
    100% {
        opacity: 0.25;
        transform: translateY(0);
    }
    50% {
        opacity: 0.55;
        transform: translateY(-12px);
    }
}

@keyframes highlightSweep {
    0%,
    20% {
        transform: translateY(-50%) translateX(-120%);
    }
    40%,
    60% {
        transform: translateY(-50%) translateX(60%);
    }
    100% {
        transform: translateY(-50%) translateX(140%);
    }
}

@keyframes sheenSweep {
    0%,
    15% {
        opacity: 0;
        transform: translateX(-40%) skewX(-12deg);
    }
    45% {
        opacity: 0.3;
        transform: translateX(40%) skewX(-12deg);
    }
    60% {
        opacity: 0.15;
        transform: translateX(80%) skewX(-12deg);
    }
    100% {
        opacity: 0;
        transform: translateX(110%) skewX(-12deg);
    }
}

@keyframes liquidDrift {
    0% {
        transform: rotate(0deg) scale(1.05);
    }
    50% {
        transform: rotate(180deg) scale(1.08);
    }
    100% {
        transform: rotate(360deg) scale(1.05);
    }
}

@keyframes chromeRipple {
    0%,
    100% {
        opacity: 0.0;
        transform: translateX(-6%);
    }
    30% {
        opacity: 0.3;
        transform: translateX(6%);
    }
    60% {
        opacity: 0.16;
        transform: translateX(14%);
    }
    }
/* ===== CoinGecko Converter Responsive Full-Width ===== */
#coingecko-converter {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

#coingecko-converter gecko-coin-converter-widget,
#coingecko-converter > iframe {
  width: 100% !important;
  max-width: 100% !important;
  height: 100%;
  display: block;
  margin: 0;
}

@media (max-width: 768px) {
  #coingecko-converter {
    width: 100%;
    margin-left: 0;
  }
}
