* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

body {
    background-color: #111827;
    color: #e5e7eb;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    #background-image: url('background.jpg');
    background-size: cover;
    background-position: center;
}

.container {
    padding: 1.5rem;
}

.card {
    background-color: #1f2937;
    padding: 2rem;
    border-radius: 0.8rem;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.5);
    backdrop-filter: blur(10px);
}

h1 {
    font-size: 1.8rem;
    margin-bottom: 0.4rem;
}

h2 {
    font-size: 1rem;
    font-weight: 300;
    opacity: 0.8;
    margin-bottom: 1rem;
}

.gradient-text {
    background: linear-gradient(90deg, #6ee7b7, #3b82f6);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

h2 a {
    text-decoration: underline;
    color: inherit;
}

.about {
    font-size: 0.9rem;
    line-height: 1.3;
    margin-bottom: 1.2rem;
    opacity: 0.9;
}

section {
    margin-bottom: 2rem;
}

section h3 {
    color: #cbd5e0;
    font-size: 1rem;
    margin-bottom: 0.8rem;
    font-weight: 500;
}

.interests .tags {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.interests .tag {
    background-color: #374151;
    color: #d1d5db;
    padding: 0.4rem 0.8rem;
    border-radius: 1.8rem;
    font-size: 0.85rem;
}

.contacts .contact-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.contacts .contact-link {
    color: #cbd5e0;
    transition: color 0.2s;
    font-size: 1.6rem;
}

.contacts .contact-link:hover {
    color: #3b82f6;
}

.links .site-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.links .site-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #9ca3af;
    transition: color 0.2s;
    min-width: 80px;
}

.links .site-link i {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.links .site-link:hover {
    color: #6ee7b7;
}

@media (max-width: 480px) {
    .card {
        padding: 1.5rem;
    }
    
    .site-links {
        gap: 1rem;
    }
}
