/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f7fa;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

/* Header Styles */
header {
    text-align: center;
    margin-bottom: 3rem;
}

h1 {
    font-size: 2.5rem;
    color: #2d3748;
    margin-bottom: 1rem;
    font-weight: 600;
}

.subtitle {
    font-size: 1.2rem;
    color: #718096;
}

/* Social Links Section */
.social-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 3rem;
}

.social-link {
    display: flex;
    align-items: center;
    padding: 1rem 1.5rem;
    background-color: white;
    border-radius: 8px;
    text-decoration: none;
    color: #4a5568;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.social-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.social-link i {
    font-size: 1.5rem;
    margin-right: 1rem;
}

.social-link.linkedin i {
    color: #0077b5;
}

.social-link.github i {
    color: #333;
}

.social-link.telegram i {
    color: #0088cc;
}

.social-link.youtube i {
    color: #ff0000;
}

.social-link.calendar i {
    color: #4299e1;
}

.social-link span {
    font-size: 1rem;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 1rem;
    }

    h1 {
        font-size: 2rem;
    }

    .subtitle {
        font-size: 1rem;
    }

    .social-link {
        padding: 0.8rem 1rem;
    }

    .social-link i {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.8rem;
    }

    .social-link span {
        font-size: 0.9rem;
    }
}