body {
    margin: 0;
    padding: 0;
    font-family: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: #f2f4f8;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    color: #24292e;
}

.container {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.05);
    text-align: center;
    max-width: 400px;
    width: 90%;
}

.logo {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
}

h1 {
    font-size: 1.5rem;
    margin: 0 0 10px 0;
    color: #1a1a1a;
}

.badge {
    display: inline-block;
    background: #eef2ff;
    color: #4f46e5;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
}

p {
    font-size: 0.95rem;
    color: #586069;
    line-height: 1.5;
    margin-bottom: 30px;
}

.loader {
    border: 3px solid #f3f3f3;
    border-top: 3px solid #f6851b; /* MetaMask orange */
    border-radius: 50%;
    width: 30px;
    height: 30px;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.footer-links {
    margin-top: 30px;
    display: flex;
    gap: 12px;
    font-size: 0.8rem;
    color: #6a737d;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.footer-links a {
    color: #58a6ff;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #0366d6;
    text-decoration: underline;
}

.separator {
    color: #e1e4e8;
}

/* Internal Pages Styles */
.page-content {
    text-align: left;
    width: 100%;
    margin-top: 20px;
}

.page-content h2 {
    color: #1a1a1a;
    font-size: 1.2rem;
    margin-bottom: 10px;
    margin-top: 20px;
}

.page-content p {
    font-size: 0.95rem;
    color: #586069;
    line-height: 1.6;
    margin-bottom: 15px;
}

.page-content strong {
    color: #24292e;
}

.back-btn {
    align-self: flex-start;
    background: transparent;
    color: #586069;
    border: none;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 20px;
    padding: 0;
    transition: color 0.2s;
}

.back-btn:hover {
    color: #0366d6;
}