.cheat-mode-btn {
    position: fixed;
    top: 20px;
    right: 20px;
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-family: 'Courier New', monospace;
    font-weight: bold;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
    transition: all 0.3s ease;
    z-index: 10001;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.cheat-mode-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.6);
}

.cheat-mode-btn:active {
    transform: translateY(0);
}

.cheat-text {
    font-size: 12px;
    opacity: 0.9;
}

.cheat-status {
    font-size: 16px;
    font-weight: bold;
    text-shadow: 0 0 10px currentColor;
}

body.cheat-mode-active * {
    outline: 2px solid #00ff00 !important;
    outline-offset: 1px !important;
}

body.cheat-mode-active .bio-box {
    outline: 3px solid #00ff00 !important;
    outline-offset: 2px !important;
}

body.cheat-mode-active .profile-pic {
    outline: 2px solid #ff0000 !important;
    outline-offset: 1px !important;
}

body.cheat-mode-active .name {
    outline: 2px solid #0000ff !important;
    outline-offset: 1px !important;
}

body.cheat-mode-active .bio {
    outline: 2px solid #ffff00 !important;
    outline-offset: 1px !important;
}

body.cheat-mode-active .music-player {
    outline: 2px solid #ff00ff !important;
    outline-offset: 1px !important;
}

body.cheat-mode-active .socials {
    outline: 2px solid #00ffff !important;
    outline-offset: 1px !important;
}

body.cheat-mode-active .social-link {
    outline: 2px solid #ff8800 !important;
    outline-offset: 1px !important;
}

body.cheat-mode-active .control-btn {
    outline: 2px solid #8800ff !important;
    outline-offset: 1px !important;
}

body.cheat-mode-active .progress-bar {
    outline: 2px solid #008800 !important;
    outline-offset: 1px !important;
}

body.cheat-mode-active .volume-slider {
    outline: 2px solid #880088 !important;
    outline-offset: 1px !important;
}

body.cheat-mode-active .cheat-mode-btn {
    outline: 3px solid #00ff00 !important;
    outline-offset: 2px !important;
}

body.cheat-mode-active .vbs-error {
    outline: 2px solid #ff0000 !important;
    outline-offset: 1px !important;
}

body.cheat-mode-active .vbs-content {
    outline: 2px solid #ff0000 !important;
    outline-offset: 1px !important;
}

body.cheat-mode-active .vbs-header {
    outline: 2px solid #ff0000 !important;
    outline-offset: 1px !important;
}

body.cheat-mode-active .vbs-body {
    outline: 2px solid #ff0000 !important;
    outline-offset: 1px !important;
}

body.cheat-mode-active .vbs-footer {
    outline: 2px solid #ff0000 !important;
    outline-offset: 1px !important;
}

body.cheat-mode-active .vbs-button {
    outline: 2px solid #ff0000 !important;
    outline-offset: 1px !important;
}

body.cheat-mode-active #matrix-rain {
    outline: 2px solid #00ff00 !important;
    outline-offset: 1px !important;
}

body.cheat-mode-active .particle {
    outline: 2px solid #00ff00 !important;
    outline-offset: 1px !important;
}

body.cheat-mode-active .cursor-trail {
    outline: 2px solid #00ff00 !important;
    outline-offset: 1px !important;
}

.vbs-error {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.vbs-content {
    background: #f0f0f0;
    border: 2px solid #c0c0c0;
    border-radius: 0;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    width: 400px;
    max-width: 90vw;
    animation: vbsAppear 0.3s ease-out;
}

@keyframes vbsAppear {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.vbs-header {
    background: linear-gradient(to bottom, #0054e3 0%, #0047c7 100%);
    color: white;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: bold;
    cursor: default;
}

.vbs-icon {
    font-size: 16px;
}

.vbs-title {
    flex: 1;
}

.vbs-close {
    cursor: pointer;
    padding: 2px 6px;
    border-radius: 2px;
    transition: background 0.2s;
}

.vbs-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.vbs-body {
    padding: 20px;
    background: white;
    border-bottom: 1px solid #c0c0c0;
}

.vbs-message {
    font-size: 11px;
    line-height: 1.4;
    color: #333;
    font-family: 'Consolas', 'Courier New', monospace;
}

.vbs-footer {
    padding: 12px 20px;
    background: #f0f0f0;
    text-align: right;
}

.vbs-button {
    background: linear-gradient(to bottom, #f0f0f0 0%, #e0e0e0 100%);
    border: 1px solid #c0c0c0;
    padding: 6px 16px;
    font-size: 11px;
    cursor: pointer;
    border-radius: 2px;
    transition: all 0.2s;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.vbs-button:hover {
    background: linear-gradient(to bottom, #e8e8e8 0%, #d8d8d8 100%);
    border-color: #a0a0a0;
}

.vbs-button:active {
    background: linear-gradient(to bottom, #d8d8d8 0%, #c8c8c8 100%);
    transform: translateY(1px);
}

@font-face {
    font-family: 'BurbankBigCondensedBlack';
    src: url('../fonts/burbank.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'BurbankBigCondensedBlack', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #0a0a0a;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    overflow: hidden;
    position: relative;
}

#matrix-rain {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -3;
    opacity: 0.3;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(120, 219, 255, 0.2) 0%, transparent 50%);
    z-index: -2;
}

.particle {
    position: fixed;
    width: 2px;
    height: 2px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) translateX(0px);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-20px) translateX(10px);
        opacity: 1;
    }
}

.container {
    width: 100%;
    max-width: 450px;
    padding: 20px;
    position: relative;
    z-index: 1;
}

.bio-box {
    background: rgba(20, 20, 20, 0.8);
    backdrop-filter: blur(20px);
    border-radius: 22px;
    padding: 45px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.available-indicator {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(76, 175, 80, 0.9);
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.4);
    z-index: 10;
    transition: all 0.3s ease;
}

.available-indicator:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.6);
}

.available-dot {
    width: 8px;
    height: 8px;
    background: #ffffff;
    border-radius: 50%;
    animation: availablePulse 2s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

@keyframes availablePulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.3);
    }
}

