/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Courier New', monospace;
}

body {
    background-color: #000000; /* Full black background */
    color: #a32cc4; /* Dark purple for text */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden;
    position: relative;
}

/* Container and Profile Card */
.container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.profile-card {
    background: rgba(0, 0, 0, 0.9); /* Dark semi-transparent black */
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid #6a0dad; /* Purple border */
    box-shadow: 0 0 30px rgba(108, 0, 126, 0.8); /* Glowing dark purple shadow */
    animation: fadeIn 2s ease-in-out;
}

.profile-pic-container {
    display: flex;
    justify-content: center;
    margin-bottom: 15px;
}

.profile-pic {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #6a0dad; /* Purple border */
    transition: transform 0.3s ease;
}

.profile-pic:hover {
    transform: scale(1.2);
}

/* Bio Info */
.bio-info h1 {
    color: #ffffff; /* White title */
    font-size: 24px;
    letter-spacing: 2px;
}

.bio-info p.skills {
    color: #a32cc4; /* Dark purple for the description */
    font-size: 16px;
    margin: 10px 0;
}

/* Social Links */
.social-links a img {
    width: 30px;
    margin: 0 10px;
    transition: transform 0.3s ease;
}

.hover-bounce:hover {
    transform: scale(1.5);
}

/* Discord Widget */
.discord-widget {
    margin-top: 20px;
    display: flex;
    justify-content: center;
}

.discord-status {
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(108, 0, 126, 0.8); /* Dark purple shadow */
    border: 1px solid #6a0dad; /* Purple border */
    width: 300px; /* Adjust this to fit your design */
    height: auto; /* Keeps aspect ratio */
    transition: transform 0.3s ease;
}

.discord-status:hover {
    transform: scale(1.05);
}

/* Fade-in animation */
.fade-in-content {
    opacity: 0;
    animation: fadeInContent 2s ease-in-out forwards;
    animation-delay: 1s; /* Starts 1 second after the profile card */
}

/* Keyframes for Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInContent {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
