


/*Change this if you want normal colors, do ctrl+F type colors on top then on bottom do this rgba(255, 255, 255);  */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body, * {
    cursor: none !important;
}

body {
    font-family: 'Roboto Mono', monospace;
    overflow: auto;
    position: relative;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

#custom-cursor {
    position: fixed;
    width: 40px;
    height: 40px;
    background-image: url('');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    pointer-events: none;
    z-index: 9999999;
    transition: transform 0.1s ease, opacity 0.3s ease;
    filter: drop-shadow(0 0 4px rgba(255, 255, 255, 0.8));
    will-change: transform, left, top;
    opacity: 0;
}

.overlay #custom-cursor {
    opacity: 0 !important;
}

a, button, .ctrl, .link, .spotify-widget, .discord-presence {
    position: relative;
    z-index: 1;
}

#bg-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    z-index: -1;
    filter: brightness(0.4);
}

.video-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0);
    z-index: -1;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 1;
    cursor: pointer !important;
}

#overlay-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.overlay-blur {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(10px);
    background: rgba(0, 0, 0, 0.7);
    z-index: 2;
}

.overlay-content {
    text-align: center;
    color: #fff;
    position: relative;
    z-index: 3;
}

.overlay-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 20px;
    letter-spacing: 4px;
    opacity: 0.8;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
}

.c3d-container {
    perspective: 1000px;
    width: 780px;
    height: auto; 
    min-height: 200px; 
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform: translateY(10px); /* Changed from 50px to 150px */
}

.overlay-hidden .c3d-container {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.8s ease-out 0.5s, transform 0.8s ease-out 0.5s;
}

.overlay-hidden .overlay {
    opacity: 0;
    visibility: hidden;
}

#c3d {
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 0.9;
    transform-style: preserve-3d;
    will-change: transform;
    transition: transform 0.1s ease-out;
}

.card {
    background: rgba(255, 255, 255, 0);
    padding: 30px 40px;
    border-radius: 5px;
    width: 700px;
    height: auto; 
    min-height: 292px;    
    max-height: 300px;    
    border: 10px medium rgba(255, 255, 255);
    position: relative;
    transform-style: preserve-3d;
    will-change: transform;
    transition: all 0.3s ease-out;
    box-sizing: border-box;
    overflow: visible !important;
    backdrop-filter: blur(21px);
    transform: translateY(-100px);
}

.overlay-hidden .card {
    animation: cardDropIn 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.3s forwards;
}

