/* Modern dark-mode theme inspired by radixdlt.com */

body {
    font-family: 'WDXL Lubrifont JP N', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #121212;
    color: #e0e0e0;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    font-size: 1.1rem;
}

header {
    background-color: #1a1a1a;
    padding: 1rem;
    text-align: center;
}

h1 {
    margin: 0;
    font-size: 2.5rem;
}

main {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

a {
    color: #00a8ff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

button {
    background-color: #00a8ff;
    color: #121212;
    border: none;
    padding: 0.5rem 1rem;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 4px;
}

button:hover {
    background-color: #0097e6;
}

footer {
    background-color: #1e1e1e;
    text-align: center;
    padding: 0.3rem;
    position: fixed;
    width: 100%;
    bottom: 0;
    font-size: calc(1.1rem - 2px);
}

.social-icons {
    margin-top: 0.7rem;
    display: flex;
    justify-content: center;
    gap: 0.7rem;
}

.social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    transition: transform 0.3s ease;
    object-fit: cover;
    object-position: center;
    background: #232946;
    display: block;
}

.social-icon:hover {
    transform: scale(1.1);
} 