.available-text {
    font-size: 0.8rem;
    color: #ffffff;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.bio-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 22px;
    padding: 1px;
    background: linear-gradient(45deg, #667eea, #764ba2, #f093fb);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0.3;
}

.bio-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.7);
}

.profile-pic {
    width: 130px;
    height: 130px;
    margin: 0 auto 22px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #667eea;
    transition: transform 0.3s ease;
    position: relative;
}

.profile-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.profile-pic:hover .profile-overlay {
    opacity: 1;
}

.file-extension {
    color: #00ff00;
    font-family: 'Consolas', 'Courier New', monospace;
    font-size: 1.2rem;
    font-weight: bold;
    text-shadow: 0 0 10px #00ff00;
    animation: fileGlow 2s ease-in-out infinite;
}

@keyframes fileGlow {
    0%, 100% {
        text-shadow: 0 0 10px #00ff00;
    }
    50% {
        text-shadow: 0 0 20px #00ff00, 0 0 30px #00ff00;
    }
}

.system-info {
    font-size: 0.8rem;
    color: #888888;
    font-family: 'Consolas', 'Courier New', monospace;
    display: block;
    margin-top: 8px;
    padding: 4px 8px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.profile-pic::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #667eea, #764ba2, #f093fb);
    border-radius: 50%;
    z-index: -1;
    animation: borderGlow 3s ease-in-out infinite;
}

@keyframes borderGlow {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
}

.profile-pic:hover {
    transform: scale(1.05);
}

.profile-pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    transition: opacity 0.3s ease;
}

.profile-img-main {
    opacity: 1;
    z-index: 1;
}

.profile-img-hover {
    opacity: 0;
    z-index: 2;
}

.profile-pic:hover .profile-img-main {
    opacity: 0;
}

.profile-pic:hover .profile-img-hover {
    opacity: 1;
}

.name {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #ffffff;
    text-shadow: 0 0 10px rgba(102, 126, 234, 0.5);
}

.bio {
    font-size: 1.1rem;
    color: #cccccc;
    margin-bottom: 20px;
    line-height: 1.6;
}

.status-indicator {
    position: absolute;
    top: -10px;
    right: -10px;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(102, 126, 234, 0.9);
    border-radius: 15px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
    z-index: 10;
    transform: scale(0.9);
}

.status-dot {
    width: 6px;
    height: 6px;
    background: #00ff00;
    border-radius: 50%;
    animation: statusPulse 2s ease-in-out infinite;
    box-shadow: 0 0 8px #00ff00;
}

@keyframes statusPulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.2);
    }
}

.status-text {
    font-size: 0.75rem;
    color: #ffffff;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.currently-listening {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
    padding: 12px 16px;
    background: rgba(255, 119, 198, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(255, 119, 198, 0.3);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.currently-listening:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 119, 198, 0.2);
}

.listening-icon {
    font-size: 20px;
    animation: musicBounce 1s ease-in-out infinite;
}

@keyframes musicBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-3px);
    }
}

.listening-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.listening-label {
    font-size: 0.8rem;
    color: #cccccc;
    opacity: 0.8;
}

.listening-track {
    font-size: 0.95rem;
    color: #ffffff;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(255, 119, 198, 0.5);
}

.name {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #ffffff;
    text-shadow: 0 0 10px rgba(102, 126, 234, 0.5);
    position: relative;
}

.name::after {
    content: '.dll';
    font-size: 1.2rem;
    color: #ff6b6b;
    margin-left: 5px;
    opacity: 0.8;
    animation: exeBlink 2s ease-in-out infinite;
}

@keyframes exeBlink {
    0%, 100% {
        opacity: 0.8;
    }
    50% {
        opacity: 0.3;
    }
}

