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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    max-width: 600px;
    margin: 0 auto;
    padding: 60px 20px;
    text-align: center;
}

header {
    margin-bottom: 50px;
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
    letter-spacing: -2px;
}

h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #4a5568;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

section {
    margin-bottom: 50px;
}

.about {
    background: rgba(255, 255, 255, 0.9);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.about p {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.8;
}

.links {
    margin-top: 40px;
}

.link-grid {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 200px;
    margin: 0 auto;
}

.link-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 25px 40px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    text-decoration: none;
    color: #4a5568;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.link-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.link-item:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
    color: white;
}

.link-item:hover::before {
    opacity: 1;
}

.link-item:hover .icon {
    transform: scale(1.1);
}

.icon {
    width: 36px;
    height: 36px;
    margin-bottom: 12px;
    transition: transform 0.3s ease;
}

footer {
    margin-top: 60px;
    color: #718096;
    font-size: 0.9rem;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

header {
    animation: fadeIn 0.8s ease-out;
}

.about {
    animation: fadeIn 0.8s ease-out 0.2s both;
}

.links {
    animation: fadeIn 0.8s ease-out 0.4s both;
}

footer {
    animation: fadeIn 0.8s ease-out 0.6s both;
}

/* Responsive Design */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    
    .container {
        padding: 40px 20px;
    }
    
    .about {
        padding: 30px;
    }
    
    .link-grid {
        flex-direction: column;
        width: 100%;
    }
    
    .link-item {
        width: 100%;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.2rem;
    }
    
    .container {
        padding: 30px 15px;
    }
}
