:root {
    --primary-color: #000000;
    --primary-color-dark: #222222;
    --text-color: white;
    --transition: all 0.3s ease;
    --shadow-color: rgba(0, 0, 0, 0.1);
}
* {
    box-sizing: border-box;
}
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, var(--primary-color), #f5f7fa);
    color: var(--text-color);
    margin: 0;
    padding: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    flex-direction: column;
    transition: var(--transition);
}
.container {
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    box-shadow: 0 10px 20px var(--shadow-color);
    padding: 2rem;
    margin: 1rem auto;
    text-align: center;
    max-width: 600px;
    width: 100%;
    color: #333;
}
h1 {
    margin: 0.5rem 0;
    font-size: 2rem;
    color: var(--primary-color);
}
.bio {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: #555;
}
.links {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    align-items: center;
    padding: 0;
    margin: 0;
}
.link-button {
    padding: 1rem;
    background-color: var(--primary-color);
    color: var(--text-color);
    text-decoration: none;
    border-radius: 50px;
    transition: var(--transition);
    font-weight: bold;
    box-shadow: 0 4px 6px var(--shadow-color);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 500px;
}
.link-button:hover {
    background-color: var(--primary-color-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}
.icon {
    margin-right: 0.7rem;
}
.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.modal-content {
    max-width: 80%;
    max-height: 70vh;
    margin-bottom: 20px;
    cursor: pointer;
    border-radius: 8px;
}
.modal-message {
    color: white;
    font-size: 1.2rem;
    text-align: center;
    margin: 15px 0;
    min-height: 0;
    display: none;
}
.redirect-message {
    color: white;
    font-size: 1rem;
    text-align: center;
    margin-top: 10px;
}
.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
}
.close:hover {
    color: #bbb;
}
.profile-pic {
    border-radius: 50%;
    width: 125px;
    height: 125px;
    object-fit: cover;
    cursor: pointer;
    border: 3px solid var(--primary-color);
    margin-bottom: 1rem;
}
ul {
    width: 100%;
    padding: 1rem 0;
    margin: 0;
    text-align: center;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    list-style: none;
}
ul li {
    margin: 0;
}
ul li a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: bold;
    transition: var(--transition);
}
ul li a:hover {
    color: var(--primary-color-dark);
}
@media (max-width: 400px) {
    .container {
        padding: 1rem;
        margin: 0.5rem;
    }
    h1 {
        font-size: 1.6rem;
    }
    .bio {
        font-size: 0.95rem;
    }
    .link-button {
        max-width: 100%;
    }
    .modal-content {
        max-width: 95%;
    }
}
.custom-icon {
    width: 18px;
    height: 18px;
    margin-right: 0.7rem;
    vertical-align: middle;
    filter: invert(0);
    transition: var(--transition);
}
.link-button.omni-glow {
    position: relative;
    box-shadow: 0 0 4px var(--primary-color);
    animation: omniGlowPulse 2s ease-in-out infinite;
    transition: var(--transition);
}
.link-button.omni-glow:hover {
    background-color: var(--primary-color-dark);
    transform: translateY(-3px);
    box-shadow: 0 0 10px var(--primary-color), 0 6px 12px rgba(0, 0, 0, 0.15);
}
@keyframes omniGlowPulse {
    0% {
      box-shadow: 0 0 4px var(--primary-color);
    }
    50% {
      box-shadow: 0 0 10px var(--primary-color);
    }
    100% {
      box-shadow: 0 0 4px var(--primary-color);
    }
}