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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.container {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 600px;
    padding: 40px;
    text-align: center;
}

header {
    margin-bottom: 40px;
}

header h1 {
    color: #333;
    margin-bottom: 10px;
}

header p {
    color: #666;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    border-radius: 8px;
    text-decoration: none;
    color: white;
    font-weight: 500;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.social-link i {
    font-size: 24px;
    margin-right: 15px;
}

.twitter {
    background-color: #1DA1F2;
}

.instagram {
    background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D);
}

.linkedin {
    background-color: #0077B5;
}

.github {
    background-color: #333;
}

.facebook {
    background-color: #4267B2;
}

.analyticalalley {
    background-image: linear-gradient(203deg, #0D0884 57.4%, #73EFAC 98.68%);
}

.lionify {
    background-image: linear-gradient(203deg, #000 60%, rgb(210, 150, 69) 75%, rgb(250, 250, 200) 95%);
}

.mentor-sh {
    background-color: rgb(9, 9, 11);
}

footer {
    margin-top: 40px;
    color: #888;
    font-size: 14px;
}

@media (max-width: 480px) {
    .container {
        padding: 20px;
    }

    .social-link {
        padding: 12px 15px;
    }
}
