/* Click Overlay */
.click-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: 1000;
    cursor: pointer;
    transition: opacity 0.5s ease;
}

.click-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.overlay-content {
    text-align: center;
    color: #ffffff;
    animation: pulse 2s infinite;
}

.overlay-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    color: #ffffff;
}

.overlay-content h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 10px;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.overlay-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
}

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

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #000;
    color: #ffffff;
    overflow-x: hidden;
    cursor: url('https://r2.guns.lol/c1916e58-6b8f-4abc-b103-b765943927bd.png') 16 16, auto !important;
}

/* Video Background */
.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    overflow: hidden;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(48, 87, 150, 0.3) 0%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 1;
}

/* Main Container */
.main-container {
    position: relative;
    z-index: 10;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    max-width: 40rem;
    margin: 0 auto;
}

/* Profile Container */
.profile-container {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
}

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

.avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.4);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.avatar:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
}

.avatar-border {
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border-radius: 50%;
    background: linear-gradient(45deg, #ffffff, #888888, #ffffff);
    background-size: 200% 200%;
    animation: borderGlow 3s ease-in-out infinite;
    z-index: 1;
}

@keyframes borderGlow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.profile-info {
    color: #ffffff;
}

.username {
    font-size: 39.5px;
    font-weight: 600;
    margin-bottom: 10px;
    text-shadow: 0 0 16.5px #ffffff;
    background: linear-gradient(45deg, #ffffff, #cccccc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.location {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 450;
    color: rgba(255, 255, 255, 0.7);
}

.location i {
    font-size: 14px;
}


/* Social Links Container */
.social-links-container {
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: 15px;
    margin-bottom: 30px;
    justify-content: center;
}

.social-link {
    display: flex;
    align-items: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.22);
    border: 2px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.32);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

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

.social-link:hover::before {
    left: 100%;
}

.link-icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 20px;
    transition: all 0.3s ease;
}

.social-link:hover .link-icon {
    transform: scale(1.1);
}

.link-content {
    flex: 1;
}

.link-title {
    font-size: 16px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

/* Social Link Colors */
.spotify .link-icon {
    background: linear-gradient(135deg, #1db954, #1ed760);
    color: white;
}

.discord .link-icon {
    background: linear-gradient(135deg, #5865f2, #4752c4);
    color: white;
}

.discord-nickname {
    display: block;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 2px;
    font-weight: 400;
}

/* Additional Links Container */
.additional-links-container {
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: 15px;
    margin-bottom: 30px;
    justify-content: center;
}

.blog .link-icon {
    background: linear-gradient(135deg, #ff6b6b, #ff8e8e);
    color: white;
}

.about .link-icon {
    background: linear-gradient(135deg, #4ecdc4, #44a08d);
    color: white;
}

/* Audio Player Styles */
.audio-player {
    width: 100%;
    background: rgba(255, 255, 255, 0.22);
    border: 2px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    padding: 20px;
    backdrop-filter: blur(10px);
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.audio-player:hover {
    background: rgba(255, 255, 255, 0.32);
    border-color: rgba(255, 255, 255, 0.25);
}

.audio-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.track-cover {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.1);
}

.track-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.track-details h3 {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 5px;
}

.track-details p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.audio-controls {
    display: flex;
    align-items: center;
    gap: 15px;
}

.control-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.control-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.progress-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.progress-bar {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    overflow: hidden;
    cursor: pointer;
}

.progress {
    height: 100%;
    background: #ffffff;
    width: 0%;
    transition: width 0.1s ease;
}

.time-info {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
}

.volume-control {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.7);
}

.volume-control input[type="range"] {
    width: 60px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    outline: none;
    cursor: pointer;
}

.volume-control input[type="range"]::-webkit-slider-thumb {
    appearance: none;
    width: 12px;
    height: 12px;
    background: #ffffff;
    border-radius: 50%;
    cursor: pointer;
}

.volume-control input[type="range"]::-moz-range-thumb {
    width: 12px;
    height: 12px;
    background: #ffffff;
    border-radius: 50%;
    cursor: pointer;
    border: none;
}

/* Page Views */
.page-views {
    position: fixed;
    bottom: 12px;
    left: 15px;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    font-weight: 550;
    color: rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 12px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Custom Cursor */
.custom-cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: difference;
    transition: transform 0.1s ease;
}

/* Selection Colors */
::selection {
    background: #ffffff;
    color: #305796;
}

::-moz-selection {
    background: #ffffff;
    color: #305796;
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-container {
        padding: 15px;
        max-width: 100%;
    }
    
    .username {
        font-size: 32px;
    }
    
    .avatar {
        width: 100px;
        height: 100px;
    }
    
    .social-links-container,
    .additional-links-container {
        flex-direction: column;
        align-items: center;
    }
    
    .social-link {
        padding: 15px;
        width: 100%;
        max-width: 300px;
    }
    
    .link-icon {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    .status-container {
        padding: 15px;
    }
    
    .status-content h3 {
        font-size: 16px;
    }
    
    .status-content p {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .username {
        font-size: 28px;
    }
    
    .avatar {
        width: 80px;
        height: 80px;
    }
    
    .social-link {
        padding: 12px;
    }
    
    .link-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
        margin-right: 12px;
    }
    
    .link-title {
        font-size: 14px;
    }
}

/* Animation Effects */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.profile-container {
    animation: fadeInUp 0.8s ease-out;
}

.discord-status {
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.social-link {
    animation: fadeInUp 0.6s ease-out both;
}

.social-link:nth-child(1) { animation-delay: 0.4s; }
.social-link:nth-child(2) { animation-delay: 0.5s; }
.social-link:nth-child(3) { animation-delay: 0.6s; }
.social-link:nth-child(4) { animation-delay: 0.7s; }
.social-link:nth-child(5) { animation-delay: 0.8s; }

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #000;
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.5);
}
