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

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    overflow-x: hidden;
}

.bg-animate {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
}

@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.container {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

header {
    text-align: center;
    margin-bottom: 40px;
    animation: fadeInDown 1s ease;
}

.profile-pic {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    border-radius: 50%;
    padding: 4px;
    background: white;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.profile-pic img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

h1 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 5px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

p {
    font-size: 1rem;
    font-weight: 300;
    opacity: 0.9;
}

main {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.card-link {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    background: white;
    border-radius: 16px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
}

.card-link:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 1.2rem;
    color: white;
    flex-shrink: 0;
}

.text {
    flex-grow: 1;
}

.text h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.text span {
    font-size: 0.8rem;
    color: #666;
}

.arrow {
    color: #ccc;
    transition: 0.3s;
}

.card-link:hover .arrow {
    transform: translateX(5px);
    color: #333;
}

/* Gradients for icons */
.gradient-1 .icon { background: linear-gradient(135deg, #1DB954, #1ed760); }
.gradient-2 .icon { background: linear-gradient(135deg, #FF0000, #ff4d4d); }
.gradient-3 .icon { background: linear-gradient(135deg, #8e44ad, #9b59b6); }
.gradient-4 .icon { background: linear-gradient(135deg, #f39c12, #f1c40f); }

.socials {
    margin-top: 40px;
    display: flex;
    gap: 20px;
}

.socials a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(5px);
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center;
    line-height: 45px;
    color: white;
    text-decoration: none;
    transition: 0.3s;
    font-size: 1.2rem;
}

.socials a i {
    margin: 0 !important;
    padding: 0 !important;
    display: inline-block !important;
    width: auto !important;
    height: auto !important;
    line-height: inherit !important;
}

.socials a:hover {
    background: white;
    color: #e73c7e;
    transform: scale(1.1) rotate(10deg);
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
