:root {
    --flare-accent: #d91f3a;
    --text-dark: #1e1f22;
    --muted: #6b7178;
    --panel: #1f1f22;
    --panel-text: #f5f5f6;
    --stroke: #e6e7ea;
}

body {
    font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
    color: var(--text-dark);
    background: #ffffff;
}

.top-nav {
    border-bottom: 1px solid var(--stroke);
}

.brand-mark {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    letter-spacing: 0.2px;
}

.logo-placeholder {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: linear-gradient(135deg, #121212, #3a3a3a);
}

.nav-link {
    color: #3b3f45;
    font-weight: 500;

}

.nav-link.active {
    color: #111;
    position: relative;
}

.nav-link.active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -5px;
    height: 2px;
    background: #222;
}

.pill-select {
    border: 1px solid #cfd3d8;
    border-radius: 999px;
    padding: 6px 12px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.pill-select .badge {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #d91f3a;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 12px;
}

.pill-select select {
    border: 0;
    background: transparent;
    font-weight: 600;
}

.primary-outline {
    border: 1px solid #16181b;
    border-radius: 999px;
    padding: 8px 22px;
    font-weight: 600;
    background: #fff;
}

.hero {
    padding: 50px 0 40px;
}
.heroContainer {
    width: 75%;
    margin: 0 auto;
}

.hero h1 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 18px;
}

.info-card {
    background: var(--panel);
    color: var(--panel-text);
    border-radius: 16px;
    padding: 22px 26px;
    max-width: 920px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}

.info-card a {
    color: #ff4a6a;
    text-decoration: none;
}

.footer-bar {
    color: var(--muted);
    font-size: 14px;
    padding: 22px 0 18px;
    margin-bottom: 5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}
.footer-container {
    width: 70%;
}
@media (max-width: 780px) {
    .footer-container, .heroContainer {
        width: 90%;
    }
}
@media (max-width: 650px) {
    .responsiveColumn {
        flex-direction: column;
        text-align: center;
    }
}
@media (max-width: 550px) {
    .heroContainer {
        width: 100%;
    }
}
.socials i {
    font-size: 18px;
    color: #8a9096;
}

.bottom-nav {
    border-top: 1px solid var(--stroke);
    background: #fff;
}

.bottom-nav .nav-link {
    font-size: 16px;
    color: #6a7076;
}

.bottom-nav .nav-link.active {
    color: var(--text-dark);
}

.bottom-nav .circle {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--flare-accent);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

/* Table Card Styling */
.table-card {
    background: var(--panel);
    color: var(--panel-text);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}

.table-card .card-header {
    background: transparent;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding: 18px 26px;
}

.table-card .card-header h5 {
    color: var(--panel-text);
    font-weight: 600;
    font-size: 16px;
}

.table-card .card-header i {
    color: var(--flare-accent);
}

.table-card .table {
    color: var(--panel-text);
    margin-bottom: 0;
}

.table-card .table thead th {
    background: rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    color: var(--muted);
    font-weight: 500;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 12px 20px;
}

.table-card .table tbody tr {
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.table-card .table tbody tr:hover {
    background: rgba(255,255,255,0.03);
}

.table-card .table tbody td {
    padding: 14px 20px;
    vertical-align: middle;
    border: none;
}

.table-card .wallet-name {
    font-weight: 500;
}

.table-card .burned {
    color: var(--flare-accent);
    font-weight: 600;
}

.table-card .hash {
    font-family: monospace;
    color: var(--muted);
    font-size: 13px;
}

.table-card .time {
    color: var(--muted);
    font-size: 13px;
}

@media (max-width: 991.98px) {
    .top-nav .navbar-collapse {
        border-top: 1px solid var(--stroke);
        margin-top: 12px;
        padding-top: 12px;
    }
    .nav-link.active::after {
        display: none;
    }
    .hero {
        padding: 28px 0 30px;
    }
    .hero h1 {
        font-size: 20px;
    }
}