* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Titillium Web', Arial, Helvetica, sans-serif;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f0f23 100%);
    height: 100vh;
    overflow: hidden;
    position: relative;
}

/* Background with misty forest */
.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255,255,255,0.05) 0%, transparent 50%),
        linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f0f23 100%);
    z-index: -2;
}

.forest-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 50% 30%, rgba(0,0,0,0.3) 0%, transparent 70%),
        radial-gradient(ellipse at 20% 70%, rgba(0,0,0,0.2) 0%, transparent 60%);
    z-index: -1;
}

/* Particles effect */
.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.particles::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(1px 1px at 20px 30px, white, transparent),
        radial-gradient(1px 1px at 40px 70px, white, transparent),
        radial-gradient(1px 1px at 50px 160px, white, transparent),
        radial-gradient(1px 1px at 90px 40px, white, transparent),
        radial-gradient(1px 1px at 130px 80px, white, transparent),
        radial-gradient(1px 1px at 160px 30px, white, transparent),
        radial-gradient(1px 1px at 200px 120px, white, transparent),
        radial-gradient(1px 1px at 240px 60px, white, transparent),
        radial-gradient(1px 1px at 280px 100px, white, transparent),
        radial-gradient(1px 1px at 320px 40px, white, transparent),
        radial-gradient(1px 1px at 360px 140px, white, transparent),
        radial-gradient(1px 1px at 400px 80px, white, transparent),
        radial-gradient(1px 1px at 440px 120px, white, transparent),
        radial-gradient(1px 1px at 480px 60px, white, transparent),
        radial-gradient(1px 1px at 520px 100px, white, transparent),
        radial-gradient(1px 1px at 560px 40px, white, transparent),
        radial-gradient(1px 1px at 600px 140px, white, transparent),
        radial-gradient(1px 1px at 640px 80px, white, transparent),
        radial-gradient(1px 1px at 680px 120px, white, transparent),
        radial-gradient(1px 1px at 720px 60px, white, transparent),
        radial-gradient(1px 1px at 760px 100px, white, transparent),
        radial-gradient(1px 1px at 800px 40px, white, transparent),
        radial-gradient(1px 1px at 840px 140px, white, transparent),
        radial-gradient(1px 1px at 880px 80px, white, transparent),
        radial-gradient(1px 1px at 920px 120px, white, transparent),
        radial-gradient(1px 1px at 960px 60px, white, transparent),
        radial-gradient(1px 1px at 1000px 100px, white, transparent),
        radial-gradient(1px 1px at 1040px 40px, white, transparent),
        radial-gradient(1px 1px at 1080px 140px, white, transparent),
        radial-gradient(1px 1px at 1120px 80px, white, transparent),
        radial-gradient(1px 1px at 1160px 120px, white, transparent),
        radial-gradient(1px 1px at 1200px 60px, white, transparent),
        radial-gradient(1px 1px at 1240px 100px, white, transparent),
        radial-gradient(1px 1px at 1280px 40px, white, transparent),
        radial-gradient(1px 1px at 1320px 140px, white, transparent),
        radial-gradient(1px 1px at 1360px 80px, white, transparent),
        radial-gradient(1px 1px at 1400px 120px, white, transparent),
        radial-gradient(1px 1px at 1440px 60px, white, transparent),
        radial-gradient(1px 1px at 1480px 100px, white, transparent),
        radial-gradient(1px 1px at 1520px 40px, white, transparent),
        radial-gradient(1px 1px at 1560px 140px, white, transparent),
        radial-gradient(1px 1px at 1600px 80px, white, transparent),
        radial-gradient(1px 1px at 1640px 120px, white, transparent),
        radial-gradient(1px 1px at 1680px 60px, white, transparent),
        radial-gradient(1px 1px at 1720px 100px, white, transparent),
        radial-gradient(1px 1px at 1760px 40px, white, transparent),
        radial-gradient(1px 1px at 1800px 140px, white, transparent),
        radial-gradient(1px 1px at 1840px 80px, white, transparent),
        radial-gradient(1px 1px at 1880px 120px, white, transparent),
        radial-gradient(1px 1px at 1920px 60px, white, transparent);
    background-repeat: repeat;
    background-size: 200px 200px;
    animation: sparkle 3s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.8; }
}

/* Volume Control Widget */
.play-pause-container {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 10;
}

