.circular-favicon {
    border-radius: 50%;
    -webkit-mask-image: -webkit-radial-gradient(circle, white 100%, black 100%);
}

body {
    font-family: Arial, sans-serif;
    background-color: #000000;
    color: white;
    margin: 0;
    padding: 0;
    text-align: center;
    line-height: 1.6;
    animation: fadeIn 2s ease-out;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.container {
    max-width: 900px;
    margin: 50px auto;
    padding: 30px;
    background-color: #000000;
    color: #ffffff;
    border-radius: 15px;
    box-shadow: 0 6px 12px rgba(255, 255, 255, 0.3);
    animation: slideUp 1s ease-out;
    position: relative;
}

@keyframes slideUp {
    0% {
        transform: translateY(50px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
    border-bottom: 2px solid #ffffff;
}

header h1 {
    font-size: 24px;
    margin: 0;
}

nav {
    position: absolute;
    top: 10px;
    right: 20px;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 15px;
}

nav ul li {
    display: inline;
}

nav ul li a {
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #cccccc;
}

.content {
    padding: 20px 0;
}

.icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 20px 0;
}

.icons a {
    display: inline-block;
    width: 50px;
    height: 50px;
    background-color: #ffffff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 6px rgba(255, 255, 255, 0.1);
    transition: background-color 0.3s, transform 0.3s;
}

.icons a:hover {
    background-color: #cccccc;
    transform: scale(1.2);
}

.icons img {
    width: 24px;
    height: 24px;
}

.youtube-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    animation: fadeIn 0.3s ease-out;
}

.youtube-modal-content {
    background-color: #000000;
    margin: 60px auto;
    padding: 25px;
    border-radius: 15px;
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    color: #ffffff;
    box-shadow: 0 6px 12px rgba(255, 255, 255, 0.3);
    animation: slideDown 0.5s ease-out;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #000000 #f0f0f0;
    position: relative;
}

@keyframes slideDown {
    from {
        transform: translateY(-100px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.profile {
    position: relative;
    margin-bottom: 40px;
    animation: fadeIn 1.5s ease-out;
}

.profile img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #ffffff;
    margin-top: -70px;
    transition: transform 0.3s ease;
}

.profile img:hover {
    transform: scale(1.1);
}

.profile h1 {
    font-size: 24px;
    margin: 10px 0;
    animation: slideUp 1.5s ease-out;
    color: #ffffff; /* Neon white */
    text-shadow:
        0 0 7px #fff,
        0 0 10px #fff,
        0 0 21px #fff,
        0 0 42px #0fa,
        0 0 82px #0fa,
        0 0 92px #0fa,
        0 0 102px #0fa,
        0 0 151px #0fa;
}

.intro {
    font-size: 16px;
    margin-bottom: 20px;
    color: #ffffff;
    animation: fadeIn 2.5s ease-out;
}

.hire-button {
    background-color: #ffffff;
    color: black;
    border: none;
    padding: 12px 24px;
    font-size: 16px;
    border-radius: 8px;
    cursor: pointer;
    width: 100%;
    margin-top: 20px;
    transition: background-color 0.3s, transform 0.3s;
}

.hire-button:hover {
    background-color: #cccccc;
    transform: scale(1.05);
}

.discord-card {
    background-color: #2f3136;
    border-radius: 8px;
    padding: 15px;
    margin: 20px auto;
    max-width: 400px;
    box-shadow: 0 4px 6px rgba(255, 255, 255, 0.1);
}

.discord-header {
    margin-bottom: 15px;
}

.discord-title {
    color: #fff;
    font-size: 16px;
    font-weight: bold;
}

.discord-content {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.discord-avatar-container {
    position: relative;
}

.discord-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 4px solid #18191c;
}

.status-indicator {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 4px solid #2f3136;
}

.status-online {
    background-color: #3ba55c;
}

.status-idle {
    background-color: #faa81a;
}

.status-dnd {
    background-color: #ed4245;
}

.status-offline {
    background-color: #747f8d;
}

.discord-info {
    flex-grow: 1;
}

.discord-name-container {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

#discordUsername {
    color: #fff;
    font-weight: bold;
    font-size: 20px;
}

.discord-badges {
    display: flex;
    gap: 5px;
}

.discord-badge {
    width: 22px;
    height: 22px;
}

.discord-activity {
    color: #dcddde;
    font-size: 14px;
    margin-bottom: 4px;
}

.discord-custom-status {
    color: #dcddde;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.spotify-activity {
    display: flex;
    align-items: center;
    color: #1DB954;
    margin-top: 8px;
}

.custom-status {
    display: flex;
    align-items: center;
    color: #dcddde;
    margin-top: 8px;
}

.discord-badge {
    width: 22px;
    height: 22px;
    margin-right: 4px;
}

.connection-status {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
    color: #dcddde;
}

.connection-icon {
    width: 16px;
    height: 16px;
}

.spotify-info {
    display: flex;
    flex-direction: column;
}

.spotify-listening {
    font-weight: bold;
    color: #1DB954;
}

.connection-name {
    color: #dcddde;
    font-weight: bold;
}

.connection-details {
    color: #a3a6aa;
    font-size: 0.9em;
}

.avatar-wrapper {
    position: relative;
    width: 80px;
    height: 80px;
}

.avatar-decoration {
    position: absolute;
    top: -15px;
    left: -15px;
    width: 110px;
    height: 110px;
    z-index: 2;
    pointer-events: none;
}

.lanyard-img img {
    width: 100%;
    max-width: 320px;
    border-radius: 10px;
}

.video-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 2px solid #ffffff;
    padding-bottom: 15px;
    position: sticky;
    top: 0;
    background-color: #000000;
    z-index: 2;
}

.video-header img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
}

.video-header h3 {
    color: #ffffff;
    margin: 0;
}

.video-thumbnail {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 15px;
}

.video-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #ffffff;
}

.video-stats {
    display: flex;
    gap: 15px;
    color: #cccccc;
    font-size: 14px;
    margin-bottom: 15px;
}

.video-description {
    font-size: 14px;
    line-height: 1.5;
    color: #cccccc;
    margin-bottom: 20px;
    padding-right: 5px;
}

.youtube-modal-buttons {
    display: flex;
    gap: 10px;
    justify-content: space-between;
    margin-top: 20px;
    position: sticky;
    bottom: 0;
    background-color: #000000;
    padding-top: 15px;
    border-top: 1px solid #eeeeee;
    z-index: 2;
}

.youtube-modal-button {
    padding: 12px 24px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    border: none;
    transition: transform 0.3s, background-color 0.3s;
    flex: 1;
}

.youtube-modal-button:hover {
    transform: scale(1.05);
}

.watch-now-button {
    background-color: #ff0000;
    color: white;
}

.watch-now-button:hover {
    background-color: #cc0000;
}

.continue-button {
    background-color: #000000;
    color: white;
}

.continue-button:hover {
    background-color: #333333;
}

@media (max-width: 768px) {
    .youtube-modal-content {
        margin: 30px auto;
        width: 95%;
        max-height: 85vh;
    }

    .youtube-modal-button {
        padding: 10px 16px;
        font-size: 14px;
    }

    .video-header {
        padding-bottom: 10px;
    }

    .video-header img {
        width: 40px;
        height: 40px;
    }

    .video-title {
        font-size: 16px;
    }

    .link {
        color: white;
    }
}