* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-tap-highlight-color: rgba(135, 206, 235, 0.2);
    min-height: 100%;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Iceland', sans-serif;
    font-weight: 400;
}

body {
    font-family: 'Nunito Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    /* Global site background (client image) */
    background-color: #0d0d0d;
    background-image:
        /* Darken just enough for readability while keeping the image visible */
        linear-gradient(rgba(13, 13, 13, 0.65), rgba(13, 13, 13, 0.75)),
        url('/176.jpg');
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    min-height: 100%;
    color: #ffffff;
    line-height: 1.6;
    font-size: 16px;
    letter-spacing: -0.01em;
}

/* Mobile Safari can get janky with fixed backgrounds */
@media (max-width: 768px) {
    body {
        background-attachment: scroll;
    }
}

/* ============================
   Docs / Whitepaper Styles
   ============================ */

.doc-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 0 40px 0;
}

/* Make in-page anchors land nicely when jumping from the TOC */
.doc-section {
    scroll-margin-top: 16px;
}

.doc-hero {
    background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 100%);
    border: 2px solid #87CEEB;
    border-radius: 12px;
    padding: 28px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
    margin-bottom: 22px;
}

.doc-hero h1 {
    font-size: 2.2rem;
    color: #ffffff;
    margin-bottom: 10px;
}

.doc-subtitle {
    color: #cfcfcf;
    font-size: 1.05rem;
    margin-bottom: 18px;
}

.doc-meta {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 16px;
}

.doc-meta > div {
    background: #0a0a0a;
    border: 1px solid #1a1a1a;
    border-radius: 10px;
    padding: 12px;
}

.doc-meta-label {
    display: block;
    color: #888;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    font-weight: 700;
    margin-bottom: 4px;
}

.doc-meta-value {
    display: block;
    color: #87CEEB;
    font-weight: 800;
}

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

.toc {
    background: #2a2a2a;
    border: 1px solid #87CEEB;
    border-radius: 10px;
    padding: 18px 18px 12px 18px;
    margin-bottom: 22px;
}

.toc h2 {
    font-size: 1.3rem;
    color: #87CEEB;
    margin-bottom: 10px;
    border-bottom: 1px solid rgba(135, 206, 235, 0.35);
    padding-bottom: 8px;
}

.toc ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

/* On larger screens, make the TOC more compact and scannable */
@media (min-width: 900px) {
    .toc ul {
        columns: 2;
        column-gap: 28px;
    }

    .toc li {
        break-inside: avoid;
    }
}

.toc li {
    margin: 8px 0;
}

.toc a {
    color: #e0e0e0;
    text-decoration: none;
    font-weight: 600;
}

.toc a:hover {
    color: #87CEEB;
    text-decoration: underline;
}

.doc-section {
    background: #2a2a2a;
    border: 1px solid #1a1a1a;
    border-radius: 10px;
    padding: 22px;
    margin-bottom: 18px;
}

.doc-section h2 {
    font-size: 1.5rem;
    color: #87CEEB;
    margin-bottom: 12px;
}

.doc-section h3 {
    font-size: 1.15rem;
    color: #ffffff;
    margin: 16px 0 8px 0;
}

.doc-section p {
    color: #e6e6e6;
}

.doc-section ul,
.doc-section ol {
    margin: 10px 0 0 18px;
}

.doc-section li {
    margin: 8px 0;
    color: #e6e6e6;
}

.doc-section code {
    background: #0d0d0d;
    border: 1px solid #1a1a1a;
    padding: 2px 6px;
    border-radius: 6px;
    color: #87CEEB;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    font-size: 0.95em;
    word-break: break-word;
}

/* Whitepaper specific responsive tweaks */
@media (max-width: 768px) {
    .doc-container {
        padding-bottom: 28px;
    }

    .doc-hero {
        padding: 18px;
    }

    .doc-hero h1 {
        font-size: 1.8rem;
        line-height: 1.15;
    }

    .doc-subtitle {
        font-size: 0.98rem;
    }

    .toc {
        padding: 14px;
    }

    .toc ul {
        columns: 1;
    }

    .doc-section {
        padding: 16px;
    }

    .doc-section h2 {
        font-size: 1.35rem;
    }

    .doc-section h3 {
        font-size: 1.05rem;
    }

    .callout {
        padding: 12px 12px;
    }
}

@media (max-width: 420px) {
    .doc-hero h1 {
        font-size: 1.55rem;
    }

    .doc-section {
        padding: 14px;
    }
}

.callout {
    background: #0a0a0a;
    border: 1px solid #1a1a1a;
    border-left: 4px solid #87CEEB;
    border-radius: 10px;
    padding: 14px 16px;
    margin-top: 14px;
    color: #ddd;
}

