body {
    background-color: black;
    color: #00FF00;
    font-family: 'Courier New', Courier, monospace;
    margin: 0;
    padding: 20px;
    text-align: center;
    line-height: 1.5;
}

h1 { 
    font-size: 2em;
    border-bottom: 2px solid #00FF00;
    margin-bottom: 20px;
}

.profile {
    margin: 20px auto;
    max-width: 600px;
    /* The rest of the profile styles remain the same */
}

/* Center the new container */
.xmpp-wrapper {
    text-align: center;
    margin-top: -10px; /* Pulls it slightly closer to the icons above */
    margin-bottom: 20px;
}

/* Style the badge specifically */
img.xmpp-compliance-badge {
    height: 30px;          /* Adjusted from 40px/60px to be smaller */
    width: auto;           /* Maintains the rectangle shape */
    border-radius: 0;      /* Overrides the global circular img rule */
    display: inline-block; 
    margin: 0 auto;
    transition: transform 0.2s ease;
}

img.xmpp-compliance-badge:hover {
    transform: scale(1.1);
}

/* NEW: Styles to display the icons side-by-side and center them */
.social-icon-container {
    display: flex; /* Key property to align children horizontally */
    justify-content: center; /* Centers the icons */
    align-items: center; /* Vertically aligns the icons (useful if they had different heights) */
    gap: 25px; /* Adds space between the icons */
    margin: 20px auto; /* Adds vertical spacing */
}

/* NEW: Style for the images inside the icon links */
.social-icon-image {
    height: 60px;    /* Keeps it aligned with the square icons */
    width: auto;      /* Essential: lets the badge be a rectangle */
    border-radius: 0; /* Keeps it from becoming a circle */
    display: inline-block; /* Change this from block */
    vertical-align: middle; /* Ensures it stays centered with square icons */
    transition: transform 0.2s ease-in-out;
}

/* Optional: Hover effect for the icons */
.social-icon-container a:hover .social-icon-image {
    transform: scale(1.1);
}

.project-box {
    border: 2px solid #00ff00;
    padding: 15px;
    margin: 20px auto;
    max-width: 400px;
    text-align: center;
    font-family: monospace;
    color: #00ff00;
}

.project-title-link {
    text-decoration: none;
}

.project-title {
    font-weight: bold;
    font-size: 18px;
    color: #00ff00;
}

.project-title-link:hover .project-title {
    background-color: #002200;
}

/* Styling for the urgent project box */
.urgent-project {
    background-color: #330000; /* Darker red background */
    border: 2px solid #FF0000 !important; /* Make the border bright red */
    animation: pulse 2s infinite; /* Add a pulse animation */
}

/* Make the title text red and bold */
.urgent-project .project-title a {
    color: #FF0000 !important;
    font-weight: bold;
}

/* Optional: add a pulsing effect */
@keyframes pulse {
    0% {
        box-shadow: 0 0 5px 2px rgba(255, 0, 0, 0.4);
    }
    50% {
        box-shadow: 0 0 15px 5px rgba(255, 0, 0, 0.8);
    }
    100% {
        box-shadow: 0 0 5px 2px rgba(255, 0, 0, 0.4);
    }
}

.project-description {
    margin-top: 10px;
}

/* NOTE: This generic rule will now only apply to your main profile picture 
   because we created a specific override for the social icons. */
img {
    border-radius: 50%;
    width: 200px;
    height: 200px;
    object-fit: cover;
    display: block; 
    margin: 0 auto;
}

p {
    font-size: 1.2em;
    margin: 10px 0;
    text-align: center; 
    padding: 0 20px;
}

a {
    color: #00FF00;
    text-decoration: underline;
}

.content-video {
    width: 100%; 
    height: auto; 
    display: block; 
}