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

body {
    font-family: 'JetBrains Mono', 'Courier New', monospace;
    background-color: #0d1117;
    color: #c9d1d9;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    line-height: 1.4;
}

@media (prefers-color-scheme: light) {
    body {
        background-color: #f6f8fa;
        color: #24292f;
    }
}

.container {
    text-align: center;
    max-width: 600px;
    padding: 40px 20px;
}

.name {
    color: #f0f6fc;
    font-size: 48px;
    font-weight: 700;
    letter-spacing: 4px;
    margin-bottom: 40px;
    font-family: 'JetBrains Mono', monospace;
    text-shadow: 0 0 15px rgba(240, 246, 252, 0.3);
}

@media (prefers-color-scheme: light) {
    .name {
        color: #24292f;
        text-shadow: 0 0 15px rgba(36, 41, 47, 0.2);
    }
}

.links {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.links a {
    color: #58a6ff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    padding: 15px 30px;
    border: 2px solid #58a6ff;
    border-radius: 6px;
    transition: all 0.2s ease;
    min-width: 200px;
    text-align: center;
    background-color: transparent;
}

.links a:hover {
    color: #0d1117;
    background-color: #58a6ff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(88, 166, 255, 0.3);
}

.links a:focus {
    outline: 2px solid #58a6ff;
    outline-offset: 4px;
}

@media (prefers-color-scheme: light) {
    .links a {
        color: #0969da;
        border: 2px solid #0969da;
    }
    
    .links a:hover {
        color: #f6f8fa;
        background-color: #0969da;
        box-shadow: 0 4px 12px rgba(9, 105, 218, 0.3);
    }
    
    .links a:focus {
        outline: 2px solid #0969da;
        outline-offset: 4px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 20px;
    }
    
    .name {
        font-size: 36px;
        letter-spacing: 2px;
        margin-bottom: 30px;
    }
    
    .links {
        gap: 15px;
    }
    
    .links a {
        font-size: 16px;
        padding: 12px 24px;
        min-width: 180px;
    }
}

@media (max-width: 480px) {
    .name {
        font-size: 28px;
        letter-spacing: 1px;
        margin-bottom: 25px;
    }
    
    .links {
        gap: 12px;
    }
    
    .links a {
        font-size: 14px;
        padding: 10px 20px;
        min-width: 160px;
    }
}