:root {
    /* Dark Mode (Default/Only) */
    --bg-color: #111111;
    --text-color: #dcdcd9;
    --accent-color: #ff2a2a;
    --border-width: 2px;
    --font-main: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    --cursor-size: 20px;
}

/* Removed @media (prefers-color-scheme: dark) as site is now forced dark mode */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: none;
    /* Hide default cursor for custom one */
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-main);
    width: 100%;
    min-height: 100vh;
    /* Allow scrolling */
    overflow-x: hidden;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

/* Custom Cursor */
.cursor-dot,
.cursor-outline {
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 9999;
    pointer-events: none;
}

.cursor-dot {
    width: 5px;
    height: 5px;
    background-color: var(--text-color);
}

.cursor-outline {
    width: var(--cursor-size);
    height: var(--cursor-size);
    border: 1px solid var(--text-color);
    transition: width 0.2s, height 0.2s, background-color 0.2s;
}

body:hover .cursor-outline {
    opacity: 1;
}

/* Utilities */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Layout */
.container {
    width: 100%;
    max-width: 800px;
    min-height: 100vh;
    /* Full viewport height */
    margin: 0 auto;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4rem;
}

/* Header / Logo */
.hero {
    margin-top: auto;
    /* Push down from top */
    width: 100%;
}

.logo-container {
    width: 100%;
    display: flex;
    justify-content: center;
    /* Removed margin-bottom as gap handles it */
}

.main-logo {
    max-width: 600px;
    height: auto;
    filter: drop-shadow(4px 4px 0px rgba(0, 0, 0, 0.2));
    transition: transform 0.3s ease;
}

/* Banner */
.banner-section {
    width: 100%;
    /* Removed borders for cleaner look */
    /* Reduced padding to sit tighter to footer */
    padding: 1rem 0;
    display: flex;
    justify-content: center;
}

.banner-img {
    max-width: 100%;
    height: auto;
    max-height: 150px;
}

/* Links */
.links {
    display: flex;
    flex-direction: column;
    /* Vertical layout for stake link + row */
    width: 100%;
    gap: 1.5rem;
    margin: auto;
    /* Push banner and footer to bottom */
}

.links-row {
    display: flex;
    flex-direction: row;
    /* Horizontal layout for medium and x */
    width: 100%;
    gap: 1.5rem;
}

.link-item {
    display: flex;
    justify-content: center;
    /* Center content now that icon is gone */
    align-items: center;
    flex: 1;
    /* Equal 50% width */
    padding: 1.5rem;
    border: var(--border-width) solid var(--text-color);
    text-decoration: none;
    color: var(--text-color);
    font-weight: 700;
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
    position: relative;
    background: transparent;
    overflow: hidden;
}

.link-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: var(--text-color);
    z-index: -1;
    transition: width 0.3s cubic-bezier(0.19, 1, 0.22, 1);
}

.link-item:hover {
    color: var(--bg-color);
    padding-left: 2rem;
    padding-right: 2rem;
}

.link-item:hover::before {
    width: 100%;
}

/* Removed .link-icon styles as requested */

.link-text {
    transition: opacity 0.3s ease;
}

.link-item:hover .link-text {
    opacity: 0;
    transition: opacity 0.05s ease;
}

.hover-reveal {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /* Force pure center */
    font-size: 1rem;
    font-weight: 400;
    opacity: 0;
    transition: opacity 0.05s ease;
    /* Removed translate slide for pure fade/swap */
}

.link-item:hover .hover-reveal {
    opacity: 1;
    transform: translate(-50%, -50%);
    /* Maintain center */
}

/* Stake link specific styling */
.link-item-stake {
    border-color: #3f3;
    color: #3f3;
}

.link-item-stake::before {
    background-color: #3f3;
}

/* Footer */
.footer {
    /* pinned to bottom via flex layout of container */
    font-size: 0.8rem;
    text-transform: uppercase;
    /* Removed border-top */
    width: 100%;
    text-align: center;
    padding-top: 1rem;
    padding-bottom: 2rem;
    letter-spacing: 2px;
}

/* Responsive */
@media (max-width: 600px) {
    .container {
        padding: 1rem;
        gap: 2rem;
    }

    .link-item {
        font-size: 1.2rem;
        padding: 1rem;
    }

    .main-logo {
        max-width: 250px;
    }

    /* Stack links on mobile */
    .links {
        flex-direction: column;
    }

    .links-row {
        flex-direction: column;
    }

    .links-row .link-item {
        font-size: 1.05rem;
    }
}