:root {
    --main-color: #1e3a8a; /* A deep blue from your site */
    --accent-color: #ffd600; /* The yellow accent from your site */
    --text-light: #f8fafc;
    --text-dark: #1f2937;
    --bg-light: rgba(255, 255, 255, 0.1);
    --bg-dark: rgba(0, 0, 0, 0.2);
}

body {
    font-family: 'Cairo', sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: var(--main-color);
    color: var(--text-light);
    overflow-x: hidden;
    position: relative;
}

.background-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(-45deg, #1e3a8a, #2563eb, #1d4ed8, #2563eb);
    background-size: 400% 400%;
    animation: gradient-move 15s ease infinite;
}

.background-shapes::before, .background-shapes::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    animation: float 15s infinite ease-in-out;
}

.background-shapes::before {
    width: 200px;
    height: 200px;
    top: 10%;
    left: 10%;
}

.background-shapes::after {
    width: 300px;
    height: 300px;
    bottom: 10%;
    right: 10%;
    animation-delay: 5s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-30px); }
}

@keyframes gradient-move {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.links-container {
    max-width: 680px;
    width: 90%;
    padding: 2rem;
    text-align: center;
    background: var(--bg-light);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px 0 var(--bg-dark);
    /* box-sizing: border-box; */
}

.links-header .profile-picture {
    width: 120px;
    height: auto;
    margin-bottom: 1rem;
}

.links-header h1 {
    margin: 0 0 0.5rem 0;
    font-size: 2rem;
    font-weight: 900;
}

.links-header p {
    margin: 0;
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.links-section {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.link-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem;
    background-color: var(--bg-light);
    color: var(--text-light);
    text-decoration: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.link-button:hover {
    background-color: var(--accent-color);
    color: var(--text-dark);
    transform: translateY(-3px);
    box-shadow: 0 4px 20px rgba(255, 214, 0, 0.3);
}

.link-button i {
    font-size: 1.2rem;
}

.links-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1rem;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: var(--bg-light);
    color: var(--text-light);
    text-decoration: none;
    border-radius: 12px;
    font-size: 1.4rem;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: var(--accent-color);
    color: var(--text-dark);
    transform: translateY(-3px);
}

.contact-info {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.contact-info a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #f8fafcab;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: var(--accent-color);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .links-header h1 {
        font-size: 1.8rem;
    }

    .link-button {
        padding: 0.9rem;
        font-size: 1rem;
    }
}

@media (max-width: 600px) {
    .links-container {
        width: 95%;
        padding: 1.5rem;
    }

    .links-header .profile-picture {
        width: 90px;
    }

    .links-header h1 {
        font-size: 1.6rem;
    }

    .link-button {
        font-size: 0.95rem;
    }
    .links-header p {
        font-size: 0.9rem;
    }

    .links-footer {
        gap: 1rem;
    }

    .social-icons {
        gap: 0.25rem;
    }

    .social-icons a {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }

    .contact-info {
        /* flex-direction: column; */
        /* gap: 0.75rem; */
        align-items: center;
        font-size: 0.8rem;
    }
    .links-container {
        box-sizing: border-box;
    }
} 