@keyframes cardDropIn {
    0% {
        opacity: 0;
        transform: translateY(-100px);
    }

    70% {
        opacity: 1;
        transform: translateY(20px);
    }

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

.profile-header {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    margin-top: 27px; /* t+his is to push pfp/name/badges down further */
    gap: 15px;
    opacity: 0;
    transform: translateY(-30px);
}

.overlay-hidden .profile-header {
    animation: fadeIn 0.6s ease-out 0.9s forwards;
}

.profile-pic-container {
    position: relative;
    width: 95px;
    height: 95px;
    opacity: 0;
    transform: translateY(-30px);
}

.overlay-hidden .profile-pic-container {
    animation: fadeIn 0.6s ease-out 1.0s forwards;
}

.pfp {
    width: 100%;
    height: 100%;
    animation: whiteGlow 3s ease-in-out infinite alternate;
    object-fit: cover;
}

.overlay-hidden .dot {
    animation: fadeIn 0.6s ease-out 1.1s forwards;
}

.profile-info {
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(-30px);
    flex: 1;
    overflow: visible !important;
    max-width: 500px;
}

.overlay-hidden .profile-info {
    animation: fadeIn 0.6s ease-out 1.0s forwards;
}

.name-container {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
    position: relative;
    overflow: visible !important;
}

.name {
    color: rgba(255, 255, 255);
    font-size: 28px;
    font-weight: bold;
    animation: whiteGlow 3s ease-in-out infinite alternate;
    position: relative;
    font-family: 'Montserrat', 'Inter', sans-serif;
}

@keyframes whiteGlow {
    0% {
        text-shadow: 0 0 2px rgba(255, 255, 255, 0.8), 0 0 4px rgba(255, 255, 255, 0.6);
    }

    100% {
        text-shadow: 0 0 3px rgba(255, 255, 255, 0.9), 0 0 6px rgba(255, 255, 255, 0.7);
    }
}

.badges-container {
    display: flex;
    align-items: center;
    border-radius: 18px;
    padding: 5px 10px;
    margin-left: 10px;
    position: relative;
    backdrop-filter: blur(5px);
    overflow: visible !important;
}

.badges {
    display: flex;
    align-items: center;
    gap: 5px;
    color: rgba(255, 255, 255);
    overflow: visible !important;
}

.badge {
    position: relative;
    color: rgba(255, 255, 255);
    overflow: visible !important;
}

    .badge svg {
        width: 16px;
        height: 16px;
        fill: rgba(255, 255, 255);
        filter: drop-shadow(0 0 2px rgba(255, 255, 255, 0.4)) drop-shadow(0 0 4px rgba(255, 255, 255, 0.3)) drop-shadow(0 0 8px rgba(255, 255, 255, 0.3)) !important;
        position: relative;
        z-index: 2;
        animation: badgeGlow 3s ease-in-out infinite alternate;
    }

@keyframes badgeGlow {
    0% {
        filter: drop-shadow(0 0 1px rgba(255, 255, 255, 0.4)) drop-shadow(0 0 3px rgba(255, 255, 255, 0.3)) drop-shadow(0 0 6px rgba(255, 255, 255, 0.2)) !important;
    }

    100% {
        filter: drop-shadow(0 0 3px rgba(255, 255, 255, 0.4)) drop-shadow(0 0 6px rgba(255, 255, 255, 0.3)) drop-shadow(0 0 10px rgba(255, 255, 255, 0.3)) !important;
    }
}

.desc {
    color: rgba(255, 255, 255);
    font-size: 16px;
    line-height: 1.4;
    font-family: "DesirableCalligraphy", monospace;
    font-style: italic;
    opacity: 0;
    transform: translateY(-30px);
    min-height: 40px;
    margin-top: 8px;
    margin-bottom: 8px;
    max-width: 500px;
    transition: all 0.3s ease;
    animation: bioChange 0.5s ease-out;
}

@keyframes bioChange {
    0% {
        opacity: 0;
        transform: translateY(5px);
    }

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

.desc.font-inter {
    font-family: 'Inter', sans-serif;
}

@font-face {
    font-family: "DesirableCalligraphy";
    src: url('./font/DesirableCalligraphy.woff2')  format('woff2');
    font-weight: normal;
    font-style: normal;
}

.desc.font-DesirableCalligraphy {
    font-family: 'DesirableCalligraphy';
    font-weight: normal;
    font-style: normal;
}

.desc.font-jetbrains {
    font-family: 'JetBrains Mono', monospace;
    font-weight: 300;
}

.desc.font-roboto {
    font-family: 'Roboto', sans-serif;
}

.desc.font-montserrat {
    font-family: 'Montserrat', sans-serif;
}

.desc.font-poppins {
    font-family: 'Poppins', sans-serif;
}

.desc.font-opensans {
    font-family: 'Open Sans', sans-serif;
}

.desc.font-raleway {
    font-family: 'Raleway', sans-serif;
    letter-spacing: 0.5px;
}

.desc.font-ubuntu {
    font-family: 'Ubuntu', sans-serif;
}

.desc.font-space {
    font-family: 'Space Grotesk', sans-serif;
    letter-spacing: 0.3px;
}

.desc.font-roboto-mono {
    font-family: 'Roboto Mono', monospace;
    font-weight: 300;
}

.overlay-hidden .desc {
    animation: fadeIn 0.6s ease-out 1.1s forwards;
}

.presence-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    width: 100%;
    opacity: 0;
    transform: translateY(-30px);
    margin: 20px 0 25px 0;
}

.overlay-hidden .presence-container {
    animation: fadeIn 0.6s ease-out 1.2s forwards;
}

.discord-presence, .spotify-widget {
    background: rgba(25, 25, 25, 0.5) !important;
    border-radius: 10px;
    padding: 10px 12px !important;
    border: 4px medium rgba(255, 255, 255);
    backdrop-filter: blur(4px) !important;
    width: 340px !important;
    height: 85px !important;
    box-sizing: border-box;
    display: flex;
    opacity: 0.8;
    align-items: center;
    overflow: visible !important;
    margin: 0 !important;
    color: rgba(255, 255, 255, 1) !important;

}

.overlay-hidden .discord-presence,
.overlay-hidden .spotify-widget {
    animation: fadeIn 0.6s ease-out 1.2s forwards;
}

.discord-main {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    height: 100%;
    position: relative;
}

.discord-avatar-container {
    width: 40px !important;
    height: 40px !important;
    position: relative;
    flex-shrink: 0;
    overflow: visible !important;
}

.discord-avatar {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(81, 81, 81, 0.8) !important;
    background: linear-gradient(45deg, #666, #888);
}

.discord-status-indicator {
    position: absolute !important;
    right: -5px !important;
    bottom: -5px !important;
    width: 16px !important;
    height: 16px !important;
    border-radius: 50%;
    background-size: contain !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-color: transparent !important;
    border: 2px solid rgba(35, 35, 35, 0.8) !important;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.3) !important;
    z-index: 10;
}

    .discord-status-indicator.online,
    .discord-status-indicator.idle,
    .discord-status-indicator.dnd,
    .discord-status-indicator.offline {
        background-color: transparent;
        box-shadow: none;
    }

.discord-info {
    display: flex;
    flex-direction: column;
    gap: 3px;
    flex: 1;
    overflow: visible !important;
    min-width: 0;
}

.discord-username {
    color: rgba(255, 255, 255, 1) !important;
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 0.4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-shadow: 0 0 3px rgba(255, 255, 255, 0.9), 0 0 5px rgba(255, 255, 255, 0.7);
    font-family: 'Montserrat', sans-serif;
}

.discord-activity-line {
    color: rgba(255, 255, 255, 1) !important;
    font-size: 13px !important;
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
    overflow: hidden;
    position: relative;
    height: 18px;
    max-width: 240px;
    min-width: 0;
    width: 100%;
    text-shadow: 0 0 3px rgba(255, 255, 255, 0.9), 0 0 5px rgba(255, 255, 255, 0.7);
    font-family: 'Roboto Mono', monospace;
}

.activity-text-container {
    display: flex;
    align-items: center;
    min-width: 0;
    overflow: hidden;
    position: relative;
    height: 100%;
    width: 100%;
}

@keyframes scrollTextLeftToRight {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(0%);
    }
}

