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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: #ffffff;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
}

.container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.content {
    text-align: center;
}

h1 {
    font-size: 3rem;
    color: #000;
    margin-bottom: 3rem;
    font-weight: 300;
    letter-spacing: 2px;
}

.links {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
}

.link-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 2.5rem;
    background: #fff;
    color: #000;
    text-decoration: none;
    border-radius: 8px;
    min-width: 280px;
    font-size: 1.1rem;
    font-weight: 400;
    border: 2px solid #000;
    transition: all 0.2s ease;
}

.link-card:hover {
    background: #000;
    color: #fff;
}

.link-card svg {
    flex-shrink: 0;
}

.link-card span {
    flex: 1;
    text-align: left;
}

/* Responsive design */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .link-card {
        min-width: 240px;
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .link-card svg {
        width: 24px;
        height: 24px;
    }
}
