﻿

body,
#app {
    background-color: #0a0a0a !important;
}

.profile-page {
    min-height: 100vh !important;
    background-color: transparent !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 2rem !important;
    position: relative !important;
    overflow: hidden !important;
    transition: filter 0.3s ease !important;
}

.profile-background-color {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    z-index: 0 !important;
    pointer-events: none !important;
    
}

.profile-background-video,
.profile-background-image {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    min-width: 100% !important;
    min-height: 100% !important;
    max-width: none !important;
    max-height: none !important;
    -o-object-fit: cover !important;
    object-fit: cover !important;
    -o-object-position: center !important;
    object-position: center !important;
    z-index: 0 !important;
    pointer-events: none !important;
    user-select: none !important;
    -webkit-user-select: none !important;
    -moz-user-select: none !important;
    -ms-user-select: none !important;
    -webkit-transform: translateZ(0) !important;
    transform: translateZ(0) !important;
    backface-visibility: hidden !important;
    will-change: transform !important;
}

.profile-background-video::-webkit-media-controls {
    display: none !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.profile-background-video::-webkit-media-controls-enclosure {
    display: none !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.profile-background-video::-webkit-media-controls-panel {
    display: none !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.profile-background-video::-webkit-media-controls-play-button {
    display: none !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.profile-background-video::-webkit-media-controls-start-playback-button {
    display: none !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.profile-background-video::-webkit-media-controls-timeline {
    display: none !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.profile-background-video::-webkit-media-controls-current-time-display {
    display: none !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.profile-background-video::-webkit-media-controls-time-remaining-display {
    display: none !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.profile-background-video::-webkit-media-controls-mute-button {
    display: none !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.profile-background-video::-webkit-media-controls-volume-slider {
    display: none !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.profile-background-video::-webkit-media-controls-fullscreen-button {
    display: none !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.profile-background-video::-moz-media-controls {
    display: none !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.profile-background-video::-ms-media-controls {
    display: none !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.profile-background-image {
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}

.profile-container {
    position: relative !important;
    z-index: 1 !important;
    width: 100% !important;
    max-width: 600px !important;
    display: flex !important;
    justify-content: center !important;
    align-items: flex-start !important;
    padding-top: 2rem !important;
    margin: 0 auto !important;
    transition: filter 0.3s ease !important;
}

.profile-card {
    width: 100% !important;
    background: rgba(0, 0, 0, 0.3) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 12px !important;
    padding: 1.2rem !important;
    text-align: center !important;
    min-height: auto !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    box-sizing: border-box !important;
    overflow-wrap: break-word !important;
    word-wrap: break-word !important;
    overflow: hidden !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
    opacity: 1 !important;
}

.profile-card .profile-username,
.profile-card .profile-badges,
.profile-card .profile-badge {
    overflow: visible !important;
}

.profile-card.has-3d-tilt {
    transform-style: preserve-3d !important;
    transform: perspective(1000px) rotateX(0deg) rotateY(0deg) scale3d(1, 1, 1) !important;
    transition: transform 0.1s ease-out !important;
}

.profile-container.entering .profile-card {
    animation: cardEnter 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.1s both !important;
}

@keyframes cardEnter {
    0% {
        transform: translateY(40px) scale(0.85) rotateX(10deg);
        filter: blur(20px);
    }
    50% {
        transform: translateY(-5px) scale(1.02) rotateX(-2deg);
    }
    100% {
        transform: translateY(0) scale(1) rotateX(0deg);
        
    }
}

.profile-avatar {
    margin-top: 0 !important;
    display: flex !important;
    justify-content: center !important;
    width: 100% !important;
}

.avatar-wrapper {
    position: relative !important;
    display: inline-block !important;
}

.avatar-circle {
    width: 90px !important;
    height: 90px !important;
    border-radius: 50% !important;
    background: #1a1a1a !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 2px solid rgba(255, 255, 255, 0.1) !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3) !important;
    overflow: hidden !important;
    position: relative !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}

.avatar-circle.has-border {
    border: 3px solid #ffffff !important;
}

.avatar-wrapper {
    position: relative !important;
    display: inline-block !important;
}

.avatar-decoration {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    width: 100px !important;
    height: 100px !important;
    object-fit: contain !important;
    pointer-events: none !important;
    z-index: 0 !important;
    image-rendering: auto !important;
    -webkit-image-rendering: auto !important;
    will-change: auto !important;
    backface-visibility: visible !important;
    -webkit-backface-visibility: visible !important;
}

.profile-container.entering .avatar-circle {
    animation: avatarEnter 1.1s cubic-bezier(0.34, 1.56, 0.64, 1) 0.3s both !important;
}

@keyframes avatarEnter {
    0% {
        opacity: 0;
        transform: scale(0) rotate(-360deg);
        filter: blur(10px);
    }
    50% {
        transform: scale(1.15) rotate(10deg);
        filter: blur(2px);
    }
    70% {
        transform: scale(0.95) rotate(-5deg);
    }
    100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
        filter: blur(0);
    }
}

.avatar-circle img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    border-radius: 50% !important;
    aspect-ratio: 1 / 1 !important;
}

.avatar-letter {
    font-size: 3.5rem !important;
    font-weight: 600 !important;
    color: var(--text-primary) !important;
    text-transform: uppercase !important;
    line-height: 1 !important;
    letter-spacing: 0.5px !important;
}

.profile-username {
    font-size: 1.5rem !important;
    font-weight: 500 !important;
    color: var(--text-primary) !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    letter-spacing: 0.3px !important;
    width: 100% !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    word-break: break-word !important;
    box-sizing: border-box !important;
    padding: 0 0.5rem !important;
    display: flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    flex-wrap: wrap !important;
    overflow: visible !important;
}

.profile-name-text {
    display: inline-block;
}

.profile-badges {
    display: inline-flex;
    align-items: center;
    gap: 5.5px;
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 25px;
    padding: 6px 10px;
    border: 2px solid rgba(255, 255, 255, 0.04);
    overflow: visible !important;
}

/* Tek badge olduğunda arka plan, border ve box-shadow kaldır */
.profile-badges:has(.profile-badge:only-child) {
    background-color: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
    box-shadow: none !important;
}

.profile-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer !important;
    pointer-events: auto !important;
    overflow: visible !important;
}

.profile-badge-tooltip {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 8px;
    padding: 6px 12px;
    background-color: rgba(0, 0, 0, 0.9);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 500;
    white-space: nowrap;
    border-radius: 6px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
    transform: translateX(-50%) translateY(-4px);
    z-index: 10000 !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.profile-badge:hover .profile-badge-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.profile-badge-tooltip::after {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: 5px solid rgba(0, 0, 0, 0.9);
}

.profile-badge-icon {
    width: 24px;
    height: 24px;
    display: block;
    -o-object-fit: contain;
    object-fit: contain;
    filter: brightness(0) invert(1) drop-shadow(#ffffff 0 0 2.5px) !important;
    cursor: pointer !important;
    pointer-events: auto !important;
}

img.profile-badge-icon[src*="verified.svg"],
img[src*="verified.svg"].profile-badge-icon,
.profile-badge img.profile-badge-icon[src*="verified.svg"],
.profile-badge img[src*="verified.svg"].profile-badge-icon,
.profile-badge img[src*="verified.svg"],
.profile-badges img.profile-badge-icon[src*="verified.svg"],
.profile-badges img[src*="verified.svg"].profile-badge-icon,
.profile-badges img[src*="verified.svg"],
.profile-badges .profile-badge img.profile-badge-icon[src*="verified.svg"],
.profile-badges .profile-badge img[src*="verified.svg"].profile-badge-icon,
.profile-badges .profile-badge img[src*="verified.svg"],
.profile-badge .profile-badge-icon[src*="verified.svg"] {
 
}

img.profile-badge-icon[src*="early.svg"],
img[src*="early.svg"].profile-badge-icon,
img[src*="early.svg"],
.profile-badge img.profile-badge-icon[src*="early.svg"],
.profile-badge img[src*="early.svg"].profile-badge-icon,
.profile-badge img[src*="early.svg"],
.profile-badges img.profile-badge-icon[src*="early.svg"],
.profile-badges img[src*="early.svg"].profile-badge-icon,
.profile-badges img[src*="early.svg"],
.profile-badges .profile-badge img.profile-badge-icon[src*="early.svg"],
.profile-badges .profile-badge img[src*="early.svg"].profile-badge-icon,
.profile-badges .profile-badge img[src*="early.svg"],
.profile-badge .profile-badge-icon[src*="early.svg"],
.profile-username img[src*="early.svg"],
.profile-username .profile-badge-icon[src*="early.svg"],
.profile-username img.profile-badge-icon[src*="early.svg"] {
    filter: brightness(0) invert(1) drop-shadow(#ffffff 0 0 2.5px) !important;
    -webkit-filter: brightness(0) invert(1) drop-shadow(#ffffff 0 0 2.5px) !important;
    -moz-filter: brightness(0) invert(1) drop-shadow(#ffffff 0 0 2.5px) !important;
    -ms-filter: brightness(0) invert(1) drop-shadow(#ffffff 0 0 2.5px) !important;
    -o-filter: brightness(0) invert(1) drop-shadow(#ffffff 0 0 2.5px) !important;
}

.profile-badge-icon[src*="premium.svg"] {
    object-position: center;
    transform: translateY(0);
}

img.profile-badge-icon[src*="booster.svg"],
img[src*="booster.svg"].profile-badge-icon,
img[src*="booster.svg"],
.profile-badge img.profile-badge-icon[src*="booster.svg"],
.profile-badge img[src*="booster.svg"].profile-badge-icon,
.profile-badge img[src*="booster.svg"],
.profile-badges img.profile-badge-icon[src*="booster.svg"],
.profile-badges img[src*="booster.svg"].profile-badge-icon,
.profile-badges img[src*="booster.svg"],
.profile-badges .profile-badge img.profile-badge-icon[src*="booster.svg"],
.profile-badges .profile-badge img[src*="booster.svg"].profile-badge-icon,
.profile-badges .profile-badge img[src*="booster.svg"],
.profile-badge .profile-badge-icon[src*="booster.svg"],
.profile-username img[src*="booster.svg"],
.profile-username .profile-badge-icon[src*="booster.svg"],
.profile-username img.profile-badge-icon[src*="booster.svg"] {
    filter: brightness(0) invert(1) drop-shadow(#ffffff 0 0 2.5px) !important;
    -webkit-filter: brightness(0) invert(1) drop-shadow(#ffffff 0 0 2.5px) !important;
    -moz-filter: brightness(0) invert(1) drop-shadow(#ffffff 0 0 2.5px) !important;
    -ms-filter: brightness(0) invert(1) drop-shadow(#ffffff 0 0 2.5px) !important;
    -o-filter: brightness(0) invert(1) drop-shadow(#ffffff 0 0 2.5px) !important;
}

.profile-container.entering .profile-username {
    animation: fadeInUpSmooth 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.5s both !important;
}

.profile-bio {
    margin-top: 0.75rem !important;
    padding-top: 0 !important;
    border-top: none !important;
    color: var(--text-secondary) !important;
    
    line-height: 1.6 !important;
    text-align: center !important;
    width: 100% !important;
    max-width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    word-break: break-word !important;
    box-sizing: border-box !important;
    padding: 0 0.5rem !important;
}

.profile-container.entering .profile-bio {
    animation: fadeInUpSmooth 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.65s both !important;
}

@keyframes fadeInUpSmooth {
    0% {
        opacity: 0;
        transform: translateY(25px) scale(0.95);
        filter: blur(5px);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

.profile-audio-player {
    margin-top: 1.5rem !important;
    padding-top: 1.5rem !important;
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
    width: 100% !important;
}

.profile-container.entering .profile-audio-player {
    animation: fadeInUpSmooth 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.8s both !important;
}

.audio-controls {
    display: flex !important;
    align-items: center !important;
    gap: 0.75rem !important;
    width: 100% !important;
}

.audio-play-btn,
.audio-pause-btn,
.audio-toggle-btn {
    width: 48px !important;
    height: 48px !important;
    border-radius: 50% !important;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.05) 100%) !important;
    border: 2px solid rgba(255, 255, 255, 0.2) !important;
    color: var(--text-primary) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    flex-shrink: 0 !important;
    padding: 0 !important;
    position: relative !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
}

.audio-play-btn:hover,
.audio-pause-btn:hover,
.audio-toggle-btn:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.1) 100%) !important;
    border-color: rgba(255, 255, 255, 0.35) !important;
    transform: scale(1.05) !important;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.15) !important;
}

.audio-play-btn:active,
.audio-pause-btn:active,
.audio-toggle-btn:active {
    transform: scale(0.95) !important;
}

.audio-toggle-btn {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    position: relative !important;
}

.audio-toggle-btn svg {
    position: absolute !important;
    width: 22px !important;
    height: 22px !important;
    stroke-width: 2.5 !important;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2)) !important;
}

.audio-play-icon {
    display: block;
}

.audio-pause-icon {
    display: none;
}

.audio-progress-container {
    flex: 1 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 0.5rem !important;
    min-width: 0 !important;
}

.audio-progress-wrapper {
    position: relative !important;
    width: 100% !important;
    height: 2px !important;
    overflow: visible !important;
}

.audio-progress {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 2px !important;
    background: transparent !important;
    border-radius: 1px !important;
    outline: none !important;
    cursor: default !important;
    pointer-events: none !important;
    -webkit-appearance: none !important;
    appearance: none !important;
    margin: 0 !important;
    padding: 0 !important;
    z-index: 0 !important;
    opacity: 0 !important;
}

.audio-progress::-webkit-slider-thumb {
    -webkit-appearance: none !important;
    appearance: none !important;
    width: 0 !important;
    height: 0 !important;
    background: transparent !important;
    border: none !important;
    cursor: default !important;
    pointer-events: none !important;
    box-shadow: none !important;
}

.audio-progress::-moz-range-thumb {
    width: 0 !important;
    height: 0 !important;
    background: transparent !important;
    border: none !important;
    cursor: default !important;
    pointer-events: none !important;
    box-shadow: none !important;
}

.audio-progress::-webkit-slider-runnable-track {
    height: 2px !important;
    background: transparent !important;
    border-radius: 1px !important;
}

.audio-progress::-moz-range-track {
    height: 2px !important;
    background: transparent !important;
    border-radius: 1px !important;
}

.audio-progress-fill {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    height: 2px !important;
    background: #ffffff !important;
    border-radius: 1px !important;
    width: 0% !important;
    z-index: 10 !important;
    pointer-events: none !important;
    will-change: width !important;
    display: block !important;
    min-width: 0 !important;
    overflow: visible !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.audio-progress-wrapper::after {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 2px !important;
    background: rgba(255, 255, 255, 0.15) !important;
    border-radius: 1px !important;
    z-index: 0 !important;
    pointer-events: none !important;
}

.audio-time {
    display: flex !important;
    justify-content: space-between !important;
    font-size: 0.75rem !important;
    color: rgba(255, 255, 255, 0.6) !important;
    font-weight: 400 !important;
    line-height: 1 !important;
    margin-top: 0.25rem !important;
}

.profile-entry-overlay {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    z-index: 99999 !important;
    background: rgba(0, 0, 0, 0.3) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    cursor: pointer !important;
    transition: opacity 0.8s ease, visibility 0.8s ease !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.profile-entry-overlay.hidden {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
}

.profile-entry-text {
    position: fixed !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    z-index: 100000 !important;
    font-size: 1.6rem !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    text-transform: uppercase !important;
    letter-spacing: 3px !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5) !important;
    animation: pulse 2s ease-in-out infinite !important;
    pointer-events: auto !important;
    text-align: center !important;
    transition: opacity 0.8s ease, visibility 0.8s ease !important;
    opacity: 1 !important;
    visibility: visible !important;
    white-space: nowrap !important;
    cursor: pointer !important;
}

.profile-entry-overlay.hidden ~ .profile-entry-text {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.6;
    }
}

.profile-page.overlay-active {
    filter: blur(20px) !important;
    transition: filter 0.8s ease !important;
}

.profile-page.overlay-active .profile-container {
    filter: blur(20px) !important;
    transition: filter 0.8s ease !important;
    opacity: 0 !important;
    transform: scale(0.8) translateY(-30px) !important;
    transition: opacity 0s ease, transform 0s ease, filter 0.8s ease !important;
}

.profile-container {
    transition: opacity 1s cubic-bezier(0.34, 1.56, 0.64, 1), 
                transform 1s cubic-bezier(0.34, 1.56, 0.64, 1),
                filter 0.8s ease !important;
    opacity: 1 !important;
    transform: scale(1) translateY(0) !important;
}

.profile-container.entering {
    animation: profileEnter 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards !important;
}

.profile-container.entering .profile-social-links {
    animation: fadeInUpSmooth 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.9s both !important;
}

.profile-container.entering .profile-modules {
    animation: fadeInUpSmooth 0.9s cubic-bezier(0.16, 1, 0.3, 1) 1.1s both !important;
}

.profile-container.entering .profile-module {
    animation: fadeInUpSmooth 0.7s cubic-bezier(0.16, 1, 0.3, 1) both !important;
}

.profile-container.entering .profile-module:nth-child(1) {
    animation-delay: 1.15s !important;
}

.profile-container.entering .profile-module:nth-child(2) {
    animation-delay: 1.2s !important;
}

.profile-container.entering .profile-module:nth-child(3) {
    animation-delay: 1.25s !important;
}

.profile-container.entering .profile-social-link {
    animation: socialLinkEnter 0.6s cubic-bezier(0.16, 1, 0.3, 1) both !important;
}

.profile-container.entering .profile-social-link:nth-child(1) {
    animation-delay: 0.95s !important;
}

.profile-container.entering .profile-social-link:nth-child(2) {
    animation-delay: 1.0s !important;
}

.profile-container.entering .profile-social-link:nth-child(3) {
    animation-delay: 1.05s !important;
}

.profile-container.entering .profile-social-link:nth-child(4) {
    animation-delay: 1.1s !important;
}

.profile-container.entering .profile-social-link:nth-child(5) {
    animation-delay: 1.15s !important;
}

.profile-container.entering .profile-social-link:nth-child(6) {
    animation-delay: 1.2s !important;
}

.profile-container.entering .profile-social-link:nth-child(7) {
    animation-delay: 1.25s !important;
}

.profile-container.entering .profile-social-link:nth-child(8) {
    animation-delay: 1.3s !important;
}

.profile-container.entering .profile-social-link:nth-child(n+9) {
    animation-delay: 1.35s !important;
}

.profile-container.entering .profile-content-float .profile-username,
.profile-container.entering .profile-info-aside .profile-username {
    animation: fadeInUpSmooth 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.5s both !important;
}

.profile-container.entering .profile-content-float .profile-bio,
.profile-container.entering .profile-info-aside .profile-bio {
    animation: fadeInUpSmooth 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.65s both !important;
}

.profile-container.entering .profile-avatar-float,
.profile-container.entering .profile-avatar-aside {
    animation: avatarEnter 1.1s cubic-bezier(0.34, 1.56, 0.64, 1) 0.3s both !important;
}

@keyframes socialLinkEnter {
    0% {
        opacity: 0;
        transform: translateY(15px) scale(0.8) rotate(-10deg);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1) rotate(0deg);
    }
}

@keyframes profileEnter {
    0% {
        opacity: 0;
        transform: scale(0.85) translateY(-40px);
        filter: blur(10px);
    }
    60% {
        opacity: 0.9;
        transform: scale(1.02) translateY(5px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
        filter: blur(0);
    }
}

.volume-control {
    position: fixed !important;
    top: 20px !important;
    left: 20px !important;
    z-index: 10000 !important;
    display: flex !important;
    align-items: center !important;
    background: rgba(0, 0, 0, 0.7) !important;
    padding: 8px 12px !important;
    border-radius: 25px !important;
    backdrop-filter: blur(10px) !important;
    margin: 0 !important;
    height: auto !important;
    cursor: pointer !important;
    pointer-events: auto !important;
}

.volume-control * {
    pointer-events: auto !important;
    cursor: pointer !important;
}

.volume-toggle-btn {
    background: none !important;
    border: none !important;
    color: #fff !important;
    cursor: pointer !important;
    padding: 4px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: opacity 0.2s !important;
    margin: 0 !important;
    width: 28px !important;
    height: 28px !important;
    flex-shrink: 0 !important;
    pointer-events: auto !important;
    position: relative !important;
    z-index: 1 !important;
}

.volume-toggle-btn:hover {
    opacity: 0.7;
}

.volume-toggle-btn svg {
    width: 20px;
    height: 20px;
}

.volume-slider-container {
    /* Always keep flex for proper vertical centering; reveal on hover via width/opacity */
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 0;
    margin: 0 !important;
    padding: 0 !important;
    height: 28px !important;
    flex-shrink: 0 !important;
    pointer-events: none !important;
    position: relative !important;
    z-index: 1 !important;
    overflow: hidden !important;
    opacity: 0 !important;
    transition: width 0.2s ease, opacity 0.2s ease !important;
}

.volume-control:hover .volume-slider-container {
    width: 100px;
    opacity: 1 !important;
    pointer-events: auto !important;
}

.volume-slider {
    width: 100% !important;
    height: 4px !important;
    background: rgba(255, 255, 255, 0.3) !important;
    border-radius: 2px !important;
    outline: none !important;
    -webkit-appearance: none !important;
    appearance: none !important;
    margin: 0 !important;
    padding: 0 !important;
    align-self: center !important;
    cursor: pointer !important;
    pointer-events: auto !important;
}

.volume-bar {
    position: relative !important;
    width: 100% !important;
    height: 8px !important;
    border-radius: 999px !important;
    background: transparent !important;
}

.volume-bar-track {
    position: absolute !important;
    top: 50% !important;
    left: 0 !important;
    width: 100% !important;
    height: 6px !important;
    border-radius: 999px !important;
    background: rgba(255, 255, 255, 0.2) !important;
    transform: translateY(-50%) !important;
}

.volume-bar-fill {
    position: absolute !important;
    top: 50% !important;
    left: 0 !important;
    height: 6px !important;
    border-radius: 999px !important;
    background: #ffffff !important;
    transform: translateY(-50%) !important;
}

.volume-bar-handle {
    position: absolute !important;
    top: 50% !important;
    width: 16px !important;
    margin-left: -8px !important;
    border-radius: 50% !important;
    background: #ffffff !important;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4) !important;
    transform: translateY(-50%) !important;
    pointer-events: none !important;
}

.volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none !important;
    appearance: none !important;
    width: 16px !important;
    height: 16px !important;
    background: #fff !important;
    border-radius: 50% !important;
    cursor: pointer !important;
    border: 2px solid rgba(0, 0, 0, 0.2) !important;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3) !important;
    margin-top: -6px !important;
}

.volume-slider::-moz-range-thumb {
    width: 16px !important;
    height: 16px !important;
    background: #fff !important;
    border-radius: 50% !important;
    cursor: pointer !important;
    border: 2px solid rgba(0, 0, 0, 0.2) !important;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3) !important;
}

@media (max-width: 768px) {
    .profile-container {
        max-width: 100% !important;
        padding: 1rem !important;
        padding-top: 1.5rem !important;
    }
    
    .profile-card {
        padding: 1.25rem 1rem 1.75rem 1rem !important;
        margin: 0 0.5rem !important;
    }
    
    .avatar-circle {
        width: 100px !important;
        height: 100px !important;
    }
    
    .avatar-letter {
        font-size: 2.5rem !important;
    }
    
    .profile-username {
        font-size: 1.25rem !important;
    }
    
    .profile-entry-text {
        font-size: 2rem !important;
        letter-spacing: 2px !important;
    }

    .profile-card.layout-float {
        padding-top: 3rem !important;
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }
    
    .profile-avatar-float {
        top: -50px !important;
        left: 1rem !important;
    }
    
    .profile-avatar-float .avatar-circle {
        width: 100px !important;
        height: 100px !important;
    }
    
    .profile-avatar-float .avatar-decoration {
        width: 110px !important;
        height: 110px !important;
    }
    
    .profile-content-float {
        padding-left: 0 !important;
        margin-top: 0.5rem !important;
    }

    .profile-card.layout-aside {
        padding: 1rem !important;
    }
    
    .profile-content-aside {
        -webkit-box-orient: vertical !important;
        -webkit-box-direction: normal !important;
        -webkit-flex-direction: column !important;
        -moz-box-orient: vertical !important;
        -moz-box-direction: normal !important;
        -ms-flex-direction: column !important;
        flex-direction: column !important;
        gap: 1rem !important;
    }
    
    .profile-avatar-aside {
        -webkit-box-pack: center !important;
        -webkit-justify-content: center !important;
        -moz-box-pack: center !important;
        -ms-flex-pack: center !important;
        justify-content: center !important;
    }
    
    .profile-info-aside {
        text-align: left !important;
        margin-left: 0 !important;
        padding-left: 0 !important;
    }
    
    .profile-info-aside .profile-username {
        text-align: left !important;
        -webkit-box-pack: start !important;
        -webkit-justify-content: flex-start !important;
        -moz-box-pack: start !important;
        -ms-flex-pack: start !important;
        justify-content: flex-start !important;
    }
    
    .profile-info-aside .profile-bio {
        text-align: left !important;
    }
    
    .profile-info-aside .profile-social-links {
        -webkit-box-pack: start !important;
        -webkit-justify-content: flex-start !important;
        -moz-box-pack: start !important;
        -ms-flex-pack: start !important;
        justify-content: flex-start !important;
    }

    .profile-card.layout-aside .profile-content-aside,
    .layout-aside .profile-content-aside,
    .profile-content-aside {
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        -webkit-box-pack: start !important;
        -webkit-justify-content: flex-start !important;
        -moz-box-pack: start !important;
        -ms-flex-pack: start !important;
        justify-content: flex-start !important;
    }

    .profile-modules {
        -webkit-box-orient: vertical !important;
        -webkit-box-direction: normal !important;
        -webkit-flex-direction: column !important;
        -moz-box-orient: vertical !important;
        -moz-box-direction: normal !important;
        -ms-flex-direction: column !important;
        flex-direction: column !important;
        -webkit-flex-wrap: wrap !important;
        -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
        gap: 1rem !important;
        width: 100% !important;
    }
    
    .layout-float .profile-modules,
    .layout-default .profile-modules {
        -webkit-box-orient: vertical !important;
        -webkit-box-direction: normal !important;
        -webkit-flex-direction: column !important;
        -moz-box-orient: vertical !important;
        -moz-box-direction: normal !important;
        -ms-flex-direction: column !important;
        flex-direction: column !important;
        -webkit-box-pack: center !important;
        -webkit-justify-content: center !important;
        -moz-box-pack: center !important;
        -ms-flex-pack: center !important;
        justify-content: center !important;
        -webkit-flex-wrap: wrap !important;
        -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
        gap: 1rem !important;
    }

    .profile-card.layout-aside .profile-content-aside .profile-info-aside .profile-modules,
    .profile-card.layout-aside .profile-info-aside .profile-modules,
    .layout-aside .profile-content-aside .profile-info-aside .profile-modules,
    .layout-aside .profile-info-aside .profile-modules,
    .layout-aside .profile-modules,
    .profile-info-aside .profile-modules,
    .profile-card.layout-aside .profile-modules,
    .profile-content-aside .profile-modules {
        -webkit-box-orient: vertical !important;
        -webkit-box-direction: normal !important;
        -webkit-flex-direction: column !important;
        -moz-box-orient: vertical !important;
        -moz-box-direction: normal !important;
        -ms-flex-direction: column !important;
        flex-direction: column !important;
        -webkit-box-pack: start !important;
        -webkit-justify-content: flex-start !important;
        -moz-box-pack: start !important;
        -ms-flex-pack: start !important;
        justify-content: flex-start !important;
        -webkit-box-align: start !important;
        -webkit-align-items: flex-start !important;
        -moz-box-align: start !important;
        -ms-flex-align: start !important;
        align-items: flex-start !important;
        -webkit-flex-wrap: wrap !important;
        -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        margin-top: 1.5rem !important;
        gap: 1rem !important;
        width: 100% !important;
        max-width: 100% !important;
        overflow-x: visible !important;
        overflow-y: visible !important;
    }

    .profile-card.layout-aside .profile-content-aside .profile-info-aside,
    .layout-aside .profile-content-aside .profile-info-aside,
    .profile-info-aside {
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        text-align: left !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    .profile-card.layout-aside .profile-content-aside .profile-info-aside .profile-modules,
    .layout-aside .profile-content-aside .profile-info-aside .profile-modules,
    .profile-info-aside .profile-modules {
        margin-left: -1rem !important; 
        margin-right: -1rem !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        -webkit-box-pack: start !important;
        -webkit-justify-content: flex-start !important;
        -moz-box-pack: start !important;
        -ms-flex-pack: start !important;
        justify-content: flex-start !important;
        -webkit-box-align: start !important;
        -webkit-align-items: flex-start !important;
        -moz-box-align: start !important;
        -ms-flex-align: start !important;
        align-items: flex-start !important;
        align-self: flex-start !important;
        width: calc(100% + 2rem) !important; 
        max-width: calc(100% + 2rem) !important;
        position: relative !important;
        left: 0 !important;
        right: auto !important;
    }

    .profile-card.layout-aside .profile-content-aside .profile-info-aside,
    .layout-aside .profile-content-aside .profile-info-aside,
    .profile-info-aside {
        padding-left: 0 !important;
        padding-right: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .profile-card.layout-aside .profile-content-aside,
    .layout-aside .profile-content-aside,
    .profile-content-aside {
        padding-left: 0 !important;
        padding-right: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    
    .profile-card.layout-aside .profile-content-aside .profile-info-aside .profile-modules.single-module,
    .profile-card.layout-aside .profile-info-aside .profile-modules.single-module,
    .layout-aside .profile-content-aside .profile-info-aside .profile-modules.single-module,
    .layout-aside .profile-info-aside .profile-modules.single-module,
    .profile-info-aside .profile-modules.single-module {
        -webkit-box-orient: vertical !important;
        -webkit-box-direction: normal !important;
        -webkit-flex-direction: column !important;
        -moz-box-orient: vertical !important;
        -moz-box-direction: normal !important;
        -ms-flex-direction: column !important;
        flex-direction: column !important;
        -webkit-box-pack: start !important;
        -webkit-justify-content: flex-start !important;
        -moz-box-pack: start !important;
        -ms-flex-pack: start !important;
        justify-content: flex-start !important;
        -webkit-box-align: start !important;
        -webkit-align-items: flex-start !important;
        -moz-box-align: start !important;
        -ms-flex-align: start !important;
        align-items: flex-start !important;
        margin-left: 0 !important;
        padding-left: 0 !important;
    }
    
    .profile-module {
        width: 100% !important;
        max-width: 100% !important;
        -webkit-flex-basis: auto !important;
        -moz-flex-basis: auto !important;
        -ms-flex-preferred-size: auto !important;
        flex-basis: auto !important;
    }
    
    .profile-module-discord,
    .profile-module-discord-server {
        width: 100% !important;
        max-width: 100% !important;
    }

    .profile-module-discord .discord-username,
    .discord-module-right .discord-username,
    .discord-header .discord-username {
        display: inline-block !important;
        visibility: visible !important;
        opacity: 1 !important;
        font-size: 0.875rem !important;
        min-width: 0 !important;
        max-width: 100% !important;
        white-space: normal !important;
        overflow: visible !important;
        text-overflow: clip !important;
        flex-shrink: 1 !important;
        flex-grow: 0 !important;
    }
    
    .profile-module-discord .discord-header,
    .discord-module-right .discord-header {
        display: flex !important;
        visibility: visible !important;
        flex-wrap: wrap !important;
        gap: 0.5rem !important;
        min-width: 0 !important;
        width: 100% !important;
    }
    
    .profile-module-discord .discord-module-right,
    .discord-module-right {
        min-width: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        flex: 1 1 auto !important;
    }

    .profile-card.layout-aside .profile-content-aside .profile-info-aside .profile-module,
    .profile-card.layout-aside .profile-info-aside .profile-module,
    .layout-aside .profile-content-aside .profile-info-aside .profile-module,
    .layout-aside .profile-info-aside .profile-module,
    .layout-aside .profile-module,
    .profile-info-aside .profile-module,
    .profile-card.layout-aside .profile-module {
        max-width: 100% !important;
        width: 100% !important;
        -webkit-flex-basis: auto !important;
        -moz-flex-basis: auto !important;
        -ms-flex-preferred-size: auto !important;
        flex-basis: auto !important;
        -webkit-flex-shrink: 1 !important;
        -moz-flex-shrink: 1 !important;
        -ms-flex-negative: 1 !important;
        flex-shrink: 1 !important;
        -webkit-flex-grow: 0 !important;
        -moz-flex-grow: 0 !important;
        -ms-flex-positive: 0 !important;
        flex-grow: 0 !important;
        min-width: 0 !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        align-self: flex-start !important;
    }
    
    .profile-card.layout-aside .profile-content-aside .profile-info-aside .profile-module-discord,
    .profile-card.layout-aside .profile-content-aside .profile-info-aside .profile-module-discord-server,
    .profile-card.layout-aside .profile-info-aside .profile-module-discord,
    .profile-card.layout-aside .profile-info-aside .profile-module-discord-server,
    .layout-aside .profile-content-aside .profile-info-aside .profile-module-discord,
    .layout-aside .profile-content-aside .profile-info-aside .profile-module-discord-server,
    .layout-aside .profile-info-aside .profile-module-discord,
    .layout-aside .profile-info-aside .profile-module-discord-server,
    .layout-aside .profile-module-discord,
    .layout-aside .profile-module-discord-server,
    .profile-info-aside .profile-module-discord,
    .profile-info-aside .profile-module-discord-server,
    .profile-card.layout-aside .profile-module-discord,
    .profile-card.layout-aside .profile-module-discord-server {
        max-width: 100% !important;
        width: 100% !important;
        -webkit-flex-basis: auto !important;
        -moz-flex-basis: auto !important;
        -ms-flex-preferred-size: auto !important;
        flex-basis: auto !important;
        -webkit-flex-shrink: 1 !important;
        -moz-flex-shrink: 1 !important;
        -ms-flex-negative: 1 !important;
        flex-shrink: 1 !important;
        -webkit-flex-grow: 0 !important;
        -moz-flex-grow: 0 !important;
        -ms-flex-positive: 0 !important;
        flex-grow: 0 !important;
        min-width: 0 !important;
        box-sizing: border-box !important;
    }
}

@media (max-width: 480px) {
    .profile-page {
        padding: 0.5rem !important;
    }
    
    .profile-container {
        width: 100% !important;
        padding: 0.5rem !important;
        padding-top: 1rem !important;
    }
    
    .profile-card {
        padding: 1rem 0.75rem 1.5rem 0.75rem !important;
        margin: 0 !important;
    }
    
    .avatar-circle {
        width: 90px !important;
        height: 90px !important;
    }
    
    .avatar-letter {
        font-size: 2.25rem !important;
    }
    
    .profile-username {
        font-size: 1.15rem !important;
    }
    
    .profile-entry-text {
        font-size: 1.5rem !important;
        letter-spacing: 1.5px !important;
    }

    .profile-card.layout-float {
        padding-top: 2.5rem !important;
        padding-left: 0.75rem !important;
        padding-right: 0.75rem !important;
    }
    
    .profile-avatar-float {
        top: -45px !important;
        left: 0.75rem !important;
    }
    
    .profile-avatar-float .avatar-circle {
        width: 90px !important;
        height: 90px !important;
    }
    
    .profile-avatar-float .avatar-decoration {
        width: 100px !important;
        height: 100px !important;
    }

    .profile-modules {
        gap: 0.75rem !important;
        margin-top: 1rem !important;
    }

    .profile-card.layout-aside .profile-content-aside .profile-info-aside .profile-modules,
    .profile-card.layout-aside .profile-info-aside .profile-modules,
    .layout-aside .profile-content-aside .profile-info-aside .profile-modules,
    .layout-aside .profile-info-aside .profile-modules,
    .layout-aside .profile-modules,
    .profile-info-aside .profile-modules,
    .profile-card.layout-aside .profile-modules,
    .profile-content-aside .profile-modules {
        -webkit-box-orient: vertical !important;
        -webkit-box-direction: normal !important;
        -webkit-flex-direction: column !important;
        -moz-box-orient: vertical !important;
        -moz-box-direction: normal !important;
        -ms-flex-direction: column !important;
        flex-direction: column !important;
        -webkit-box-pack: start !important;
        -webkit-justify-content: flex-start !important;
        -moz-box-pack: start !important;
        -ms-flex-pack: start !important;
        justify-content: flex-start !important;
        -webkit-box-align: start !important;
        -webkit-align-items: flex-start !important;
        -moz-box-align: start !important;
        -ms-flex-align: start !important;
        align-items: flex-start !important;
        -webkit-flex-wrap: wrap !important;
        -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
        gap: 0.75rem !important;
        margin-top: 1rem !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        overflow-x: visible !important;
        overflow-y: visible !important;
    }

    .profile-card.layout-aside .profile-content-aside .profile-info-aside,
    .layout-aside .profile-content-aside .profile-info-aside,
    .profile-info-aside {
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        text-align: left !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    .profile-card.layout-aside .profile-content-aside .profile-info-aside .profile-modules,
    .layout-aside .profile-content-aside .profile-info-aside .profile-modules,
    .profile-info-aside .profile-modules {
        margin-left: -6rem !important; 
        margin-right: -6rem !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        -webkit-box-pack: start !important;
        -webkit-justify-content: flex-start !important;
        -moz-box-pack: start !important;
        -ms-flex-pack: start !important;
        justify-content: flex-start !important;
        -webkit-box-align: start !important;
        -webkit-align-items: flex-start !important;
        -moz-box-align: start !important;
        -ms-flex-align: start !important;
        align-items: flex-start !important;
        align-self: flex-start !important;
        width: calc(100% + 1.5rem) !important; 
        max-width: calc(100% + 1.5rem) !important;
        position: relative !important;
        left: 0 !important;
        right: auto !important;
    }

    .profile-card.layout-aside .profile-content-aside .profile-info-aside,
    .layout-aside .profile-content-aside .profile-info-aside,
    .profile-info-aside {
        padding-left: 0 !important;
        padding-right: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .profile-card.layout-aside .profile-content-aside,
    .layout-aside .profile-content-aside,
    .profile-content-aside {
        padding-left: 0 !important;
        padding-right: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    
    .profile-card.layout-aside .profile-content-aside,
    .layout-aside .profile-content-aside,
    .profile-content-aside {
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        -webkit-box-pack: start !important;
        -webkit-justify-content: flex-start !important;
        -moz-box-pack: start !important;
        -ms-flex-pack: start !important;
        justify-content: flex-start !important;
    }
    
    .profile-card.layout-aside .profile-content-aside .profile-info-aside .profile-module,
    .profile-card.layout-aside .profile-info-aside .profile-module,
    .layout-aside .profile-content-aside .profile-info-aside .profile-module,
    .layout-aside .profile-info-aside .profile-module,
    .layout-aside .profile-module,
    .profile-info-aside .profile-module,
    .profile-card.layout-aside .profile-module {
        width: 100% !important;
        max-width: 100% !important;
        -webkit-flex-basis: auto !important;
        -moz-flex-basis: auto !important;
        -ms-flex-preferred-size: auto !important;
        flex-basis: auto !important;
        -webkit-flex-shrink: 1 !important;
        -moz-flex-shrink: 1 !important;
        -ms-flex-negative: 1 !important;
        flex-shrink: 1 !important;
        min-width: 0 !important;
    }
    
    .profile-card.layout-aside .profile-content-aside .profile-info-aside .profile-module-discord,
    .profile-card.layout-aside .profile-content-aside .profile-info-aside .profile-module-discord-server,
    .profile-card.layout-aside .profile-info-aside .profile-module-discord,
    .profile-card.layout-aside .profile-info-aside .profile-module-discord-server,
    .layout-aside .profile-content-aside .profile-info-aside .profile-module-discord,
    .layout-aside .profile-content-aside .profile-info-aside .profile-module-discord-server,
    .layout-aside .profile-info-aside .profile-module-discord,
    .layout-aside .profile-info-aside .profile-module-discord-server,
    .layout-aside .profile-module-discord,
    .layout-aside .profile-module-discord-server,
    .profile-info-aside .profile-module-discord,
    .profile-info-aside .profile-module-discord-server,
    .profile-card.layout-aside .profile-module-discord,
    .profile-card.layout-aside .profile-module-discord-server {
        width: 100% !important;
        max-width: 100% !important;
        -webkit-flex-basis: auto !important;
        -moz-flex-basis: auto !important;
        -ms-flex-preferred-size: auto !important;
        flex-basis: auto !important;
        -webkit-flex-shrink: 1 !important;
        -moz-flex-shrink: 1 !important;
        -ms-flex-negative: 1 !important;
        flex-shrink: 1 !important;
        min-width: 0 !important;
    }
    
    .profile-module-discord,
    .profile-module-discord-server {
        padding: 0.625rem !important;
    }

    .profile-module-discord .discord-username,
    .discord-module-right .discord-username,
    .discord-header .discord-username {
        display: inline-block !important;
        visibility: visible !important;
        opacity: 1 !important;
        font-size: 0.875rem !important;
        min-width: 0 !important;
        max-width: 100% !important;
        white-space: normal !important;
        overflow: visible !important;
        text-overflow: clip !important;
        flex-shrink: 1 !important;
        flex-grow: 0 !important;
    }
    
    .profile-module-discord .discord-header,
    .discord-module-right .discord-header {
        display: flex !important;
        visibility: visible !important;
        flex-wrap: wrap !important;
        gap: 0.5rem !important;
        min-width: 0 !important;
        width: 100% !important;
    }
    
    .profile-module-discord .discord-module-right,
    .discord-module-right {
        min-width: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        flex: 1 1 auto !important;
    }

    .layout-aside .profile-module-discord,
    .layout-aside .profile-module-discord-server,
    .profile-info-aside .profile-module-discord,
    .profile-info-aside .profile-module-discord-server,
    .profile-card.layout-aside .profile-module-discord,
    .profile-card.layout-aside .profile-module-discord-server {
        width: 100% !important;
        max-width: 100% !important;
    }

    .profile-social-links {
        gap: 0.75rem !important;
        margin-top: 1rem !important;
    }
}

.profile-card.layout-float {
    text-align: left !important;
    align-items: flex-start !important;
    padding-top: 2.9rem !important;
    padding-left: 1.2rem !important;
    padding-right: 1.2rem !important;
    padding-bottom: 1.2rem !important;
    position: relative !important;
    overflow: visible !important;
}

.profile-avatar-float {
    position: absolute !important;
    top: -60px !important;
    left: 1.2rem !important;
    z-index: 10 !important;
    margin: 0 !important;
    width: auto !important;
    justify-content: flex-start !important;
}

.profile-avatar-float .avatar-circle {
    width: 120px !important;
    height: 120px !important;
}

.profile-avatar-float .avatar-decoration {
    width: 130px !important;
    height: 130px !important;
}

.profile-content-float {
    margin-top: 0.5rem !important;
    padding-top: 0.5rem !important;
    padding-left: 1.2rem !important;
    width: 100% !important;
    text-align: left !important;
}

.profile-card.layout-aside {
    text-align: left !important;
    display: block !important;
    flex-direction: row !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    padding: 1rem !important;
    max-width: 100% !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    word-break: break-word !important;
    width: 100% !important;
    box-sizing: border-box !important;
    position: relative !important;
}

.profile-card.layout-aside > * {
    position: relative !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    bottom: auto !important;
}

.profile-content-aside {
    display: flex !important;
    flex-direction: row !important;
    align-items: flex-start !important;
    gap: 1rem !important;
    width: calc(100% - 2rem) !important;
    max-width: calc(100% - 2rem) !important;
    position: relative !important;
    box-sizing: border-box !important;
    margin: 0 !important;
    padding: 0 !important;
    left: 0 !important;
    right: 0 !important;
    top: 0 !important;
    bottom: 0 !important;
    transform: none !important;
    float: none !important;
}

.profile-avatar-aside {
    flex-shrink: 0 !important;
    margin: 0 !important;
    display: flex !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
}

.profile-avatar-aside .avatar-circle {
    width: 90px !important;
    height: 90px !important;
}

.profile-avatar-aside .avatar-decoration {
    width: 100px !important;
    height: 100px !important;
}

.profile-info-aside {
    flex: 1 !important;
    display: block !important;
    min-width: 0 !important;
    overflow: visible !important;
    position: relative !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    word-break: break-word !important;
    max-width: 100% !important;
}

.profile-card.layout-aside .profile-username {
    text-align: left !important;
    margin: 0 0 0.5rem 0 !important;
    
    line-height: 1.4 !important;
    display: inline-block !important;
    width: auto !important;
    max-width: 100% !important;
    padding: 0 !important;
    color: var(--text-primary) !important;
    visibility: visible !important;
    opacity: 1 !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    word-break: break-word !important;
    white-space: normal !important;
    box-sizing: border-box !important;
    overflow: visible !important;
}

.profile-card.layout-aside .profile-bio {
    text-align: left !important;
    margin: 0 !important;
    
    line-height: 1.4 !important;
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
    
    visibility: visible !important;
    opacity: 1 !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    word-break: break-word !important;
    white-space: normal !important;
    box-sizing: border-box !important;
}

.profile-card.layout-float .profile-username {
    text-align: left !important;
    margin: 0 0 0.5rem 0 !important;
    padding-left: 0 !important;
    margin-left: 0 !important;
}

.profile-card.layout-float .profile-bio {
    text-align: left !important;
    margin: 0 !important;
    padding-left: 0 !important;
    margin-left: 0 !important;
}

.profile-content-float .profile-username,
.profile-content-float .profile-bio {
    padding-left: 0 !important;
    margin-left: 0 !important;
}

.profile-card.layout-aside .profile-avatar {
    width: auto !important;
    margin: 0 !important;
    justify-content: flex-start !important;
}

.background-effect-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.snow-effect {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.snowflake {
    position: absolute;
    top: -10px;
    color: #ffffff;
    font-size: 1em;
    font-family: Arial, sans-serif;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.8);
    animation: snowfall linear infinite;
    user-select: none;
}

.snowflake::before {
    content: '❄';
}

@keyframes snowfall {
    0% {
        transform: translateY(0) translateX(0) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(100vh) translateX(50px) rotate(360deg);
        opacity: 0;
    }
}

.rain-effect {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.raindrop {
    position: absolute;
    top: -10px;
    width: 2px;
    height: 20px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.2));
    animation: rainfall linear infinite;
}

@keyframes rainfall {
    0% {
        transform: translateY(0);
        opacity: 1;
    }
    100% {
        transform: translateY(100vh);
        opacity: 0.3;
    }
}

.particles-effect {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #ffffff;
    border-radius: 50%;
    box-shadow: 0 0 6px rgba(255, 255, 255, 0.8);
    animation: particleFloat linear infinite;
}

@keyframes particleFloat {
    0% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) translateX(100px);
        opacity: 0;
    }
}

.stars-effect {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.star {
    position: absolute;
    width: 2px;
    height: 2px;
    background: #ffffff;
    border-radius: 50%;
    box-shadow: 0 0 4px rgba(255, 255, 255, 0.9), 0 0 8px rgba(255, 255, 255, 0.5);
    animation: starTwinkle ease-in-out infinite;
}

@keyframes starTwinkle {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.5);
    }
}

.profile-social-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.profile-card.layout-default .profile-social-links {
    justify-content: center;
}

.profile-card.layout-default .profile-username {
    text-align: center !important;
    justify-content: center !important;
}

.profile-card.layout-float .profile-social-links,
.profile-content-float .profile-social-links {
    justify-content: center;
    margin-left: 0;
    padding-left: 0;
    width: 100%;
    margin-top: 1rem;
    position: relative;
    z-index: 1001;
}

.profile-card.layout-float .profile-social-link,
.profile-content-float .profile-social-link {
    cursor: pointer !important;
    pointer-events: auto !important;
    position: relative;
    z-index: 1002 !important;
}

.profile-card.layout-aside .profile-social-links,
.profile-info-aside .profile-social-links {
    justify-content: flex-start;
    margin-left: 0;
    padding-left: 0;
    width: 100%;
    margin-top: 1rem;
}

.profile-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    font-size: 1.5rem;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer !important;
    pointer-events: auto !important;
    position: relative;
    z-index: 1000 !important;
}

.profile-social-link * {
    cursor: pointer !important;
    pointer-events: auto !important;
}

.profile-social-link:hover {
    transform: translateY(-2px);
    opacity: 0.8;
}

.profile-social-link i {
    display: block;
    font-family: "Font Awesome 6 Brands", "Font Awesome 6 Free", "Font Awesome 6 Pro" !important;
}

.external-link-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
}

.external-link-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(4px);
}

.external-link-modal-content {
    position: relative;
    background: #1a1a1a;
    border: 1px solid rgba(255, 0, 0, 0.3);
    border-radius: 12px;
    width: 90%;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 40px rgba(255, 0, 0, 0.2);
}

.external-link-modal-header {
    padding: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.external-link-modal-header h3 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
}

.external-link-modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: background 0.2s;
}

.external-link-modal-close:hover {
    background: rgba(255, 255, 255, 0.1);
}

.external-link-modal-body {
    padding: 1.5rem;
    text-align: center;
}

.external-link-warning {
    margin: 0 0 1rem 0;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.external-link-url {
    padding: 1rem;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    font-family: monospace;
    font-size: 0.75rem;
    color: var(--text-primary);
    word-break: break-all;
    line-height: 1.5;
}

.external-link-modal-footer {
    padding: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    gap: 0.75rem;
    justify-content: center;
}

.external-link-visit-btn,
.external-link-cancel-btn {
    padding: 0.5rem 1.5rem;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.external-link-visit-btn {
    background: rgba(255, 0, 0, 0.2);
    border: 1px solid rgba(255, 0, 0, 0.5);
    color: #ff4444;
}

.external-link-visit-btn:hover {
    background: rgba(255, 0, 0, 0.3);
    border-color: rgba(255, 0, 0, 0.7);
}

.external-link-cancel-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-primary);
}

.external-link-cancel-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

.profile-modules {
    margin-top: 1.5rem;
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap !important;
    align-items: flex-start;
    align-self: flex-start;
    gap: 1rem;
    overflow-x: visible;
    overflow-y: visible;
    box-sizing: border-box;
}

.layout-float .profile-modules,
.layout-default .profile-modules {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap !important;
    align-items: flex-start;
    align-self: flex-start;
    justify-content: center;
    gap: 1rem;
    overflow-x: visible;
    overflow-y: visible;
    box-sizing: border-box;
}

.layout-aside .profile-modules {
    width: 100%;
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: flex-start;
    justify-content: flex-start !important;
    margin-top: 2rem !important;
    margin-left: 0;
    padding-left: 0.5rem !important;
    gap: 0.5rem;
    overflow-x: visible;
    overflow-y: visible;
    box-sizing: border-box;
}

.profile-info-aside .profile-modules {
    margin-left: 25px;
    padding-left: 0 !important;
    width: 100%;
    max-width: 100%;
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    gap: 0.75rem;
    align-items: flex-start;
    justify-content: end !important;
    overflow-x: visible;
    overflow-y: visible;
    box-sizing: border-box;
    
}

.profile-info-aside .profile-modules.single-module {
    justify-content: flex-start !important;
    margin-left: 0 !important;
    padding-left: 0 !important;
}

.profile-info-aside .profile-module-discord {
    width: auto !important;
    max-width: 300px !important;
    flex-shrink: 0 !important;
    flex-grow: 0 !important;
    min-width: 0;
    box-sizing: border-box !important;
    overflow: hidden !important;
}

.profile-info-aside .profile-module-discord-server {
    width: auto !important;
    max-width: 260px !important;
    flex-shrink: 0 !important;
    flex-grow: 0 !important;
    min-width: 0;
}

.profile-module {
    margin-bottom: 0;
    flex-shrink: 0;
    flex-basis: auto;
}

.layout-aside .profile-module,
.profile-info-aside .profile-module {
    flex-shrink: 0 !important;
    flex-grow: 0 !important;
    flex-basis: auto;
    width: auto !important;
    min-width: 0;
    box-sizing: border-box !important;
}

.layout-aside .profile-module-discord,
.profile-info-aside .profile-module-discord {
    max-width: 300px !important;
}

.layout-aside .profile-module-discord-server,
.profile-info-aside .profile-module-discord-server {
    max-width: 260px !important;
}

.profile-module-discord {
    background: rgba(255, 255, 255, 0.07);
    border: 2px solid rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 0.75rem 0.5rem;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    width: auto;
    max-width: 320px !important;
    min-width: 0;
    -webkit-flex-shrink: 0 !important;
    -moz-flex-shrink: 0 !important;
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
    -webkit-flex-grow: 0 !important;
    -moz-flex-grow: 0 !important;
    -ms-flex-positive: 0 !important;
    flex-grow: 0 !important;
    box-sizing: border-box;
    overflow: hidden;
    min-height: 96px;
    display: flex;
    align-items: stretch;
}

.profile-module-discord.compact {
    width: auto;
    display: inline-block;
    min-width: fit-content;
    padding: 0.625rem 0.875rem;
    max-width: 320px !important;
    box-sizing: border-box;
    overflow: hidden;
}

.profile-module-discord.no-activity-height {
    height: auto !important;
    min-height: 96px !important;
    max-height: none !important;
}

.discord-module-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
    min-height: 100%;
}

.profile-module-discord.compact .discord-module-content {
    width: auto;
    gap: 0.625rem;
    min-width: 0;
    max-width: 100%;
}

.discord-module-left {
    flex-shrink: 0;
}

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

.discord-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    -o-object-fit: cover;
    object-fit: cover;
}

.discord-status {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid var(--card-bg, transparent);
    background: var(--card-bg, rgba(0, 0, 0, 0.3));
}

.discord-module-right {
    flex: 1;
    min-width: 0;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    box-sizing: border-box;
}

.profile-module-discord.compact .discord-module-right {
    flex: 0 1 auto;
    min-width: auto;
}

.discord-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    flex-wrap: nowrap;
    line-height: 1.2;
    min-width: 0;
}

.profile-module-discord.compact .discord-header {
    margin-bottom: 0.25rem;
}

.discord-username {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.875rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex-shrink: 1;
    min-width: 0;
}

.discord-badges {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    flex-wrap: nowrap;
    flex-shrink: 0;
}

.discord-badge {
    width: 18px;
    height: 18px;
    -o-object-fit: contain;
    object-fit: contain;
}

.discord-guild-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.2rem 0.4rem;
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(255, 255, 255, 0.04);
    border-radius: 5px;
    height: 20px;
}

.discord-guild-name {
    font-size: 0.6875rem;
    color: var(--text-primary);
    font-weight: 500;
    text-transform: uppercase;
    line-height: 1;
}

.discord-guild-badge-icon {
    width: 16px;
    height: 16px;
    -o-object-fit: contain;
    object-fit: contain;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.discord-activity {
    font-size: 0.7rem;
    color: var(--text-secondary);
    margin-bottom: 0.2rem;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
    text-align: left;
}

.discord-activity-prefix {
    color: #ffffff;
    font-size: 0.85em;
}

.profile-module-discord.compact .discord-activity {
    margin-bottom: 0;
    white-space: nowrap;
}

.discord-activity-state {
    font-size: 0.6875rem;
    color: var(--text-secondary);
    opacity: 0.8;
    text-align: left;
}

.discord-module-activity-image {
    flex-shrink: 0;
    width: 56px !important;
    height: 56px !important;
    border-radius: 6px;
    overflow: hidden;
}

.discord-activity-img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.profile-module-discord-server {
    background: rgba(255, 255, 255, 0.07);
    border: 2px solid rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 0.75rem 0.5rem;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    width: auto;
    max-width: 280px;
    min-width: 0;
    flex-shrink: 0;
    flex-grow: 0;
    -webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
    -moz-transition: -moz-transform 0.2s, opacity 0.2s;
    -o-transition: -o-transform 0.2s, opacity 0.2s;
    transition: transform 0.2s, opacity 0.2s;
    min-height: 96px;
    display: flex;
    align-items: stretch;
}

.profile-module-discord-server:hover {
    -webkit-transform: translateY(-2px);
    -moz-transform: translateY(-2px);
    -ms-transform: translateY(-2px);
    -o-transform: translateY(-2px);
    transform: translateY(-2px);
    opacity: 0.9;
}

.discord-server-module-content {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -moz-box-align: start;
    -ms-flex-align: start;
    align-items: center;
    position: relative;
    min-height: 100%;
    width: 100%;
}

.discord-server-module-content > * {
    margin-right: 0.75rem;
}

.discord-server-module-content > *:last-child {
    margin-right: 0;
}

.discord-server-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    min-height: 48px;
    border-radius: 8px;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    display: block;
    
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

@supports not (object-fit: cover) {
    .discord-server-icon {
        width: 48px;
        height: 48px;
        background-size: cover;
        background-position: center;
    }
}

.discord-server-icon-placeholder {
    width: 48px;
    height: 48px;
    min-width: 48px;
    min-height: 48px;
    border-radius: 8px;
    background: rgba(88, 101, 242, 0.2);
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.discord-server-icon-placeholder i {
    font-size: 1.5rem;
    color: #5865F2;
}

.discord-server-info {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -moz-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    min-width: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-right: 1.5rem;
}

.discord-server-info > *:last-child {
    margin-bottom: 0;
}

.discord-server-info {
    gap: 0.375rem;
}

.discord-server-header {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.discord-server-header > * {
    margin-right: 0.5rem;
}

.discord-server-header > *:last-child {
    margin-right: 0;
}

.discord-server-header {
    gap: 0.5rem;
}

.discord-server-name {
    font-size: 0.875rem;
    font-weight: 600;
    color: #ffffff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.discord-server-logo {
    position: absolute;
    top: 0;
    right: 0;
    width: 20px;
    height: 20px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: #ffff;
    opacity: 0.7;
}

.discord-server-logo i {
    font-size: 12px;
}

.discord-server-description {
    font-size: 0.70rem;
    color: var(--text-secondary);
    line-height: 1;
    word-break: break-word;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.discord-server-stats {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 0.125rem;
}

.discord-server-stat {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.discord-server-stat-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    flex-shrink: 0;
}

.discord-server-stat-dot.online {
    background: #23a55a;
}

.discord-server-stat-dot.offline {
    background: #80848e;
}

.discord-server-stat-value {
    font-size: 0.75rem;
    color: var(--text-secondary);
    white-space: nowrap;
}

/* Profile Claim Banner */
.profile-claim-banner {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    max-width: 90%;
    width: 100%;
    max-width: 500px;
    animation: slideUpBanner 0.3s ease-out;
}

@keyframes slideUpBanner {
    from {
        transform: translateX(-50%) translateY(100px);
        opacity: 0;
    }
    to {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }
}

.profile-claim-banner-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.profile-claim-banner-content {
    background: rgba(30, 30, 30, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.profile-claim-banner-link:hover .profile-claim-banner-content {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4);
}

.profile-claim-banner-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.profile-claim-banner-icon-img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.profile-claim-banner-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.profile-claim-banner-url {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.2;
}

.profile-claim-banner-desc {
    font-size: 0.875rem;
    color: #999999;
    line-height: 1.2;
}

.profile-claim-banner-close {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    color: #999999;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.2s ease;
    padding: 0;
}

.profile-claim-banner-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.profile-claim-banner-close svg {
    width: 16px;
    height: 16px;
}

@media (max-width: 768px) {
    .profile-claim-banner {
        bottom: 10px;
        left: 10px;
        right: 10px;
        max-width: none;
        width: auto;
        transform: none;
    }
    
    .profile-claim-banner-content {
        padding: 12px 16px;
        gap: 12px;
    }
    
    .profile-claim-banner-icon {
        width: 28px;
        height: 28px;
    }
    
    .profile-claim-banner-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .profile-claim-banner-url {
        font-size: 0.9rem;
    }
    
    .profile-claim-banner-desc {
        font-size: 0.8rem;
    }
}

/* Banned User Page Styles */
.banned-user-page {
    min-height: 100vh;
    background-color: #0a0a0a;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.banned-user-modal {
    background: rgba(30, 30, 30, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 48px 40px;
    max-width: 500px;
    width: 100%;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
}

.banned-user-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 48px;
    font-weight: bold;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.banned-user-message {
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 32px;
    line-height: 1.5;
}

.banned-user-site {
    color: #8b5cf6;
    font-weight: 600;
}

.banned-user-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.banned-user-btn {
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
    border: 1px solid transparent;
    cursor: pointer;
    display: inline-block;
}

.banned-user-btn-primary {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.2);
}

.banned-user-btn-primary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
}

.banned-user-btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.2);
}

.banned-user-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .banned-user-modal {
        padding: 32px 24px;
        margin: 1rem;
    }
    
    .banned-user-icon {
        width: 64px;
        height: 64px;
        font-size: 36px;
        margin-bottom: 20px;
    }
    
    .banned-user-message {
        font-size: 16px;
        margin-bottom: 24px;
    }
    
    .banned-user-actions {
        flex-direction: column;
    }
    
    .banned-user-btn {
        width: 100%;
    }
}