:root {
    --white: 255 255 255;
    --black: 34 34 34;
    --purple: 71 12 110;
    --purple-dark: 42 15 73;
    --pink-neon: 218 53 186;
    --teal-neon: 8 255 255;
    --green: 2 187 62;
    --green-neon: 0 255 157;
}

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

body {
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
    background-color: rgb(var(--purple));
    color: rgb(var(--white));
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.container {
    max-width: 800px;
    width: 100%;
    text-align: center;
}

.logo {
    margin-bottom: 3rem;
}

.logo img {
    height: 4rem;
    width: auto;
}

h1 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: rgb(var(--white));
}

.subtitle {
    font-size: 1.125rem;
    margin-bottom: 3rem;
    color: rgb(var(--white) / 0.8);
}

.buttons-container {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.dashboard-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: rgb(var(--white));
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid transparent;
    border-radius: 1rem;
    padding: 2rem;
    min-width: 200px;
    transition: all 0.3s ease;
    backdrop-filter: blur(8px);
    cursor: pointer;
}

.dashboard-button:hover {
    transform: translateY(-2px);
    border-color: rgb(var(--pink-neon));
    box-shadow: 0 0 0.2rem rgb(var(--white)), 
                0 0 0.4rem rgb(var(--white)), 
                0 0 1rem rgb(var(--pink-neon)), 
                0 0 0.4rem rgb(var(--pink-neon)), 
                0 0 1.4rem rgb(var(--pink-neon)), 
                inset 0 0 0.6rem rgb(var(--pink-neon) / 0.3);
}

.dashboard-button.testnet:hover {
    border-color: rgb(var(--teal-neon));
    box-shadow: 0 0 0.2rem rgb(var(--white)), 
                0 0 0.4rem rgb(var(--white)), 
                0 0 1rem rgb(var(--teal-neon)), 
                0 0 0.4rem rgb(var(--teal-neon)), 
                0 0 1.4rem rgb(var(--teal-neon)), 
                inset 0 0 0.6rem rgb(var(--teal-neon) / 0.3);
}

.icon-container {
    width: 80px;
    height: 80px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon {
    width: 60px;
    height: 60px;
    transition: all 0.3s ease;
}

.dashboard-button:hover .icon {
    animation: pulse 1.5s infinite;
}

.button-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.button-subtitle {
    font-size: 0.875rem;
    color: rgb(var(--white) / 0.7);
    line-height: 1.3;
}

.footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgb(var(--white) / 0.2);
    color: rgb(var(--white) / 0.6);
    font-size: 0.875rem;
}

.footer a {
    color: rgb(var(--pink-neon));
    text-decoration: none;
    font-weight: 500;
}

.footer a:hover {
    text-decoration: underline;
}

/* Animations */
@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

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

.livenet-icon {
    animation: rotate 3s linear infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.testnet-icon {
    animation: float 2s ease-in-out infinite;
}

/* Responsive Design */
@media (max-width: 640px) {
    .buttons-container {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .dashboard-button {
        min-width: unset;
        width: 100%;
    }
    
    h1 {
        font-size: 2rem;
    }
}