/* 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);
}

/* Background Text */
.background-text {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    color: rgba(162, 44, 196, 0.2); /* Dark purple transparent text */
    font-size: 80px;
    font-weight: bold;
    pointer-events: none;
    animation: moveText 5s linear infinite;
}

.bg-text-left {
    position: absolute;
    top: 20%;
    left: 10%;
}

.bg-text-right {
    position: absolute;
    top: 20%;
    right: 10%;
}

.bg-text-bottom {
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
}

/* Keyframes for Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes moveText {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(20px);
    }
    100% {
        transform: translateY(0);
    }
}

@keyframes flicker {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        opacity: 1;
    }
}

.animate-flicker {
    animation: flicker 1s infinite;
}