.play-pause-box {
    background: rgba(30, 32, 40, 0.72);
    border: 1.5px solid rgba(100,100,245,0.13);
    border-radius: 16px;
    padding: 0.7em 1.1em;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: width 0.3s ease;
    overflow: hidden;
    backdrop-filter: blur(2px);
    box-shadow: 0 2px 8px 0 rgba(0,0,0,0.18);
    min-width: 60px;
    max-width: 100%;
    box-sizing: border-box;
}

.play-pause-icon {
    font-size: 20px;
    color: white;
    filter: drop-shadow(0 0 4px rgba(255, 255, 255, 0.3));
}

.play-pause-box:hover {
    border-color: rgba(100,100,245,0.3);
    box-shadow: 0 4px 12px 0 rgba(0,0,0,0.25);
    transform: translateY(-1px);
}

.play-pause-box:hover .play-pause-icon {
    color: #6464f5;
    filter: drop-shadow(0 0 6px rgba(100, 100, 245, 0.5));
}

.volume-slider-container {
    display: none;
    align-items: center;
    margin-left: 12px;
    transition: width 0.3s ease;
    gap: 8px;
}

.volume-slider {
    width: 0;
    transition: width 0.3s ease;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}

.volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 12px;
    height: 12px;
    background: white;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.8);
    transition: box-shadow 0.2s ease;
}

.volume-slider::-webkit-slider-thumb:hover {
    box-shadow: 0 0 12px rgba(255, 255, 255, 1);
}

.volume-slider::-moz-range-thumb {
    width: 12px;
    height: 12px;
    background: white;
    border-radius: 50%;
    cursor: pointer;
    border: none;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.8);
}

.play-pause-box:hover .volume-slider-container {
    display: flex;
}

.play-pause-box:hover .volume-slider {
    width: 80px;
}

/* Question Mark Button (Top-Right) - Resized to match play button */
.question-mark-container {
    position: fixed;
    top: 20px;
    right: 40px;
    z-index: 10;
}

.question-mark-box {
    background: rgba(30, 32, 40, 0.72);
    border: 1.5px solid rgba(100,100,245,0.13);
    border-radius: 16px;
    padding: 0.7em 1.1em;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(2px);
    box-shadow: 0 2px 8px 0 rgba(0,0,0,0.18);
    min-width: 60px;
    max-width: 100%;
    box-sizing: border-box;
}

.question-mark-box:hover {
    border-color: rgba(100,100,245,0.3);
    box-shadow: 0 4px 12px 0 rgba(0,0,0,0.25);
    transform: translateY(-1px);
}

.question-mark-icon {
    font-size: 20px;
    color: white;
    filter: drop-shadow(0 0 4px rgba(255, 255, 255, 0.3));
    transition: all 0.3s ease;
}

.question-mark-box:hover .question-mark-icon {
    color: #6464f5;
    filter: drop-shadow(0 0 6px rgba(100, 100, 245, 0.5));
}

/* User Secret Button (Bottom-Right) - Resized to match play button */
.user-secret-container {
    position: fixed;
    bottom: 20px;
    right: 40px;
    z-index: 10;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    transform: translateY(20px);
}

.user-secret-container.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.user-secret-box {
    background: rgba(30, 32, 40, 0.72);
    border: 1.5px solid rgba(100,100,245,0.13);
    border-radius: 16px;
    padding: 0.7em 1.1em;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(2px);
    box-shadow: 0 2px 8px 0 rgba(0,0,0,0.18);
    min-width: 60px;
    max-width: 100%;
    box-sizing: border-box;
}

.user-secret-box:hover {
    border-color: rgba(100,100,245,0.3);
    box-shadow: 0 4px 12px 0 rgba(0,0,0,0.25);
    transform: translateY(-1px);
}

.user-secret-icon {
    font-size: 20px;
    color: white;
    filter: drop-shadow(0 0 4px rgba(255, 255, 255, 0.3));
    transition: all 0.3s ease;
}

.user-secret-box:hover .user-secret-icon {
    color: #6464f5;
    filter: drop-shadow(0 0 6px rgba(100, 100, 245, 0.5));
}

/* Main Profile Window */
.profile-window {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 18px;
    padding: 25px;
    width: 480px;
    height: 480px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    z-index: 10;
    transition: transform 0.1s ease-out;
    position: relative;
    transform-style: preserve-3d;
    perspective: 1000px;
    overflow: hidden;
    box-sizing: border-box;
}