.discord-activity-line.scrollable .activity-text.js-scroll {
    animation: scrollTextLeftToRight 15s linear infinite;
    padding-left: 100%;
}

.activity-text {
    flex-shrink: 0;
    white-space: nowrap;
    color: rgba(255, 255, 255, 1) !important;
}

.activity-time {
    color: rgba(255, 255, 255, 0.7) !important;
    font-size: 11px;
    flex-shrink: 0;
    margin-left: 4px;
}

.spotify-main {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    height: 100%;
}

.spotify-playlist-art {
    width: 55px !important;
    height: 55px !important;
    position: relative;
    flex-shrink: 0;
    border-radius: 6px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(81, 81, 81, 0.8) !important;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
}

.spotify-art-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}

.spotify-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
    overflow: hidden;
    min-width: 0;
    padding-right: 5px;
}

.spotify-playlist-name {
    color: rgba(255, 255, 255, 1) !important;
    font-size: 15px;
    font-weight: bold;
    letter-spacing: 0.3px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.2;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    font-family: 'Montserrat', sans-serif;
}

.spotify-playlist-artist {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 13px !important;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.2;
    letter-spacing: 0.2px;
    font-family: 'Roboto Mono', monospace;
}

.spotify-playlist-meta {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-wrap: wrap;
    margin-top: 2px;
}

.spotify-saves, .spotify-songs, .spotify-duration {
    color: rgba(255, 255, 255, 0.7) !important;
    font-size: 10px;
    font-weight: 500;
    white-space: nowrap;
}

.spotify-separator {
    color: rgba(255, 255, 255, 0.5) !important;
    font-size: 8px;
    margin: 0 1px;
}

.speech-bubble {
    display: none !important;
}

.discord-presence:hover, .spotify-widget:hover {
    transform: translateY(-2px);
    border-color: rgba(81, 81, 81, 1) !important;
}

.links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
    margin-top: 0;
    opacity: 0;
    transform: translateY(-30px);
    overflow: visible !important;
    width: 100%;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.link:hover {
    opacity: 1;
    transform: scale(1.2) !important;
}

.overlay-hidden .links {
    animation: fadeIn 0.6s ease-out 1.3s forwards;
}

.link {
    color: rgba(255, 255, 255);
    text-decoration: none;
    display: inline-block;
    transition: transform 0.3s;
    position: relative;
    z-index: 1;
    overflow: visible !important;
}

