@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@keyframes gradientAnimation {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(
        -45deg,
        #1a1a1a,
        #1c1515,
        #3d0000,
        #2a2020,
        #1a1a1a
    );
    background-size: 400% 400%;
    animation: gradientAnimation 20s ease infinite;
    color: #ffffff;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.container {
    text-align: left;
    padding: 2rem;
    max-width: 800px;
    width: 100%;
    position: relative;
    z-index: 2;
    background: rgba(26, 26, 26, 0.3);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform-style: preserve-3d;
    transform: perspective(1000px);
    transition: transform 0.1s ease-out;
    will-change: transform;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.05),
                0 0 40px rgba(255, 255, 255, 0.02),
                inset 0 0 10px rgba(255, 255, 255, 0.05);
}

.main-content {
    position: relative;
    margin-bottom: 0;
}

.embeds-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.embed {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    background: rgba(26, 26, 26, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.embed:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.discord-embed {
    height: 250px;
}

.spotify-embed {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 280px;
    border-radius: 10px;
    overflow: hidden;
    background: rgba(26, 26, 26, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    margin-left: 2rem;
}

.spotify-embed:hover {
    transform: translateY(-50%) translateY(-2px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.spotify-embed iframe {
    border-radius: 10px;
    display: block;
}

.profile-section {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    position: relative;
}

.info-section {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding-top: 0.2rem;
    min-width: 200px;
}

.name-badge-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.profile-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 2px solid rgba(61, 0, 0, 0.5);
    transition: transform 0.3s ease, border-color 0.3s ease;
    flex-shrink: 0;
}

.profile-img:hover {
    transform: scale(1.05);
    border-color: rgba(61, 0, 0, 0.8);
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    animation: neonPulse 3s ease-in-out infinite;
    letter-spacing: 2px;
}

.badges {
    display: flex;
    gap: 0.7rem;
    align-items: center;
    background: rgba(26, 26, 26, 0.85);
    padding: 0.3rem 0.8rem;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3),
                inset 0 0 30px rgba(61, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.badge {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    text-shadow: 0 0 10px currentColor;
}

/* Owner Badge */
.badge[title="Owner"] {
    color: #ffd700;
    font-size: 1rem;
}

.badge[title="Owner"]:hover {
    text-shadow: 0 0 15px #ffd700;
}

/* Developer Badge */
.badge[title="Developer"] {
    color: #0078d4;
}

.badge[title="Developer"]:hover {
    text-shadow: 0 0 15px #0078d4;
}

/* Admin Badge */
.badge[title="Admin"] {
    color: #ff3c3c;
}

.badge[title="Admin"]:hover {
    text-shadow: 0 0 15px #ff3c3c;
}

/* v24 Badge */
.badge[title="v24"] {
    color: #ffffff;
    font-weight: bold;
    font-style: italic;
    font-family: 'Inter', sans-serif;
}

.v24-icon {
    font-size: 1.1rem;
    background: linear-gradient(45deg, #ff3c3c, #ffffff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* VIP Badge */
.badge[title="VIP"] {
    color: #ffd700;
}

.badge[title="VIP"]:hover {
    text-shadow: 0 0 15px #ffd700;
}

/* Remove Premium badge styles */
.badge[title="Premium"] {
    display: none;
}

.badge:hover {
    transform: translateY(-5px) scale(1.1);
}

.badge::after {
    content: attr(title);
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.badge:hover::after {
    opacity: 1;
    visibility: visible;
}

.bio-text {
    color: rgba(220, 230, 255, 0.9);
    font-size: 1.1rem;
    letter-spacing: 1px;
    position: relative;
    text-transform: lowercase;
    font-weight: 300;
    display: inline-block;
}

.bio-text::before {
    content: "Founder of v24";
    position: absolute;
    left: 0;
    top: 0;
    color: rgba(220, 230, 255, 0.9);
    animation: hologramShift 3s ease infinite;
}

.bio-text {
    animation: wave 3s ease-in-out infinite;
}

.social-links {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 0;
    position: relative;
}

.social-column {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.social-link {
    color: #fff;
    text-decoration: none;
    font-size: 1.4rem;
    transition: all 0.3s ease;
    opacity: 0.7;
    position: relative;
}

.social-link i {
    width: 22px;
    text-align: center;
}

.doxbin-link:hover i {
    color: #ff0000;
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
}

.trx-link:hover i {
    color: #ff0000;
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
}

/* Platform-specific colors */
.social-link:hover i.fa-discord {
    color: #7289da;
}

.social-link:hover i.fa-instagram {
    color: #e4405f;
}

.social-link:hover i.fa-youtube {
    color: #ff0000;
}

.social-link:hover {
    opacity: 1;
    transform: translateY(-2px);
}

.social-link span {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.8rem;
    letter-spacing: 0.5px;
    background: rgba(0, 0, 0, 0.8);
    padding: 4px 8px;
    border-radius: 4px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.social-link:hover span {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(-5px);
}

.view-counter {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    font-family: 'Inter', monospace;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: absolute;
    right: 0;
    display: flex;
    align-items: center;
}

.visitor-count {
    font-weight: 300;
}

.count-number {
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    margin-left: 2px;
}

.view-counter:hover {
    color: rgba(255, 255, 255, 0.8);
}

.view-counter:hover .count-number {
    color: #ffffff;
}

@media (max-width: 768px) {
    .social-links {
        flex-direction: column;
        gap: 1rem;
    }

    .social-column {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
    }

    .view-counter {
        position: relative;
        margin-top: 0.5rem;
        justify-content: center;
    }
}

.cursor {
    width: 20px;
    height: 20px;
    border: 2px solid #fff;
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: difference;
}

@media (max-width: 768px) {
    .container {
        padding: 1.5rem;
    }
    
    .profile-section {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1rem;
    }

    .profile-img {
        width: 100px;
        height: 100px;
    }

    .info-section {
        align-items: center;
        width: 100%;
        min-width: unset;
    }

    .name-badge-container {
        justify-content: center;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    .social-link {
        font-size: 1.3rem;
    }

    .badges {
        justify-content: center;
    }

    .embeds-container {
        margin-top: 1.5rem;
        padding-top: 1rem;
    }

    .embed {
        border-radius: 8px;
    }

    .discord-embed {
        height: 200px;
    }

    .spotify-embed {
        position: static;
        transform: none;
        width: 100%;
        margin: 1rem 0 0 0;
    }

    .spotify-embed:hover {
        transform: translateY(-2px);
    }

    .container {
        padding-bottom: 1rem;
    }
}

/* Add some animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.container > * {
    animation: fadeIn 0.6s ease forwards;
}

.container > *:nth-child(2) {
    animation-delay: 0.2s;
}

@keyframes holographicShift {
    0% {
        filter: hue-rotate(0deg) brightness(1);
        transform: translateZ(20px);
    }
    50% {
        filter: hue-rotate(180deg) brightness(1.2);
        transform: translateZ(25px);
    }
    100% {
        filter: hue-rotate(360deg) brightness(1);
        transform: translateZ(20px);
    }
}

@keyframes neonPulse {
    0% {
        text-shadow: 
            0 0 7px rgba(255, 255, 255, 0.7),
            0 0 10px rgba(255, 255, 255, 0.5),
            0 0 21px rgba(255, 255, 255, 0.3),
            0 0 42px rgba(255, 0, 0, 0.3),
            0 0 82px rgba(255, 0, 0, 0.1);
    }
    50% {
        text-shadow: 
            0 0 7px rgba(255, 255, 255, 0.9),
            0 0 10px rgba(255, 255, 255, 0.7),
            0 0 21px rgba(255, 255, 255, 0.5),
            0 0 42px rgba(255, 0, 0, 0.5),
            0 0 82px rgba(255, 0, 0, 0.2);
    }
    100% {
        text-shadow: 
            0 0 7px rgba(255, 255, 255, 0.7),
            0 0 10px rgba(255, 255, 255, 0.5),
            0 0 21px rgba(255, 255, 255, 0.3),
            0 0 42px rgba(255, 0, 0, 0.3),
            0 0 82px rgba(255, 0, 0, 0.1);
    }
}

@keyframes hologramShift {
    0% {
        opacity: 0.7;
        text-shadow: 
            1px 1px 2px rgba(255, 255, 255, 0.3),
            -1px -1px 2px rgba(255, 255, 255, 0.3),
            0 0 8px rgba(140, 170, 255, 0.3);
    }
    50% {
        opacity: 0.9;
        text-shadow: 
            1px 1px 2px rgba(255, 255, 255, 0.5),
            -1px -1px 2px rgba(255, 255, 255, 0.5),
            0 0 8px rgba(140, 170, 255, 0.5);
    }
    100% {
        opacity: 0.7;
        text-shadow: 
            1px 1px 2px rgba(255, 255, 255, 0.3),
            -1px -1px 2px rgba(255, 255, 255, 0.3),
            0 0 8px rgba(140, 170, 255, 0.3);
    }
}

@keyframes wave {
    0%, 100% {
        transform: translateY(0);
    }
    25% {
        transform: translateY(-2px) translateX(1px);
    }
    75% {
        transform: translateY(2px) translateX(-1px);
    }
}

/* Snow Container and Animation */
.snow-container {
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.snow {
    position: absolute;
    width: 5px;
    height: 5px;
    background: white;
    border-radius: 50%;
    opacity: 0;
    filter: blur(1px) brightness(1.5);
    box-shadow: 0 0 3px rgba(255, 255, 255, 0.8);
    animation: snowfall linear infinite;
}

@keyframes snowfall {
    0% {
        transform: translateY(0) translateX(-50%);
        opacity: 0;
    }
    10% {
        opacity: 0.8;
    }
    90% {
        opacity: 0.8;
    }
    100% {
        transform: translateY(100vh) translateX(50%);
        opacity: 0;
    }
}

/* Randomize initial positions and adjust timing */
.snow:nth-child(1) { left: 5%; top: -10%; animation-duration: 7s; animation-delay: -3s; }
.snow:nth-child(2) { left: 10%; top: -15%; animation-duration: 6s; animation-delay: -2s; }
.snow:nth-child(3) { left: 15%; top: -5%; animation-duration: 8s; animation-delay: -4s; }
.snow:nth-child(4) { left: 20%; top: -20%; animation-duration: 7s; animation-delay: -1s; }
.snow:nth-child(5) { left: 25%; top: -8%; animation-duration: 9s; animation-delay: -3.5s; }
.snow:nth-child(6) { left: 30%; top: -12%; animation-duration: 6s; animation-delay: -2.5s; }
.snow:nth-child(7) { left: 35%; top: -18%; animation-duration: 8s; animation-delay: -1.5s; }
.snow:nth-child(8) { left: 40%; top: -7%; animation-duration: 7s; animation-delay: -3.8s; }
.snow:nth-child(9) { left: 45%; top: -14%; animation-duration: 9s; animation-delay: -2.3s; }
.snow:nth-child(10) { left: 50%; top: -19%; animation-duration: 6s; animation-delay: -1.8s; }
.snow:nth-child(11) { left: 55%; top: -6%; animation-duration: 8s; animation-delay: -4.2s; }
.snow:nth-child(12) { left: 60%; top: -16%; animation-duration: 7s; animation-delay: -2.7s; }
.snow:nth-child(13) { left: 65%; top: -11%; animation-duration: 9s; animation-delay: -3.3s; }
.snow:nth-child(14) { left: 70%; top: -20%; animation-duration: 6s; animation-delay: -1.2s; }
.snow:nth-child(15) { left: 75%; top: -9%; animation-duration: 8s; animation-delay: -2.8s; }
.snow:nth-child(16) { left: 80%; top: -17%; animation-duration: 7s; animation-delay: -3.7s; }
.snow:nth-child(17) { left: 85%; top: -13%; animation-duration: 9s; animation-delay: -1.9s; }
.snow:nth-child(18) { left: 90%; top: -8%; animation-duration: 6s; animation-delay: -4.1s; }
.snow:nth-child(19) { left: 95%; top: -15%; animation-duration: 8s; animation-delay: -2.4s; }
.snow:nth-child(20) { left: 100%; top: -10%; animation-duration: 7s; animation-delay: -3.2s; }

.doxbin-icon {
    width: 28px;
    height: 28px;
    background-image: url('doxbin.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    display: inline-block;
    vertical-align: middle;
    filter: brightness(0.7);
    transition: all 0.3s ease;
    margin-top: 1px;
}

.trx-icon {
    width: 28px;
    height: 28px;
    background-image: url('trx.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    display: inline-block;
    vertical-align: middle;
    filter: brightness(0.7);
    transition: all 0.3s ease;
    margin-top: 1px;
} 