/* Content elements that will tilt */
.user-profile,
.social-section,
.status-section,
.info-bar {
    transition: transform 0.2s ease-out;
    transform-style: preserve-3d;
    will-change: transform;
    position: relative;
}

/* User Profile Section */
.user-profile {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.profile-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.avatar-icon {
    position: relative;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
}

.discord-avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

/* Avatar pulse styles - let Discord status colors apply universally */
.avatar-pulse {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid #6464f5;
    animation: avatar-pulse 1.6s cubic-bezier(.4,0,.2,1) infinite;
    pointer-events: none;
    z-index: 1;
}

.avatar-pulse.status-online {
    border-color: #2ecc71;
    animation: avatar-pulse-green 1.6s cubic-bezier(.4,0,.2,1) infinite;
}

.avatar-pulse.status-idle {
    border-color: #f39c12;
    animation: avatar-pulse-orange 1.6s cubic-bezier(.4,0,.2,1) infinite;
}

.avatar-pulse.status-dnd {
    border-color: #e74c3c;
    animation: avatar-pulse-red 1.6s cubic-bezier(.4,0,.2,1) infinite;
}

.avatar-pulse.status-offline {
    border-color: #808080;
    animation: avatar-pulse-gray 1.6s cubic-bezier(.4,0,.2,1) infinite;
}

.profile-info {
    flex: 1;
}

.username {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
}

.name {
    color: white;
    font-size: 24px;
    font-weight: 700;
    font-family: 'Titillium Web', Arial, Helvetica, sans-serif;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
    letter-spacing: 1px;
}

.badges {
    display: flex;
    gap: 4px;
}

.badge {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    padding: 2px 6px;
    font-size: 10px;
    color: #00ff88;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    filter: drop-shadow(0 0 4px rgba(0, 255, 136, 0.5));
}

.badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 136, 0.3), transparent);
    animation: money-shine 2s ease-in-out infinite;
}

.badge i {
    font-size: 10px;
    color: #00ff88 !important;
    display: inline-block !important;
    position: relative;
    z-index: 1;
}

/* Money shine animation */
@keyframes money-shine {
    0% {
        left: -100%;
    }
    50% {
        left: 100%;
    }
    100% {
        left: 100%;
    }
}

/* Badge tooltip */
.badge::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 6px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.badge:hover::after {
    opacity: 1;
    visibility: visible;
    bottom: calc(100% + 5px);
}

.email, .join-date {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    font-family: 'Titillium Web', Arial, Helvetica, sans-serif;
    font-weight: 400;
    margin-bottom: 2px;
    text-shadow: 0 0 4px rgba(255, 255, 255, 0.3);
}

/* Status Section - Discord Style - REPLACED WITH NEW DISCORD WIDGET */
/* Old styles removed - see Discord Widget section above */

/* Pulse Animation for Status Indicator */
@keyframes pulse-animation {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.8;
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0.5;
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.8;
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

.pulse:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: inherit;
    border-radius: 50%;
    opacity: 0.6;
    transform: translate(-50%, -50%) scale(1);
    animation: pulse-animation 2s ease-in-out infinite;
    filter: blur(1px);
}

.pulse {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    width: 10px;
    height: 10px;
    margin: 0 8px;
    background: #ffdd40;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(255, 221, 64, 0.5);
    transition: all 0.3s ease;
}

.pulse.green {
    background: #2ecc71;
    box-shadow: 0 0 10px rgba(46, 204, 113, 0.5);
}

.pulse.red {
    background: #e74c3c;
    box-shadow: 0 0 10px rgba(231, 76, 60, 0.5);
}

.pulse.orange {
    background: #f39c12;
    box-shadow: 0 0 10px rgba(243, 156, 18, 0.5);
}

.pulse.gray {
    background: #95a5a6;
    box-shadow: 0 0 10px rgba(149, 165, 166, 0.5);
}

/* Social Media Section */
.social-section {
    margin-bottom: 20px;
}

.social-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.2em;
    flex-wrap: wrap;
    padding: 0.5em;
}

.link {
    position: relative;
    display: inline-block;
    transition: all 0.3s ease;
}

.link a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: white;
    font-size: 20px;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.link a i {
    font-size: 20px;
    color: white;
    transition: all 0.3s ease;
}

.link a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.link a:hover::before {
    left: 100%;
}

.link a:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.4);
}

