* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #f5f5f5;
    color: #333;
    line-height: 1.6;
}

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

.profile {
    text-align: center;
    margin-bottom: 30px;
}

.profile-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 15px;
}

.profile h1 {
    font-size: 28px;
    margin-bottom: 5px;
}

.profile p {
    color: #666;
    font-size: 16px;
}

.link-header {
    text-decoration: none;
    color: inherit;
}

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

.link {
    background-color: white;
    color: #333;
    padding: 15px 20px;
    text-decoration: none;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

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

.link i {
    font-size: 20px;
}

.footer {
    text-align: center;
    margin-top: 30px;
    color: #888;
    font-size: 14px;
}

/* Warna khusus untuk setiap platform */
.link:nth-child(6) { background-color: #ff0000; color: white; }
.link:nth-child(7) { background-color: #e1306c; color: white; }
.link:nth-child(8) { background-color: #333; color: white; }
.link:nth-child(9) { background-color: #0077b5; color: white; }
.link:nth-child(10) { background-color: #34a853; color: white; }

/* Responsive */
@media (max-width: 600px) {
    .container {
        padding: 15px;
    }
    
    .profile-img {
        width: 120px;
        height: 120px;
    }
}
