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

body {
    font-family: 'Courier New', Courier, monospace;
    background: #fafafa;
    color: #333;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    position: relative;
    width: 100%;
    max-width: 800px;
    padding: 2rem;
}

.side-accent {
    position: fixed;
    left: 0;
    top: 0;
    width: 3px;
    height: 100vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.4;
        transform: scaleY(0.95);
    }
    50% {
        opacity: 1;
        transform: scaleY(1);
    }
}

.title {
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: 3rem;
    color: #666;
    text-transform: lowercase;
    font-family: 'Courier New', Courier, monospace;
}

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

.link {
    position: relative;
    display: block;
    color: #333;
    text-decoration: none;
    font-size: 1rem;
    padding: 0.5rem 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Courier New', Courier, monospace;
}

.link-name {
    display: inline-block;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.link-description {
    display: inline-block;
    margin-left: 1rem;
    color: #999;
    font-size: 0.9rem;
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.link:hover .link-name {
    color: #667eea;
    transform: translateX(8px);
}

.link:hover .link-description {
    opacity: 1;
    transform: translateX(0);
}

.link:hover::after {
    width: 100%;
}

@media (max-width: 600px) {
    .container {
        padding: 1.5rem;
    }
    
    .title {
        font-size: 1.3rem;
        margin-bottom: 2rem;
    }
    
    .link {
        font-size: 0.9rem;
    }
    
    .link-description {
        display: block;
        margin-left: 0;
        margin-top: 0.5rem;
        font-size: 0.8rem;
    }
    
    .link:hover .link-name {
        transform: translateX(4px);
    }
}