/* Reset default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

/* Dark theme (default) */
body {
    background-color: #000000;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    cursor: default;
    text-align: center;
    padding: 20px 0 20px 0;
}

a {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
}

.container {
    width: 90%;
    max-width: 450px;
}

.profile-pic {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    border: 3px solid #e64dff;
    box-shadow: 0 0 20px rgba(230, 77, 255, 0.6);
}

.name {
    font-size: 28px;
    font-weight: bold;
    margin: 10px 0;
    color: #ffffff;
}

.description {
    font-size: 16px;
    margin-bottom: 30px;
    line-height: 1.6;
    color: #cccccc;
}

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

.link-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 15px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid #5d7aff;
    box-shadow: 0 0 10px rgba(93, 122, 255, 0.4);
}

.link-button:hover {
    background-color: #2a2a2a;
    transform: translateY(-3px);
    border-color: #00d9ff;
    box-shadow: 
        0 0 15px rgba(0, 217, 255, 0.6),
        0 0 30px rgba(0, 217, 255, 0.4),
        0 0 45px rgba(0, 217, 255, 0.2);
}

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

.button-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.button-group {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.icon-button {
    border: 2px solid #e64dff;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #1a1a1a;
    color: #ffffff;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(230, 77, 255, 0.4);
}

.icon-button i {
    font-size: 24px;
}

.icon-button:hover {
    transform: scale(1.15);
    border-color: #ff00ff;
    box-shadow: 
        0 0 15px rgba(255, 0, 255, 0.6),
        0 0 25px rgba(255, 0, 255, 0.4);
}

.icon-button:active {
    transform: scale(0.95);
}

.link-button-text {
    font-size: 14px;
    color: #888888;
}

.copyright {
    margin-top: 15px;
    font-size: 12px;
    color: #666666;
}

/* Light mode fallback (if toggled) */
@media (prefers-color-scheme: light) {
    body {
        backg
