@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,
        #151c1c,
        #00253d,
        #202229,
        #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: 950px;
    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 {
    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;
    margin: 1.5rem 0;
}

.spotify-embed:hover {
    transform: 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: 2.5rem;
    position: relative;
    margin-bottom: 1rem;
}

.info-section {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    padding-top: 0.2rem;
    min-width: 280px;
    flex-grow: 1;
}

.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;
    letter-spacing: 2px;
    position: relative;
    animation: glitch 3s infinite;
    text-shadow: 0.05em 0 0 rgba(255, 0, 0, 0.75),
                -0.025em -0.05em 0 rgba(0, 255, 0, 0.75),
                0.025em 0.05em 0 rgba(0, 0, 255, 0.75);
}

h1::before,
h1::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    clip: rect(44px, 450px, 56px, 0);
}

h1::before {
    left: 2px;
    text-shadow: -1px 0 #00253d;
    animation: glitch-anim 2s infinite linear alternate-reverse;
}

h1::after {
    left: -2px;
    text-shadow: -1px 0 #00253d;
    animation: glitch-anim2 3s infinite linear alternate-reverse;
}

@keyframes glitch {
    0% {
        text-shadow: 0.05em 0 0 rgba(255, 0, 0, 0.75),
                    -0.025em -0.05em 0 rgba(0, 255, 0, 0.75),
                    0.025em 0.05em 0 rgba(0, 0, 255, 0.75);
    }
    14% {
        text-shadow: 0.05em 0 0 rgba(255, 0, 0, 0.75),
                    -0.025em -0.05em 0 rgba(0, 255, 0, 0.75),
                    0.025em 0.05em 0 rgba(0, 0, 255, 0.75);
    }
    15% {
        text-shadow: -0.05em -0.025em 0 rgba(255, 0, 0, 0.75),
                    0.025em 0.025em 0 rgba(0, 255, 0, 0.75),
                    -0.05em -0.05em 0 rgba(0, 0, 255, 0.75);
    }
    49% {
        text-shadow: -0.05em -0.025em 0 rgba(255, 0, 0, 0.75),
                    0.025em 0.025em 0 rgba(0, 255, 0, 0.75),
                    -0.05em -0.05em 0 rgba(0, 0, 255, 0.75);
    }
    50% {
        text-shadow: 0.025em 0.05em 0 rgba(255, 0, 0, 0.75),
                    0.05em 0 0 rgba(0, 255, 0, 0.75),
                    0 -0.05em 0 rgba(0, 0, 255, 0.75);
    }
    99% {
        text-shadow: 0.025em 0.05em 0 rgba(255, 0, 0, 0.75),
                    0.05em 0 0 rgba(0, 255, 0, 0.75),
                    0 -0.05em 0 rgba(0, 0, 255, 0.75);
    }
    100% {
        text-shadow: -0.025em 0 0 rgba(255, 0, 0, 0.75),
                    -0.025em -0.025em 0 rgba(0, 255, 0, 0.75),
                    -0.025em -0.05em 0 rgba(0, 0, 255, 0.75);
    }
}

@keyframes glitch-anim {
    0% {
        clip: rect(65px, 450px, 91px, 0);
    }
    5% {
        clip: rect(86px, 450px, 95px, 0);
    }
    10% {
        clip: rect(26px, 450px, 47px, 0);
    }
    15% {
        clip: rect(11px, 450px, 37px, 0);
    }
    20% {
        clip: rect(90px, 450px, 98px, 0);
    }
    25% {
        clip: rect(87px, 450px, 99px, 0);
    }
    30% {
        clip: rect(64px, 450px, 98px, 0);
    }
    35% {
        clip: rect(84px, 450px, 97px, 0);
    }
    40% {
        clip: rect(10px, 450px, 33px, 0);
    }
    45% {
        clip: rect(47px, 450px, 98px, 0);
    }
    50% {
        clip: rect(89px, 450px, 99px, 0);
    }
    55% {
        clip: rect(29px, 450px, 67px, 0);
    }
    60% {
        clip: rect(19px, 450px, 45px, 0);
    }
    65% {
        clip: rect(93px, 450px, 99px, 0);
    }
    70% {
        clip: rect(37px, 450px, 56px, 0);
    }
    75% {
        clip: rect(10px, 450px, 30px, 0);
    }
    80% {
        clip: rect(82px, 450px, 98px, 0);
    }
    85% {
        clip: rect(91px, 450px, 99px, 0);
    }
    90% {
        clip: rect(28px, 450px, 43px, 0);
    }
    95% {
        clip: rect(75px, 450px, 89px, 0);
    }
    100% {
        clip: rect(38px, 450px, 52px, 0);
    }
}

@keyframes glitch-anim2 {
    0% {
        clip: rect(93px, 450px, 99px, 0);
    }
    5% {
        clip: rect(54px, 450px, 77px, 0);
    }
    10% {
        clip: rect(45px, 450px, 76px, 0);
    }
    15% {
        clip: rect(83px, 450px, 92px, 0);
    }
    20% {
        clip: rect(32px, 450px, 54px, 0);
    }
    25% {
        clip: rect(12px, 450px, 23px, 0);
    }
    30% {
        clip: rect(54px, 450px, 88px, 0);
    }
    35% {
        clip: rect(71px, 450px, 98px, 0);
    }
    40% {
        clip: rect(20px, 450px, 45px, 0);
    }
    45% {
        clip: rect(67px, 450px, 78px, 0);
    }
    50% {
        clip: rect(69px, 450px, 89px, 0);
    }
    55% {
        clip: rect(59px, 450px, 87px, 0);
    }
    60% {
        clip: rect(29px, 450px, 55px, 0);
    }
    65% {
        clip: rect(83px, 450px, 89px, 0);
    }
    70% {
        clip: rect(47px, 450px, 76px, 0);
    }
    75% {
        clip: rect(30px, 450px, 50px, 0);
    }
    80% {
        clip: rect(92px, 450px, 98px, 0);
    }
    85% {
        clip: rect(81px, 450px, 89px, 0);
    }
    90% {
        clip: rect(48px, 450px, 63px, 0);
    }
    95% {
        clip: rect(95px, 450px, 99px, 0);
    }
    100% {
        clip: rect(58px, 450px, 72px, 0);
    }
}

.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;
}

/* Kurdistan Badge */
.badge[title="Kurdistan"] {
    color: #ff0000;
    background: linear-gradient(135deg, #ff0000 0%, #ffffff 33%, #4caf50 66%);
    -webkit-background-clip: text;
    background-clip: text;
}

.badge[title="Kurdistan"]:hover {
    text-shadow: 0 0 15px #ff0000;
}

/* VIP Badge */
.badge[title="VIP"] {
    color: #ffd700;
}

.badge[title="VIP"]:hover {
    text-shadow: 0 0 15px #ffd700;
}

/* User Badge */
.badge[title="User"] {
    color: #4caf50;
}

.badge[title="User"]:hover {
    text-shadow: 0 0 15px #4caf50;
}

/* Remove old badge styles */
.badge[title="Owner"],
.badge[title="Developer"],
.badge[title="Admin"],
.badge[title="v24"],
.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: "Bir gün herkes için hesaplaşma zamanı gelir.";
    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: 0.5rem;
    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;
} 