.icon {
    width: 42px;
    height: 42px;
    fill: rgba(255, 255, 255);
    transition: transform 0.4s, filter 0.4s;
    opacity: 0;
    transform: translateY(-30px);
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 0 3px rgba(255, 255, 255, 0.4)) drop-shadow(0 0 6px rgba(255, 255, 255, 0.3));
    overflow: visible !important;
}

.overlay-hidden .icon {
    animation: fadeIn 0.6s ease-out 1.4s forwards;
}

.icon-img {
    width: 42px;
    height: 42px;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(19%) sepia(0%) saturate(0%) hue-rotate(203deg) brightness(94%) contrast(87%);
    transition: transform 0.4s, filter 0.4s;
    opacity: 0;
    transform: translateY(-30px);
    display: block;
    margin: 0 auto;
}

    .icon-img:hover {
        transform: scale(1.3) rotate(5deg);
        filter: brightness(0) invert(1) drop-shadow(0 0 6px rgba(255, 255, 255, 0.4)) drop-shadow(0 0 12px rgba(255, 255, 255, 0.3));
    }

.overlay-hidden .icon-img {
    animation: fadeIn 0.6s ease-out 1.4s forwards;
}

.loc-views-container {
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0;
    transform: translateY(-30px);
    margin-top: 10px;
    animation: locViewsGlow 3s ease-in-out infinite alternate;
    overflow: visible !important;
}

.overlay-hidden .loc-views-container {
    animation: fadeIn 0.6s ease-out 1.5s forwards, locViewsGlow 3s ease-in-out infinite alternate;
}

@keyframes locViewsGlow {
    0% {
        text-shadow: 0 0 2px rgba(255, 255, 255, 0.8), 0 0 4px rgba(255, 255, 255, 0.6);
    }

    100% {
        text-shadow: 0 0 3px rgba(255, 255, 255, 0.9), 0 0 6px rgba(255, 255, 255, 0.7);
    }
}

.loc-bottom, .views-bottom {
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255);
    font-size: 18px;
    gap: 7px;
    text-shadow: 0 0 3px rgba(255, 255, 255, 0.9), 0 0 5px rgba(255, 255, 255, 0.7);
    overflow: visible !important;
}

    .loc-bottom .loc-icon, .views-bottom .view-icon {
        width: 18px;
        height: 18px;
        fill: rgba(255, 255, 255);
        filter: drop-shadow(0 0 2px rgba(255, 255, 255, 0.4)) drop-shadow(0 0 4px rgba(255, 255, 255, 0.3));
        animation: iconGlow 3s ease-in-out infinite alternate;
    }

@keyframes iconGlow {
    0% {
        filter: drop-shadow(0 0 1px rgba(255, 255, 255, 0.4)) drop-shadow(0 0 3px rgba(255, 255, 255, 0.3));
        opacity: 0.9;
    }

    100% {
        filter: drop-shadow(0 0 3px rgba(255, 255, 255, 0.4)) drop-shadow(0 0 6px rgba(255, 255, 255, 0.3));
        opacity: 1;
    }
}

.separator {
    color: rgba(255, 255, 255);
    font-size: 18px;
    font-weight: 300;
    opacity: 0.7;
    text-shadow: 0 0 2px rgba(255, 255, 255, 0.8), 0 0 4px rgba(255, 255, 255, 0.6);
    animation: separatorGlow 3s ease-in-out infinite alternate;
}

@keyframes separatorGlow {
    0% {
        opacity: 0.5;
        text-shadow: 0 0 1px rgba(255, 255, 255, 0.7), 0 0 2px rgba(255, 255, 255, 0.5);
    }

    100% {
        opacity: 0.8;
        text-shadow: 0 0 2px rgba(255, 255, 255, 0.8), 0 0 4px rgba(255, 255, 255, 0.6);
    }
}

.player {
    width: 730px;
    height: 85px;
    background: rgba(25, 25, 25, 0);
    border: 4px medium rgba(255, 255, 255);
    border-radius: 12px;
    padding: 10px 25px;
    color: #ddd;
    box-sizing: border-box;
    transform-style: preserve-3d;
    position: relative;
    transition: all 0.3s ease-out;
    backdrop-filter: blur(10px);
    opacity: 0;
    transform: translateY(20px);
    overflow: visible !important;
}

.overlay-hidden .player {
    animation: fadeIn 0.6s ease-out 1.6s forwards;
}

.player-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
    height: 58px;
    overflow: visible !important;
}

