* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
             cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32"><circle cx="16" cy="16" r="12" fill="black" fill-opacity="0.4"/></svg>') 16 16, auto;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
            overflow-x: hidden;
        }

        .container {
            max-width: 500px;
            width: 100%;
            position: relative;
        }

        .glass-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(20px);
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            padding: 30px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            animation: slideUp 0.8s ease-out;
        }

        .glass-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
        }

        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .profile-header {
            text-align: center;
            margin-bottom: 25px;
        }

        .avatar-container {
            position: relative;
            display: inline-block;
            margin-bottom: 15px;
        }

        .avatar {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            border: 4px solid rgba(255, 255, 255, 0.3);
            transition: all 0.3s ease;
            animation: pulse 2s infinite;
            cursor: pointer;
        }

        .avatar:hover {
            transform: scale(1.05);
            border-color: rgba(255, 255, 255, 0.5);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
        }

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

        .status-indicator {
            position: absolute;
            bottom: 5px;
            right: 5px;
            width: 25px;
            height: 25px;
            border-radius: 50%;
            border: 3px solid white;
            transition: all 0.3s ease;
        }

        .status-online { background: #43b581; }
        .status-idle { background: #faa61a; }
        .status-dnd { background: #f04747; }
        .status-offline { background: #747f8d; }

        .platform-indicators {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 10px;
    opacity: 0;
    animation: fadeIn 1s ease-out 0.4s forwards;
}

.platform-icon {
    width: 28px;
    height: 28px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 12px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.platform-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.platform-icon:hover::before {
    left: 100%;
}

.platform-icon:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.platform-icon.desktop {
    background: rgba(116, 127, 141, 0.2);
    border-color: rgba(116, 127, 141, 0.4);
}

.platform-icon.desktop:hover {
    background: rgba(116, 127, 141, 0.3);
    box-shadow: 0 4px 15px rgba(116, 127, 141, 0.3);
}

.platform-icon.mobile {
    background: rgba(67, 181, 129, 0.2);
    border-color: rgba(67, 181, 129, 0.4);
}

.platform-icon.mobile:hover {
    background: rgba(67, 181, 129, 0.3);
    box-shadow: 0 4px 15px rgba(67, 181, 129, 0.3);
}

.platform-icon.web {
    background: rgba(88, 101, 242, 0.2);
    border-color: rgba(88, 101, 242, 0.4);
}

.platform-icon.web:hover {
    background: rgba(88, 101, 242, 0.3);
    box-shadow: 0 4px 15px rgba(88, 101, 242, 0.3);
}

.platform-tooltip {
    position: absolute;
    bottom: 35px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 6px 10px;
    border-radius: 4px;
    font-size: 11px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    pointer-events: none;
}

.platform-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 4px solid transparent;
    border-top-color: rgba(0, 0, 0, 0.9);
}

.platform-icon:hover .platform-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(-3px);
}

@media (max-width: 480px) {
    .platform-icon {
        width: 24px;
        height: 24px;
        font-size: 10px;
    }
    
    .platform-indicators {
        gap: 6px;
    }
}

        .username {
            color: white;
            font-size: 24px;
            font-weight: 600;
            margin-bottom: 5px;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
        }

        .discriminator {
            color: rgba(255, 255, 255, 0.7);
            font-size: 16px;
            margin-bottom: 10px;
        }

        .bio-section {
    margin: 20px 0;
    opacity: 0;
    animation: fadeIn 1s ease-out 0.3s forwards;
}

.bio-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.bio-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.bio-title {
    color: white;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.bio-text {
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    line-height: 1.6;
    text-align: left;
    max-width: 100%;
    word-wrap: break-word;
}

.bio-text::first-letter {
    font-size: 1.2em;
    font-weight: 600;
    color: white;
}

        .activity-section {
            margin: 20px 0;
            opacity: 0;
            animation: fadeIn 1s ease-out 0.5s forwards;
        }

        @keyframes fadeIn {
            to { opacity: 1; }
        }

        .activity-card {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 15px;
            padding: 15px;
            margin-bottom: 15px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
        }

        .activity-card:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: scale(1.02);
        }

        .activity-title {
            color: white;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 8px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .activity-details {
            color: rgba(255, 255, 255, 0.8);
            font-size: 12px;
            line-height: 1.4;
        }

        .spotify-section {
            background: linear-gradient(135deg, #1db954, #1ed760);
            border-radius: 15px;
            padding: 15px;
            margin: 15px 0;
            color: white;
            transition: all 0.3s ease;
            opacity: 0;
            animation: slideInLeft 0.8s ease-out 0.7s forwards;
        }

        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .spotify-section:hover {
            transform: scale(1.02);
            box-shadow: 0 8px 25px rgba(29, 185, 84, 0.3);
        }

        .spotify-header {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 10px;
        }

        .spotify-icon {
            font-size: 18px;
        }

        .song-info {
            margin-bottom: 10px;
        }

        .song-title {
            font-weight: 600;
            font-size: 14px;
            margin-bottom: 2px;
        }

        .song-artist {
            font-size: 12px;
            opacity: 0.9;
        }

        .progress-container {
            background: rgba(255, 255, 255, 0.2);
            height: 4px;
            border-radius: 2px;
            overflow: hidden;
            margin-bottom: 5px;
        }

        .progress-bar {
            height: 100%;
            background: white;
            border-radius: 2px;
            transition: width 1s linear;
            animation: progressPulse 2s infinite;
        }

        .progress-bar.correcting {
            transition: width 0.5s ease;
        }

        @keyframes progressPulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.8; }
        }

        .progress-time {
            display: flex;
            justify-content: space-between;
            font-size: 10px;
            opacity: 0.8;
        }

        .spotify-content {
    display: flex;
    gap: 15px;
    align-items: center;
}

.album-cover-container {
    position: relative;
    flex-shrink: 0;
}

.album-cover {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.album-cover:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.song-details {
    flex: 1;
    min-width: 0;
}

.tooltip {
    position: absolute;
    bottom: 70px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    pointer-events: none;
}

.tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: rgba(0, 0, 0, 0.9);
}

.album-cover-container:hover .tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(-5px);
}

.spotify-transition {
    transition: all 0.5s ease;
}

.spotify-transition.fade-out {
    opacity: 0;
    transform: translateY(-10px);
}

.spotify-transition.fade-in {
    opacity: 1;
    transform: translateY(0);
}

.song-change-animation {
    animation: songChange 0.5s ease;
}

@keyframes songChange {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.sync-indicator {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.sync-indicator.synced {
    background: #43b581;
    box-shadow: 0 0 8px rgba(67, 181, 129, 0.5);
}

.sync-indicator.correcting {
    background: #faa61a;
    animation: syncPulse 1s infinite;
}

.sync-indicator.error {
    background: #f04747;
}

@keyframes syncPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    transform: scale(0.8);
    transition: all 0.3s ease;
}

.modal-overlay.active .modal-content {
    transform: scale(1);
}

.modal-image {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    max-width: 500px;
}

.modal-close {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #333;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.modal-close:hover {
    background: white;
    transform: scale(1.1);
}

.modal-info {
    position: absolute;
    bottom: -60px;
    left: 0;
    right: 0;
    text-align: center;
    color: white;
    background: rgba(0, 0, 0, 0.7);
    padding: 15px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.modal-song-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

.modal-song-details {
    font-size: 14px;
    opacity: 0.9;
}

.avatar-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.avatar-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.avatar-modal-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    transform: scale(0.8);
    transition: all 0.3s ease;
}

.avatar-modal-overlay.active .avatar-modal-content {
    transform: scale(1);
}

.avatar-modal-image {
    width: 100%;
    height: auto;
    border-radius: 50%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    max-width: 400px;
    border: 6px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.avatar-modal-close {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #333;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.avatar-modal-close:hover {
    background: white;
    transform: scale(1.1);
}

.avatar-modal-actions {
    position: absolute;
    bottom: -70px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    width: 100%;
    justify-content: center;
}

.avatar-action-btn {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 12px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.avatar-action-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.avatar-action-btn.download {
    background: rgba(67, 181, 129, 0.2);
    border-color: rgba(67, 181, 129, 0.4);
}

.avatar-action-btn.download:hover {
    background: rgba(67, 181, 129, 0.3);
    box-shadow: 0 8px 25px rgba(67, 181, 129, 0.3);
}

.avatar-modal-info {
    position: absolute;
    top: -60px;
    left: 0;
    right: 0;
    text-align: center;
    color: white;
    background: rgba(0, 0, 0, 0.7);
    padding: 15px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.avatar-modal-username {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

.avatar-modal-id {
    font-size: 12px;
    opacity: 0.7;
    font-family: 'Courier New', monospace;
}

        .links-section {
            margin-top: 25px;
            opacity: 0;
            animation: fadeIn 1s ease-out 0.9s forwards;
        }

        .links-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(65px, 1fr));
            gap: 15px;
        }
        .link-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 15px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 12px;
            text-decoration: none;
            color: white;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .link-item:hover {
            background: rgba(255, 255, 255, 0.15);
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
        }

        .link-icon {
            font-size: 20px;
            margin-bottom: 8px;
            transition: all 0.3s ease;
        }

        .link-item:hover .link-icon {
            transform: scale(1.2);
        }

        .link-label {
            font-size: 12px;
            font-weight: 500;
        }

        .loading {
            text-align: center;
            color: rgba(255, 255, 255, 0.7);
            padding: 20px;
        }

        .error {
            text-align: center;
            color: #f04747;
            padding: 20px;
            background: rgba(240, 71, 71, 0.1);
            border-radius: 10px;
            border: 1px solid rgba(240, 71, 71, 0.3);
        }

        @media (max-width: 480px) {
            .glass-card {
                padding: 20px;
            }
            
            .username {
                font-size: 20px;
            }
            
            .links-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .bio-text {
                font-size: 13px;
            }

            .bio-title {
                font-size: 15px;
            }
        }

        .floating-particles {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: -1;
        }

        .particle {
            position: absolute;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            animation: float 6s infinite linear;
        }

        @keyframes float {
            0% {
                transform: translateY(100vh) rotate(0deg);
                opacity: 0;
            }
            10% {
                opacity: 1;
            }
            90% {
                opacity: 1;
            }
            100% {
                transform: translateY(-100px) rotate(360deg);
                opacity: 0;
            }
        }
/*IPAD*/
@media (max-width: 1024px) and (min-width: 600px) {
    html, body {
        height: 100vh;
        min-height: 100vh;
        overflow: hidden;
    }
    .container {
        max-width: 95vw;
        width: 100vw;
        min-height: 90vh;
        padding: 10px 0;
    }
    .glass-card {
        padding: 18px;
    }
    .bio-section,
    .activity-section,
    .links-section {
        margin: 12px 0;
    }
    .username {
        font-size: 18px;
    }
    .bio-text {
        font-size: 13px;
    }
    .link-label {
        font-size: 11px;
    }
    .links-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
}
/*BANGER DISCORD THING*/
/* From Uiverse.io by kamehame-ha */ 
.light-button button.bt {
  position: relative;
  height: 200px;
  display: flex;
  align-items: flex-end;
  outline: none;
  background: none;
  border: none;
  cursor: pointer;
}

.light-button button.bt .button-holder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100px;
  width: 100px;
  background-color: #0a0a0a;
  border-radius: 5px;
  color: #0f0f0f;
  font-weight: 700;
  transition: 300ms;
  outline: #0f0f0f 2px solid;
  outline-offset: 20;
}

.light-button button.bt .button-holder svg {
  height: 50px;
  fill: #0f0f0f;
  transition: 300ms;
}

.light-button button.bt .light-holder {
  position: absolute;
  height: 200px;
  width: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.light-button button.bt .light-holder .dot {
  position: absolute;
  top: 0;
  width: 10px;
  height: 10px;
  background-color: #0a0a0a;
  border-radius: 10px;
  z-index: 2;
}

.light-button button.bt .light-holder .light {
  position: absolute;
  top: 0;
  width: 200px;
  height: 200px;
  clip-path: polygon(50% 0%, 25% 100%, 75% 100%);
  background: transparent;
}

.light-button button.bt:hover .button-holder svg {
  fill: rgba(88, 101, 242, 1);
}

.light-button button.bt:hover .button-holder {
  color: rgba(88, 101, 242, 1);
  outline: rgba(88, 101, 242, 1) 2px solid;
  outline-offset: 2px;
}

.light-button button.bt:hover .light-holder .light {
  background: rgb(255, 255, 255);
  background: linear-gradient(
    180deg,
    rgba(88, 101, 242, 1) 0%,
    rgba(255, 255, 255, 0) 75%,
    rgba(255, 255, 255, 0) 100%
  );
}
.light-button {
    position: relative;
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.version-info {
    position: fixed;
    bottom: 10px;
    right: 10px;
    font-size: 0.8em;
    color: rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    gap: 5px;
    z-index: 100;
    background: rgba(0, 0, 0, 0.3);
    padding: 5px 10px;
    border-radius: 4px;
}

.version-info i {
    font-size: 0.9em;
}

.version-info:hover {
    color: rgba(255, 255, 255, 0.8);
    background: rgba(0, 0, 0, 0.5);
    transition: all 0.2s ease;
}