/* Dark Theme Styles */
body {
    background-color: #121212;
    color: #e0e0e0;
    font-family: 'Arial', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.profile-card {
    background: #1e1e1e;
    border: 2px solid #C7DFA3;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    width: 350px;
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease-in-out;
}

.profile-card:hover {
    transform: scale(1.05);
}

.profile-card img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #C7DFA3;
    margin-bottom: 15px;
}

.profile-card h2 {
    color: #C7DFA3;
    margin: 5px 0;
    font-size: 22px;
}

.profile-card h3 {
    color: #A3BF7D;
    margin: 5px 0;
    font-size: 18px;
}

.profile-card p {
    color: #e0e0e0;
    margin: 10px 0;
    font-size: 14px;
}

.social-links {
    margin-top: 10px;
}

.social-links a {
    display: inline-block;
    margin: 5px;
    text-decoration: none;
    color: #C7DFA3;
    font-weight: bold;
    transition: color 0.3s ease-in-out;
}

.social-links a:hover {
    color: #A3BF7D;
}

#utc-time {
    color: #C7DFA3;
    font-weight: bold;
    margin-top: 15px;
}