.art {
    width: 47px;
    height: 47px;
    border: 0px solid rgba(255, 255, 255, 0);
    border-radius: 6px;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
    background-size: cover;
    background-position: center;
}

.song-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    overflow: visible !important;
}

.song-name {
    font-size: 12px;
    font-weight: bold;
    margin-bottom: -8px;
    color: #fff;
}

.player-controls-container {
    display: flex;
    align-items: center;
    gap: 10px;
    overflow: visible !important;
}

.progress-container {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 6px;
    overflow: visible !important;
}

.time {
    font-size: 10px;
    min-width: 30px;
}

.progress-bar {
    flex: 1;
    height: 3px;
    background: rgba(50, 50, 50, 0.8);
    border-radius: 3px;
    overflow: hidden;
    position: relative;
}

.progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: #aaa;
    border-radius: 3px;
    transition: width 0.05s linear;
}

.player-controls {
    display: flex;
    align-items: center;
    gap: 0;
    overflow: visible !important;
}

.ctrl {
    background: transparent;
    border: none;
    color: #ddd;
    width: 36px !important;
    height: 36px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    padding: 0;
    margin: 0 -13px;
    transition: transform 0.2s ease, color 0.2s ease;
    position: relative;
    overflow: visible !important;
}

    .ctrl:hover {
        transform: scale(1.2) !important;
        color: #fff !important;
    }

    .ctrl svg {
        width: 20px !important;
        height: 20px !important;
        fill: currentColor;
    }

.play {
    width: 42px !important;
    height: 42px !important;
    margin: 0 -4px;
    color: #ddd;
}

    .play svg {
        width: 24px !important;
        height: 24px !important;
    }

.prev, .next {
    color: #aaa;
}

    .prev:hover, .next:hover {
        color: #ccc;
    }

.play:hover {
    color: #fff;
}

.hidden {
    display: none !important;
}

[title] {
    position: relative;
    overflow: hidden !important;
}

    [title]::before,
    [title]::after {
    display: none !important;
}

::selection {
    background-color: rgba(255, 255, 255, 0.3); 
    color: #ffffff;
}

/* Mozilla Firefox support */
::-moz-selection {
    background-color: rgba(255, 255, 255, 0.3);
    color: #ffffff;
}
    [title]::before {
        display: none !important;
    }

    [title]:hover::after,
    [title]:hover::before {
        opacity: 1;
        visibility: visible;
        transform: translateX(-50%) translateY(-8px);
    }

    [title]:hover::before {
        transform: translateX(-50%) translateY(-4px);
    }

.badge, .link, .ctrl, .profile-pic-container, .discord-avatar-container, .spotify-widget {
    overflow: visible !important;
}

    .badge[title]::after, .badge[title]::before {
        bottom: 120%;
    }

    .badge[title]:hover::after, .badge[title]:hover::before {
        transform: translateX(-50%) translateY(-12px);
    }

    .badge[title]:hover::before {
        transform: translateX(-50%) translateY(-8px);
    }

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(-30px);
    }

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

@media (max-width: 800px) {
    .c3d-container {
        width: 95vw;
        height: 200px;
        perspective: 800px;
        transform: translateY(50px);
    }

    .card {
        width: 90vw;
        max-width: 700px;
        height: auto;
        min-height: 280px;
        padding: 30px 40px;
    }

    .player {
        width: 90vw;
        max-width: 700px;
        height: 85px;
        padding: 10px 25px;
    }

    .presence-container {
        flex-direction: row;
        gap: 15px;
    }

    .discord-presence, .spotify-widget {
        width: calc(50% - 8px);
        max-width: none;
        height: 80px;
    }

    .overlay-title {
        font-size: 64px;
        letter-spacing: 4px;
    }

    .name {
        font-size: 28px;
    }

    .badges-container {
        padding: 5px 10px;
    }

    .badge svg {
        width: 16px;
        height: 16px;
    }

    .links {
        gap: 30px;
    }

    .icon {
        width: 42px;
        height: 42px;
    }

    .icon-img {
        width: 42px;
        height: 42px;
    }

    .discord-activity-line {
        max-width: calc(100% - 50px);
    }

    #custom-cursor {
        display: none;
    }

    html, body, * {
        cursor: auto !important;
    }
}

@media (max-width: 600px) {
    .presence-container {
        flex-direction: column;
        gap: 10px;
    }

    .discord-presence, .spotify-widget {
        width: 100%;
    }

    .links {
        gap: 20px;
    }
}