/* Social Media Icon Colors */
.link a.fab.fa-youtube:hover {
    background: linear-gradient(135deg, #ff0000, #cc0000);
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.4);
}

.link a.fab.fa-soundcloud:hover {
    background: linear-gradient(135deg, #ff7700, #ff5500);
    box-shadow: 0 8px 25px rgba(255, 119, 0, 0.4);
}

.link a.fab.fa-twitter:hover {
    background: linear-gradient(135deg, #1da1f2, #0d8bd9);
    box-shadow: 0 8px 25px rgba(29, 161, 242, 0.4);
}

.link a.fab.fa-github:hover {
    background: linear-gradient(135deg, #333, #24292e);
    box-shadow: 0 8px 25px rgba(51, 51, 51, 0.4);
}

.link a.fab.fa-steam:hover {
    background: linear-gradient(135deg, #171a21, #2a475e);
    box-shadow: 0 8px 25px rgba(23, 26, 33, 0.4);
}

.link a.fab.fa-instagram:hover {
    background: linear-gradient(135deg, #e4405f, #c13584);
    box-shadow: 0 8px 25px rgba(228, 64, 95, 0.4);
}

/* Hover Effects */
.grow {
    transition: all 0.3s ease;
}

.grow:hover {
    transform: scale(1.1);
}

/* Overline Animation */
.hvr-overline-from-center {
    position: relative;
}

.hvr-overline-from-center::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.hvr-overline-from-center:hover::after {
    width: 100%;
}

/* Info Bar */
.info-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    height: 40px;
    min-height: 40px;
}

/* Location Info */
.location-info {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    text-shadow: 0 0 4px rgba(255, 255, 255, 0.3);
}

.location-icon {
    font-size: 16px;
    filter: drop-shadow(0 0 4px rgba(255, 255, 255, 0.5));
}

.location-icon i {
    font-size: 16px;
    color: white !important;
    display: inline-block !important;
}

.location-text {
    font-weight: 500;
    font-family: 'Titillium Web', Arial, Helvetica, sans-serif;
}



/* View Count */
.view-count {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    text-shadow: 0 0 4px rgba(255, 255, 255, 0.3);
    position: relative;
    cursor: pointer;
    height: 40px;
}

/* Custom Tooltip */
.view-count::before {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.view-count::after {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: rgba(0, 0, 0, 0.9);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.view-count:hover::before,
.view-count:hover::after {
    opacity: 1;
    visibility: visible;
    bottom: calc(100% + 5px);
}

/* Song Info */
.song-info {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    text-shadow: 0 0 4px rgba(255, 255, 255, 0.3);
    max-width: 300px;
    overflow: hidden;
    flex-wrap: nowrap;
    white-space: nowrap;
    height: 40px;
}

.song-icon {
    font-size: 16px;
    flex-shrink: 0;
    white-space: nowrap;
}

.song-icon i {
    font-size: 16px;
    color: white !important;
    display: inline-block !important;
}

.song-name {
    font-weight: 500;
    font-family: 'Titillium Web', Arial, Helvetica, sans-serif;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 180px;
    text-decoration: underline;
    color: #ffffff;
    background: url(https://i.imgur.com/hSQW3ZC.gif);
    text-shadow: 0px 4px 5px #000;
    flex-shrink: 1;
}

.song-link {
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    background: url(https://i.imgur.com/hSQW3ZC.gif);
    text-shadow: 0px 4px 5px #000;
}

.song-link:hover {
    color: #6bffc4;
    text-shadow: 0 0 8px rgba(107, 255, 151, 0.5);
    transform: scale(1.05);
}

.eye-icon {
    font-size: 16px;
    filter: drop-shadow(0 0 4px rgba(255, 255, 255, 0.5));
}

.eye-icon i {
    font-size: 16px;
    color: white !important;
    display: inline-block !important;
}

/* Debug styles for FontAwesome icons */
.fa, .fas, .fab {
    display: inline-block !important;
    font-style: normal !important;
    font-variant: normal !important;
    text-rendering: auto !important;
    -webkit-font-smoothing: antialiased !important;
}

/* Ensure all icons are visible */
.volume-icon i,
.avatar-icon i,
.badge i,
.eye-icon i,
.link a,
.join-button i {
    color: white !important;
    display: inline-block !important;
    font-size: inherit !important;
}

/* Specific styles for social media icons */
.social-icons .link a {
    color: white !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 20px !important;
    text-decoration: none !important;
}

/* Ensure FontAwesome brand icons are visible */
.fab {
    display: inline-block !important;
    font-style: normal !important;
    font-variant: normal !important;
    text-rendering: auto !important;
    -webkit-font-smoothing: antialiased !important;
}

/* Hide fallback emojis when FontAwesome is working */
.fab:before {
    content: attr(data-icon);
}

/* Show fallback emojis only when FontAwesome fails */
.fab:not([class*="fa-"]:before) {
    content: "";
}

.count {
    font-weight: 600;
    font-family: 'Titillium Web', Arial, Helvetica, sans-serif;
}

/* Responsive Design */
@media (max-width: 600px) {
    .profile-window {
        width: 90%;
        height: 60vh;
        padding: 18px;
        max-width: 380px;
        max-height: 480px;
        min-height: 400px;
        border-radius: 16px;
    }
    
    .volume-widget {
        top: 10px;
        left: 10px;
        padding: 8px 12px;
    }
    
    .name {
        font-size: 20px;
    }
    
    .discord-widget {
        margin: 15px 0;
    }
    
    .discord-content {
        padding: 16px;
        gap: 16px;
    }
    
    .discord-status-avatar {
        width: 48px;
        height: 48px;
    }
    
    .discord-display-name {
        font-size: 16px;
    }
    
    .discord-username-tag {
        font-size: 12px;
    }
    
    .discord-status-text {
        font-size: 11px;
    }
    
    .discord-actions {
        padding: 0 16px 12px 16px;
    }
    
    .discord-add-friend-btn {
        padding: 8px 16px;
        font-size: 11px;
        min-width: 100px;
    }
}

/* Typewriter Animation */
.typing-demo {
    white-space: nowrap;
    overflow: visible;
    border-right: 3px solid rgba(255, 255, 255, 0.7);
    font-family: 'Titillium Web', Arial, Helvetica, sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    animation: blink .5s step-end infinite alternate;
    min-height: 20px;
    display: inline-block;
}

@keyframes blink {
    50% {
        border-color: transparent
    }
}



/* Fixed container for typewriter */
.join-date {
    height: 20px;
    min-height: 20px;
    max-height: 20px;
    display: flex;
    align-items: center;
    overflow: visible;
}

/* Gradient animation for song text */
@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* About Me Content Styles */
.about-content {
    display: none;
}

.about-content.active {
    display: block;
}

.default-content.hidden {
    display: none;
}

/* Extra About Me Content Styles */
.extra-about-content {
    display: none;
}

.extra-about-content.active {
    display: block;
}

/* About section spacing adjustments */
.about-section {
    margin-bottom: 12px;
    padding: 8px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.about-section:first-of-type {
    margin-top: 12px;
}

.about-section:last-of-type {
    margin-bottom: 12px;
}

.about-section h3 {
    color: white;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 4px;
    font-family: 'Titillium Web', Arial, Helvetica, sans-serif;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
}

.about-section p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 12px;
    line-height: 1.3;
    font-family: 'Titillium Web', Arial, Helvetica, sans-serif;
    text-shadow: 0 0 4px rgba(255, 255, 255, 0.3);
    margin-bottom: 0;
}

.skills-list {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin-top: 4px;
}

.skill-tag {
    background: rgba(100, 100, 245, 0.2);
    color: #6464f5;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 500;
    border: 1px solid rgba(100, 100, 245, 0.3);
    text-shadow: none;
}

/* Info Bar Styles */
.about-info-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    height: 40px;
    min-height: 40px;
}

/* Contact Info */
.contact-info {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    text-shadow: 0 0 4px rgba(255, 255, 255, 0.3);
    height: 40px;
}

.contact-icon {
    font-size: 16px;
    filter: drop-shadow(0 0 4px rgba(255, 255, 255, 0.5));
}

.contact-icon i {
    font-size: 16px;
    color: white !important;
    display: inline-block !important;
}

/* Experience Info */
.experience-info {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    text-shadow: 0 0 4px rgba(255, 255, 255, 0.3);
    height: 40px;
}

.experience-icon {
    font-size: 16px;
    filter: drop-shadow(0 0 4px rgba(255, 255, 255, 0.5));
}

.experience-icon i {
    font-size: 16px;
    color: white !important;
    display: inline-block !important;
}

/* Smooth transition animations */
.profile-window * {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.fade-out {
    opacity: 0;
    transform: translateY(-10px);
}

.fade-in {
    opacity: 1;
    transform: translateY(0);
}

.discord-username-row {
    display: flex;
    align-items: center;
    margin-top: 2px;
}

.discord-username-text {
    font-size: 0.75em;
    font-family: 'Titillium Web', Arial, Helvetica, sans-serif;
    font-weight: 400;
    color: #b0b0c0;
    text-shadow: 0 0 4px rgba(255, 255, 255, 0.2);
}

/* TeamSpeak Server Styles */
.teamspeak-info {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 6px;
}

.teamspeak-avatar {
    position: relative;
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.teamspeak-logo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.teamspeak-pulse {
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 12px;
    height: 12px;
    border: 2px solid rgba(30, 32, 40, 0.8);
    border-radius: 50%;
}

.teamspeak-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.teamspeak-name {
    font-weight: 600;
    font-size: 13px;
    color: white;
    font-family: 'Titillium Web', Arial, Helvetica, sans-serif;
}

.teamspeak-status {
    display: flex;
    align-items: center;
    gap: 4px;
}

.location-icon {
    font-size: 10px;
    color: #6464f5;
    filter: drop-shadow(0 0 4px rgba(100, 100, 245, 0.5));
}

.status-text {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.bosnia-flag {
    width: 14px;
    height: 10px;
    object-fit: cover;
    border-radius: 2px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.status-indicator {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #2ecc71;
    box-shadow: 0 0 6px rgba(46, 204, 113, 0.5);
}

.teamspeak-address {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Courier New', monospace;
    background: rgba(255, 255, 255, 0.1);
    padding: 1px 4px;
    border-radius: 3px;
    display: inline-block;
    width: fit-content;
}

.teamspeak-connect-btn {
    background: linear-gradient(135deg, #0099ff 0%, #0077cc 100%);
    color: white;
    border: none;
    border-radius: 5px;
    padding: 6px 10px;
    font-size: 10px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(0, 153, 255, 0.3);
    flex-shrink: 0;
}

.teamspeak-connect-btn:hover {
    background: linear-gradient(135deg, #0077cc 0%, #0055aa 100%);
    box-shadow: 0 4px 12px rgba(0, 153, 255, 0.4);
    transform: translateY(-1px);
}

.teamspeak-connect-btn i {
    font-size: 10px;
}

/* Discord Widget - Redesigned */
.discord-widget {
    background: rgba(30, 32, 40, 0.85);
    border: 1.5px solid rgba(88, 101, 242, 0.2);
    border-radius: 18px;
    padding: 0;
    margin: 20px 0;
    backdrop-filter: blur(12px);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(88, 101, 242, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.discord-widget::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(88, 101, 242, 0.4) 20%, 
        rgba(88, 101, 242, 0.8) 50%, 
        rgba(88, 101, 242, 0.4) 80%, 
        transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.discord-widget:hover {
    border-color: rgba(88, 101, 242, 0.4);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(88, 101, 242, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.discord-widget:hover::before {
    opacity: 1;
}

.discord-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 18px;
    padding: 18px;
    position: relative;
}

.discord-avatar-container {
    position: relative;
    flex-shrink: 0;
}

.discord-status-avatar {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid transparent;
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.3),
        0 0 0 2px rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
}

.discord-status-avatar.status-online {
    border-color: #2ecc71;
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.3),
        0 0 0 2px #2ecc71,
        0 0 12px rgba(46, 204, 113, 0.4);
}

.discord-status-avatar.status-idle {
    border-color: #f39c12;
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.3),
        0 0 0 2px #f39c12,
        0 0 12px rgba(243, 156, 18, 0.4);
}

.discord-status-avatar.status-dnd {
    border-color: #e74c3c;
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.3),
        0 0 0 2px #e74c3c,
        0 0 12px rgba(231, 76, 60, 0.4);
}

.discord-status-avatar.status-offline {
    border-color: #808080;
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.3),
        0 0 0 2px #808080,
        0 0 12px rgba(128, 128, 128, 0.4);
}

.status-indicator {
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 3px solid rgba(30, 32, 40, 0.9);
    background: #2ecc71;
    box-shadow: 0 0 8px rgba(46, 204, 113, 0.6);
    transition: all 0.3s ease;
}

.status-indicator.idle {
    background: #f39c12;
    box-shadow: 0 0 8px rgba(243, 156, 18, 0.6);
}

.status-indicator.dnd {
    background: #e74c3c;
    box-shadow: 0 0 8px rgba(231, 76, 60, 0.6);
}

.status-indicator.offline {
    background: #808080;
    box-shadow: 0 0 8px rgba(128, 128, 128, 0.6);
}

.discord-user-info {
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-width: 0;
}

.discord-display-name {
    font-family: 'Titillium Web', Arial, Helvetica, sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: white;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.4);
    letter-spacing: 0.3px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.2;
}

.discord-username-tag {
    font-family: 'Titillium Web', Arial, Helvetica, sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
    text-shadow: 0 0 4px rgba(255, 255, 255, 0.2);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.2;
}

.discord-status-text {
    font-family: 'Titillium Web', Arial, Helvetica, sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: #2ecc71;
    text-shadow: 0 0 6px rgba(46, 204, 113, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 2px;
    line-height: 1.2;
}

.discord-status-text.idle {
    color: #f39c12;
    text-shadow: 0 0 6px rgba(243, 156, 18, 0.4);
}

.discord-status-text.dnd {
    color: #e74c3c;
    text-shadow: 0 0 6px rgba(231, 76, 60, 0.4);
}

.discord-status-text.offline {
    color: #808080;
    text-shadow: 0 0 6px rgba(128, 128, 128, 0.4);
}

.discord-actions {
    padding: 0 18px 10px 18px;
    display: flex;
    justify-content: center;
}

.discord-add-friend-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: linear-gradient(135deg, #5865f2 0%, #4752c4 100%);
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-family: 'Titillium Web', Arial, Helvetica, sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
    box-shadow: 
        0 4px 12px rgba(88, 101, 242, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    min-width: 110px;
    justify-content: center;
}

.discord-add-friend-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.discord-add-friend-btn:hover {
    background: linear-gradient(135deg, #4752c4 0%, #3c45a5 100%);
    box-shadow: 
        0 6px 16px rgba(88, 101, 242, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.discord-add-friend-btn:hover::before {
    left: 100%;
}

.discord-add-friend-btn:active {
    transform: translateY(0);
    box-shadow: 
        0 2px 8px rgba(88, 101, 242, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.discord-add-friend-btn i {
    font-size: 12px;
    color: white !important;
    filter: drop-shadow(0 0 4px rgba(255, 255, 255, 0.3));
}

.discord-add-friend-btn span {
    color: white;
    text-shadow: 0 0 4px rgba(255, 255, 255, 0.3);
}

/* Responsive Design for Discord Widget */
@media (max-width: 600px) {
    .discord-widget {
        margin-bottom: 15px;
    }
    
    .discord-content {
        padding: 16px;
        gap: 16px;
    }
    
    .discord-status-avatar {
        width: 48px;
        height: 48px;
    }
    
    .discord-display-name {
        font-size: 16px;
    }
    
    .discord-username-tag {
        font-size: 12px;
    }
    
    .discord-status-text {
        font-size: 11px;
    }
    
    .discord-actions {
        padding: 0 16px 12px 16px;
    }
    
    .discord-add-friend-btn {
        padding: 8px 16px;
        font-size: 11px;
        min-width: 100px;
    }
}

/* Content sections styling for consistent height */
.default-content,
.about-content,
.extra-about-content {
    height: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

.default-content.hidden,
.about-content:not(.active),
.extra-about-content:not(.active) {
    display: none;
}

.about-content.active,
.extra-about-content.active {
    display: flex;
    flex-direction: column;
}

/* About and Extra About Content Specific Styling */
.about-content .user-profile,
.extra-about-content .user-profile {
    margin-bottom: 12px;
    padding-bottom: 15px;
}

.about-content .profile-avatar,
.extra-about-content .profile-avatar {
    width: 70px !important;
    height: 70px !important;
}

.about-content .avatar-icon,
.extra-about-content .avatar-icon {
    width: 70px !important;
    height: 70px !important;
}

.about-content .discord-avatar-img,
.extra-about-content .discord-avatar-img {
    width: 100% !important;
    height: 100% !important;
}

.about-content .name,
.extra-about-content .name {
    font-size: 20px;
}

.about-content .email,
.extra-about-content .email {
    font-size: 13px;
}

.about-content .join-date,
.extra-about-content .join-date {
    font-size: 13px;
}

/* Ensure equal spacing from info bar */
.about-content .about-info-bar,
.extra-about-content .about-info-bar {
    margin-top: auto;
}


 