.bio code {
    padding: 4px 8px;
    font-family: 'Consolas', 'Courier New', monospace;
}

.music-player {
    background: rgba(102, 126, 234, 0.1);
    border-radius: 18px;
    padding: 18px;
    margin-bottom: 32px;
    border: 1px solid rgba(102, 126, 234, 0.3);
    backdrop-filter: blur(10px);
}

.music-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
    gap: 15px;
}

.song-info {
    flex: 1;
    text-align: left;
}

#song-title {
    display: block;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 3px;
    font-size: 1rem;
}

#song-artist {
    display: block;
    font-size: 0.9rem;
    color: #cccccc;
}

.album-art {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid rgba(102, 126, 234, 0.3);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.2);
}

.album-art img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.album-art:hover img {
    transform: scale(1.05);
}

.controls {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 15px;
}

.control-btn {
    background: linear-gradient(45deg, #667eea, #764ba2);
    border: none;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.control-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.5);
}

.progress {
    flex: 1;
}

.progress-bar {
    width: 100%;
    height: 5px;
    background: rgba(102, 126, 234, 0.2);
    border-radius: 3px;
    overflow: hidden;
    cursor: pointer;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #667eea, #764ba2);
    width: 0%;
    transition: width 0.1s ease;
    box-shadow: 0 0 10px rgba(102, 126, 234, 0.5);
}

.volume-control {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
}

.volume-icon {
    color: #667eea;
    font-size: 16px;
    width: 20px;
}

.volume-slider {
    flex: 1;
    height: 4px;
    background: rgba(102, 126, 234, 0.2);
    border-radius: 2px;
    outline: none;
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
}

.volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 16px;
    height: 16px;
    background: #667eea;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(102, 126, 234, 0.5);
}

.volume-slider::-moz-range-thumb {
    width: 16px;
    height: 16px;
    background: #667eea;
    border-radius: 50%;
    cursor: pointer;
    border: none;
    box-shadow: 0 0 10px rgba(102, 126, 234, 0.5);
}

.socials {
    display: flex;
    justify-content: center;
    gap: 22px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #667eea;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    background: none;
    padding: 0;
    width: 40px;
    height: 40px;
    filter: drop-shadow(0 0 8px rgba(102, 126, 234, 0.6));
}

.social-link svg {
    width: 30px;
    height: 30px;
}

.social-link span {
    font-size: 24px;
}

.social-link:hover {
    color: #ffffff;
    transform: translateY(-2px) scale(1.1);
    filter: drop-shadow(0 0 12px rgba(102, 126, 234, 0.8));
}

.social-link.crypto-link {
    position: relative;
}

.social-link.crypto-link::after {
    content: 'Click to copy';
    position: absolute;
    bottom: -32px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 10px;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    white-space: nowrap;
}

.social-link.crypto-link:hover::after {
    opacity: 1;
}

.social-link.crypto-link.copied::after {
    content: 'Copied!';
    background: rgba(76, 175, 80, 0.8);
}

.cursor-trail {
    position: fixed;
    width: 6px;
    height: 6px;
    background: linear-gradient(45deg, #667eea, #f093fb);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    animation: cursorFade 1s linear forwards;
    box-shadow: 0 0 10px rgba(102, 126, 234, 0.8);
}

@keyframes cursorFade {
    0% {
        opacity: 1;
        transform: scale(1);
    }
    100% {
        opacity: 0;
        transform: scale(0);
    }
}

.spotify-status {
    position: fixed;
    top: 20px;
    left: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(255, 119, 198, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(255, 119, 198, 0.3);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    z-index: 1000;
    max-width: 300px;
}

.spotify-status:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 119, 198, 0.2);
}

.spotify-icon {
    font-size: 20px;
    animation: musicBounce 1s ease-in-out infinite;
}

.spotify-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.spotify-label {
    font-size: 0.8rem;
    color: #cccccc;
    opacity: 0.8;
}

.spotify-track {
    font-size: 0.9rem;
    color: #ffffff;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(255, 119, 198, 0.5);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (max-width: 480px) {
    .container {
        padding: 15px;
        max-width: 400px;
    }
    
    .bio-box {
        padding: 35px 20px;
    }
    
    .profile-pic {
        width: 110px;
        height: 110px;
    }
    
    .name {
        font-size: 1.8rem;
    }
    
    .bio {
        font-size: 1rem;
    }
    
    .spotify-status {
        top: 10px;
        left: 10px;
        right: 10px;
        max-width: none;
        padding: 10px 12px;
    }
    
    .spotify-track {
        font-size: 0.8rem;
    }
    
    .status-indicator {
        top: -8px;
        right: -8px;
        padding: 4px 8px;
        transform: scale(0.8);
    }
    
    .status-text {
        font-size: 0.7rem;
    }
    
    .available-indicator {
        top: 10px;
        right: 10px;
        padding: 6px 12px;
        transform: scale(0.9);
    }
    
    .available-text {
        font-size: 0.7rem;
    }
}