.callout.warning {
    border-left-color: #ffeb3b;
}

.callout.danger {
    border-left-color: #ff4757;
}

.doc-footer {
    margin-top: 26px;
    padding: 18px;
    background: #0d0d0d;
    border: 1px solid #1a1a1a;
    border-radius: 10px;
    color: #888;
    text-align: center;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px 40px 20px;
}

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 60px;
    margin: 0 0 40px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border-bottom: 3px solid #87CEEB;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    width: 100vw;
}

.header-logo {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-image {
    width: 200px;
    height: 120px;
    object-fit: contain;
    object-position: center;
}

.logo-text {
    font-family: 'Iceland', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.header-nav {
    flex: 1;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    max-width: 900px;
}

.header-wallet {
    flex: 0 0 200px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

/* Custom Wallet Button */
.custom-wallet-btn {
    padding: 12px 24px;
    background-color: #87CEEB;
    border: 2px solid #87CEEB;
    color: #000000;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    border-radius: 4px;
    text-transform: uppercase;
    font-family: 'Nunito Sans', sans-serif;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    -webkit-tap-highlight-color: rgba(135, 206, 235, 0.3);
    touch-action: manipulation;
    user-select: none;
}

.custom-wallet-btn:hover {
    background-color: #5FA8D3;
    border-color: #5FA8D3;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(135, 206, 235, 0.4);
}

.custom-wallet-btn:active {
    transform: translateY(0);
    background-color: #4A90B8;
}

.custom-wallet-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
}

/* Disconnect Button */
.disconnect-btn {
    padding: 10px 20px;
    background-color: transparent;
    border: 2px solid #ff4757;
    color: #ff4757;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    border-radius: 4px;
    text-transform: uppercase;
    font-family: 'Nunito Sans', sans-serif;
    margin-left: 10px;
    touch-action: manipulation;
    user-select: none;
}

.disconnect-btn:hover {
    background-color: #ff4757;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(255, 71, 87, 0.4);
}

.disconnect-btn:active {
    transform: translateY(0);
}

/* Hide Web3Modal balance */
w3m-button > *:first-child > *:first-child,
w3m-button wui-balance-button,
w3m-account-button wui-balance-button,
w3m-button [class*="balance"],
w3m-button::part(balance) {
    display: none !important;
}

/* Navigation Buttons */
.nav-btn {
    padding: 14px 28px;
    background-color: transparent;
    border: 2px solid transparent;
    color: #e0e0e0;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    border-radius: 4px;
    text-transform: uppercase;
    font-family: 'Nunito Sans', sans-serif;
}

.nav-btn:hover {
    background-color: rgba(135, 206, 235, 0.1);
    border-color: #87CEEB;
    color: #87CEEB;
    transform: translateY(-2px);
}

/* Touch devices can "stick" hover states; disable the translate jiggle to prevent header jitter */
@media (hover: none), (pointer: coarse) {
    .nav-btn:hover {
        transform: none;
    }
}

.nav-btn.active {
    background-color: #87CEEB;
    border-color: #87CEEB;
    color: #000000;
    box-shadow: 0 4px 8px rgba(135, 206, 235, 0.3);
}

/* Views */
.view {
    display: none;
}

.view.active {
    display: block;
}

.view h2 {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid #87CEEB;
    color: #87CEEB;
}

/* Forms */
.form {
    max-width: 600px;
    margin: 0 auto;
    background: #2a2a2a;
    padding: 40px;
    border-radius: 8px;
    border: 1px solid #87CEEB;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .form {
        max-width: 100%;
    }
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #87CEEB;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    background-color: #1a1a1a;
    border: 2px solid #444;
    color: #ffffff;
    font-size: 1rem;
    border-radius: 4px;
    font-family: 'Nunito Sans', sans-serif;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #87CEEB;
    box-shadow: 0 0 0 3px rgba(135, 206, 235, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
}

.form-help {
    margin-top: 6px;
    font-size: 0.85rem;
    color: #b0b0b0;
    line-height: 1.4;
}

/* Info Box */
.info-box {
    background: #1a1a1a;
    border: 2px solid #87CEEB;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 30px;
}

.info-box h4 {
    color: #87CEEB;
    margin-bottom: 20px;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

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

.info-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #333;
}

.info-label {
    color: #b0b0b0;
    font-size: 0.9rem;
}

.info-value {
    color: #ffffff;
    font-weight: 600;
}

/* Buttons */
.btn-primary,
.btn-secondary {
    width: 100%;
    padding: 16px 32px;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    border: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-family: 'Nunito Sans', sans-serif;
}

.btn-primary {
    background: linear-gradient(135deg, #87CEEB 0%, #5FA8D3 100%);
    color: #000000;
    box-shadow: 0 4px 12px rgba(135, 206, 235, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(135, 206, 235, 0.4);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-primary:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid #87CEEB;
    color: #87CEEB;
}

.btn-secondary:hover {
    background-color: rgba(135, 206, 235, 0.1);
    transform: translateY(-2px);
}

/* File Upload Button */
.file-upload-btn {
    display: block;
    padding: 12px 20px;
    background: #1a1a1a;
    border: 2px dashed #333;
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    color: #87CEEB;
    font-weight: 600;
}

.file-upload-btn:hover {
    border-color: #87CEEB;
    background: #0d0d0d;
}

.file-upload-btn.has-file {
    border-style: solid;
    border-color: #50fa7b;
    color: #50fa7b;
}

/* Result Box */
.result-box {
    max-width: 700px;
    margin: 40px auto 0;
    background: #2a2a2a;
    padding: 40px;
    border-radius: 8px;
    border: 2px solid #87CEEB;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.result-box h3 {
    color: #87CEEB;
    margin-bottom: 30px;
    text-align: center;
    font-size: 1.5rem;
    letter-spacing: 1px;
}

.result-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #444;
}

.result-item:last-child {
    border-bottom: none;
}

.result-label {
    color: #b0b0b0;
    font-weight: 600;
    font-size: 0.9rem;
}

.result-value {
    color: #ffffff;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    word-break: break-all;
    text-align: right;
    max-width: 60%;
}

.copy-btn {
    padding: 6px 12px;
    background-color: #87CEEB;
    color: #000000;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.8rem;
    font-weight: 600;
    margin-left: 10px;
    transition: all 0.3s ease;
}

.copy-btn:hover {
    background-color: #5FA8D3;
}

/* Verification Status */
.verification-status {
    margin-top: 20px;
    padding: 20px;
    background: #1a1a1a;
    border-radius: 8px;
    border: 2px solid #444;
}

.verification-status.pending {
    border-color: #FFA500;
}

.verification-status.success {
    border-color: #00FF88;
}

.verification-status.failed {
    border-color: #FF4757;
}

/* Action Buttons */
.action-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 30px;
}

/* Status Box */
.status-box {
    position: fixed;
    top: 100px;
    right: 20px;
    max-width: 400px;
    padding: 20px 25px;
    background: #2a2a2a;
    border: 2px solid #87CEEB;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    z-index: 9999;
    animation: slideIn 0.3s ease;
    word-break: break-word;
    overflow-wrap: break-word;
}

.status-box.success {
    border-color: #00FF88;
}

.status-box.error {
    border-color: #FF4757;
}

.status-box.warning {
    border-color: #FFA500;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Loading Overlay */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.loading-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid #333;
    border-top-color: #87CEEB;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

.loading-overlay p {
    margin-top: 20px;
    color: #87CEEB;
    font-size: 1.1rem;
    font-weight: 600;
}

/* Info Content */
.info-content {
    max-width: 700px;
    margin: 0 auto;
}

.info-section {
    background: #2a2a2a;
    padding: 30px;
    margin-bottom: 25px;
    border-radius: 8px;
    border: 1px solid #444;
}

.info-section h3 {
    color: #87CEEB;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.info-list {
    padding-left: 25px;
    line-height: 1.8;
}

.info-list li {
    margin-bottom: 12px;
    color: #e0e0e0;
}

.contract-info {
    background: #1a1a1a;
    padding: 20px;
    border-radius: 4px;
    border: 1px solid #87CEEB;
    overflow-x: auto;
}

.contract-info p {
    margin-bottom: 10px;
    line-height: 1.6;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.contract-info code {
    font-family: 'Courier New', monospace;
    color: #87CEEB;
    font-size: 0.9rem;
    word-break: break-all;
    display: inline-block;
    max-width: 100%;
}

.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: #b0b0b0;
    font-size: 1.1rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .container {
        max-width: 100%;
        padding: 0 15px 40px 15px;
    }
    
    .header {
        padding: 25px 40px;
    }
    
    .logo-text {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    body {
        font-size: 15px;
    }
    
    .header {
        flex-direction: column;
        padding: 20px 15px;
        gap: 15px;
        /* On mobile, avoid the 100vw full-bleed trick causing horizontal overflow */
        left: 0;
        right: 0;
        margin-left: 0;
        margin-right: 0;
        width: 100%;
    }
    
    .header-logo {
        width: 100%;
        justify-content: center;
    }
    
    .logo-text {
        font-size: 2rem;
    }
    
    .header-nav {
        width: 100%;
        max-width: none;
        /* Use a grid on mobile so labels don't get truncated */
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }
    
    .nav-btn {
        width: 100%;
        padding: 12px 10px;
        font-size: 0.82rem;
        line-height: 1.1;
        /* Allow wrapping so long labels (e.g., "my projects") stay readable */
        white-space: normal;
        overflow: visible;
        text-overflow: clip;
        /* Better tap target */
        min-height: 44px;
    }
    
    /* Admin button spans full width on mobile */
    .nav-btn#adminNavBtn {
        grid-column: 1 / -1;
    }
    
    .header-wallet {
        width: 100%;
        flex: 1;
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .custom-wallet-btn {
        flex: 1;
        min-width: 150px;
        max-width: 300px;
        padding: 14px 20px;
        font-size: 0.9rem;
    }
    
    .disconnect-btn {
        padding: 12px 16px;
        font-size: 0.8rem;
        margin-left: 0;
    }
    
    .container {
        padding: 0 15px 30px 15px;
    }
    
    h2 {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }
    
    .form {
        padding: 20px;
    }
    
    .form-group label {
        font-size: 0.9rem;
    }
    
    .form-group input,
    .form-group textarea {
        font-size: 15px;
        padding: 12px 15px;
    }
    
    .info-box {
        padding: 20px;
    }
    
    .info-box h3 {
        font-size: 1.1rem;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .info-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
        padding: 8px 0;
    }
    
    .info-label,
    .info-value {
        font-size: 0.85rem;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 14px 24px;
        font-size: 0.9rem;
    }
    
    .result-box {
        padding: 20px;
    }
    
    .result-box h3 {
        font-size: 1.2rem;
    }
    
    .result-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        padding: 12px 0;
    }
    
    .result-value {
        max-width: 100%;
        word-break: break-all;
        font-size: 0.85rem;
    }
    
    .copy-btn {
        align-self: flex-start;
        width: auto;
        padding: 6px 12px;
        font-size: 0.75rem;
    }
    
    .action-buttons {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .token-card {
        padding: 20px;
    }
    
    .token-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .token-header h3 {
        font-size: 1.1rem;
    }
    
    .token-id {
        font-size: 0.75rem;
    }
    
    .token-actions {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .status-box {
        top: 80px;
        right: 10px;
        left: 10px;
        max-width: none;
        padding: 15px 20px;
        font-size: 0.9rem;
    }
    
    .loading-overlay h2 {
        font-size: 1.5rem;
    }
    
    .spinner {
        width: 40px;
        height: 40px;
        border-width: 3px;
    }
    
    .contract-info {
        padding: 15px;
    }
    
    .contract-info code {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .logo-text {
        font-size: 1.6rem;
    }
    
    .nav-btn {
        padding: 8px 10px;
        font-size: 0.75rem;
    }
    
    .form {
        padding: 15px;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .info-box {
        padding: 15px;
    }
    
    .token-card {
        padding: 15px;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 12px 20px;
        font-size: 0.85rem;
    }
    
    .contract-info {
        padding: 12px;
    }
    
    .contract-info code {
        font-size: 0.7rem;
        line-height: 1.4;
    }
}

/* Token Cards */
.token-card {
    background: #2a2a2a;
    border: 1px solid #333;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.token-card:hover {
    border-color: #87CEEB;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(135, 206, 235, 0.2);
}

.token-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #333;
}

.token-header h3 {
    margin: 0;
    color: #87CEEB;
    font-size: 1.2rem;
}

.token-id {
    color: #b0b0b0;
    font-size: 0.85rem;
    font-family: 'Courier New', monospace;
}

.token-info {
    margin-bottom: 20px;
}

.token-info .info-value a {
    color: #87CEEB;
    text-decoration: none;
    transition: color 0.3s ease;
}

.token-info .info-value a:hover {
    color: #5FA8D3;
    text-decoration: underline;
}

.token-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.token-actions button {
    flex: 1 1 auto;
    min-width: 150px;
}

.empty-state {
    text-align: center;
    color: #b0b0b0;
    padding: 60px 20px;
    font-size: 1.1rem;
}

/* Admin Panel */
.admin-content {
    max-width: 800px;
    margin: 0 auto;
}

.admin-stats {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 15px;
}

.stat-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #333;
}

.stat-label {
    color: #b0b0b0;
    font-size: 0.95rem;
}

.stat-value {
    color: #87CEEB;
    font-weight: 700;
    font-size: 1.1rem;
}
