﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    cursor: none;
}

a, button, input[type="button"], input[type="submit"], [role="button"] {
    cursor: none !important;
    position: relative;
}

a::before, button::before, input[type="button"]::before, input[type="submit"]::before, [role="button"]::before {
    content: '';
    position: absolute;
    inset: -6px;
    border: 2px solid rgba(255, 255, 255, 0);
    border-radius: calc(var(--btn-radius, 4px) + 6px);
    pointer-events: none;
    transition: border-color 0.3s ease;
    opacity: 0;
}

a:hover::before, button:hover::before, input[type="button"]:hover::before, input[type="submit"]:hover::before, [role="button"]:hover::before {
    border-color: rgba(255, 255, 255, 0.6);
    opacity: 1;
    animation: button-fade 0.3s ease;
}

@keyframes button-fade {
    from {
        opacity: 0;
        border-color: rgba(255, 255, 255, 0);
    }
    to {
        opacity: 1;
        border-color: rgba(255, 255, 255, 0.6);
    }
}

.CustomCursor {
    position: fixed;
    width: 20px;
    height: 20px;
    background-image: url('../images/Cursor.png');
    background-size: contain;
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: 9999;
    transform: translate(0, 0);
}

.CursorTrail {
    position: fixed;
    width: 20px;
    height: 20px;
    background-image: url('../images/Cursor.png');
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0;
    pointer-events: none;
    z-index: 9998;
    transform: translate(0, 0);
}

#darkveil-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

.waves-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.background-waves {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

#waves-container::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    background:
        radial-gradient(900px 520px at 30% 20%, rgba(249, 168, 212, 0.10), rgba(0, 0, 0, 0.0) 55%),
        radial-gradient(900px 520px at 70% 65%, rgba(244, 114, 182, 0.07), rgba(0, 0, 0, 0.0) 55%),
        radial-gradient(1200px 760px at 50% 40%, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.78) 72%),
        radial-gradient(1200px 900px at 50% 50%, rgba(0, 0, 0, 0.0) 40%, rgba(0, 0, 0, 0.75) 100%),
        linear-gradient(180deg, rgba(4, 6, 12, 0.78), rgba(0, 0, 0, 0.70));
    mix-blend-mode: multiply;
    opacity: 1;
    animation: night-drift 12s ease-in-out infinite;
}

#waves-canvas {
    display: block;
    width: 100%;
    height: 100%;
    pointer-events: none;
    position: relative;
    z-index: 0;
}

@keyframes night-drift {
    0%,
    100% {
        transform: translate3d(0, 0, 0) scale(1);
        filter: saturate(1.05) contrast(1.05);
    }

    50% {
        transform: translate3d(0, -6px, 0) scale(1.01);
        filter: saturate(1.12) contrast(1.08);
    }
}

.intro-content {
    position: relative;
    z-index: 2;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #e0e0e0;
    background: #000;
    min-height: 100vh;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.background {
    position: fixed;
    inset: 0;
    background: #000;
    z-index: -3;
    pointer-events: none;
}

.background::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(1100px 700px at 30% 20%, rgba(249, 168, 212, 0.10), rgba(0, 0, 0, 0.0) 58%),
        radial-gradient(1100px 700px at 70% 65%, rgba(244, 114, 182, 0.07), rgba(0, 0, 0, 0.0) 58%),
        radial-gradient(1400px 900px at 50% 40%, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.80) 74%),
        radial-gradient(1600px 1200px at 50% 50%, rgba(0, 0, 0, 0.0) 40%, rgba(0, 0, 0, 0.80) 100%),
        linear-gradient(180deg, rgba(4, 6, 12, 0.82), rgba(0, 0, 0, 0.74));
    opacity: 1;
    animation: night-drift 12s ease-in-out infinite;
}

.lang-switch {
    position: absolute;
    top: 2rem;
    right: 2rem;
    display: inline-flex;
    gap: 8px;
    align-items: center;
    z-index: 100;
}

.lang-menu-desktop {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 10px;
    background: rgba(10, 10, 15, 0.72);
    border: 1px solid rgba(249, 168, 212, 0.22);
    border-radius: 12px;
    backdrop-filter: blur(12px);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.65);
    min-width: 200px;
    z-index: 200;
}

.lang-btn-dropdown {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0.55rem 0.85rem;
    border-radius: 9999px;
}

.lang-btn-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    line-height: 1;
}

.lang-btn-chevron {
    opacity: 0.9;
    transition: transform 0.18s ease, opacity 0.18s ease;
}

.lang-btn.open .lang-btn-chevron {
    transform: rotate(180deg);
    opacity: 1;
}

.lang-menu-desktop {
    transform-origin: top right;
    animation: lang_menu_slide 0.18s ease-out;
}

@keyframes lang_menu_slide {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.lang-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 8px 10px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: rgba(0, 0, 0, 0.15);
}

.lang-menu-title {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #e5e7eb;
}

.lang-menu-close {
    width: 28px;
    height: 28px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: rgba(0, 0, 0, 0.0);
    color: #cbd5e1;
    font-size: 18px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: none !important;
    transition: border-color 0.18s ease, color 0.18s ease, background 0.18s ease;
}

.lang-menu-close:hover {
    border-color: rgba(249, 168, 212, 0.85);
    color: #f9a8d4;
    background: rgba(249, 168, 212, 0.08);
}

.lang-menu-body {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}

#lang-menu-desktop.lang-menu-desktop {
    min-width: 240px;
}

#lang-menu-desktop .lang-option {
    width: 100%;
    min-height: 56px;
    justify-content: center;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(0, 0, 0, 0.12);
}

#lang-menu-desktop .lang-option:hover {
    background: rgba(249, 168, 212, 0.10);
}

#lang-menu-desktop .lang-option.active {
    background: rgba(249, 168, 212, 0.16);
}

.lang-flag {
    font-size: 18px;
    line-height: 1;
}

.lang-code {
    font-weight: 800;
    letter-spacing: 0.12em;
}

.lang-btn {
    background: transparent;
    border: 1px solid rgba(249, 168, 212, 0.22);
    color: #cbd5e1;
    padding: 0.32rem 0.6rem;
    border-radius: 3px;
    font-family: inherit;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    background: rgba(10, 10, 15, 0.35);
    backdrop-filter: blur(10px);
    transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.lang-btn:hover,
.lang-btn.active {
    border-color: #f9a8d4;
    color: #f9a8d4;
}

.lang-option {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    width: 100%;
    background: rgba(0, 0, 0, 0.0);
    border: 1px solid rgba(255, 255, 255, 0.10);
    color: #cbd5e1;
    padding: 8px 10px;
    border-radius: 10px;
    font-family: inherit;
    font-size: 12px;
    font-weight: 600;
    text-align: left;
    cursor: none !important;
    transition: border-color 0.18s ease, color 0.18s ease, background 0.18s ease;
}

.lang-option:hover {
    border-color: rgba(249, 168, 212, 0.85);
    color: #f9a8d4;
    background: rgba(249, 168, 212, 0.08);
}

.lang-option.active {
    border-color: rgba(249, 168, 212, 0.95);
    color: #f9a8d4;
    background: rgba(249, 168, 212, 0.12);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.hero-section {
    margin-bottom: 6rem;
}

.hero-content {
    max-width: 800px;
}

.hero-header-row {
display: flex;
align-items: center;
justify-content: flex-start;
gap: 12px;
flex-wrap: nowrap;
}

.hero-header-row .label {
    margin-bottom: 0;
}

.nav-pills {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.nav-pill {
display: inline-flex;
align-items: center;
justify-content: center;
padding: 0.55rem 0.95rem;
border-radius: 9999px;
border: 1px solid rgba(255, 255, 255, 0.14);
background: rgba(0, 0, 0, 0.18);
color: #e5e7eb;
font-weight: 700;
font-size: 0.9rem;
letter-spacing: 0.02em;
text-decoration: none;
transition: border-color 0.18s ease, background 0.18s ease, transform 0.18s ease, color 0.18s ease;
backdrop-filter: blur(10px);
-webkit-backdrop-filter: blur(10px);
}

/* Header pills should match the label style (same look as "Developer - Seller") */
.hero-header-row .nav-pill {
    background: transparent;
    border: 1px solid #f9a8d4;
    border-radius: 4px;
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    color: #f9a8d4;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    transform: none;
}

.hero-header-row .nav-pill:hover {
    background: rgba(249, 168, 212, 0.08);
    border-color: #f9a8d4;
    color: #f9a8d4;
    transform: none;
}

.nav-pill:hover {
border-color: rgba(249, 168, 212, 0.85);
background: rgba(249, 168, 212, 0.12);
transform: translateY(-1px);
color: #ffffff;
}

.nav-pill:active {
transform: translateY(0);
}

.seller-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 520px;
    gap: 32px;
    align-items: center;
    margin-top: 18px;
}

.seller-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 18px;
    border-radius: 16px;
    border: 1px solid rgba(249, 168, 212, 0.16);
    background: rgba(0, 0, 0, 0.16);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.08) inset,
        0 18px 60px rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    width: fit-content;
    max-width: 560px;
    justify-self: start;
    min-width: 0;
}

.seller-left.social-container {
    margin-top: 0;
}

#seller .section-title {
    margin-bottom: 14px;
}

#seller .hero-description {
    margin-bottom: 0;
    max-width: 520px;
    color: rgba(255, 255, 255, 0.88);
}

.seller-perks {
    margin-top: 10px;
    margin-bottom: 0;
    color: rgba(249, 168, 212, 0.92);
    font-weight: 700;
    letter-spacing: 0.02em;
    font-size: 0.95rem;
}

.seller-cta-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(0, 0, 0, 0.22);
    text-decoration: none;
    color: rgba(255, 255, 255, 0.92);
    transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.seller-cta-text {
    font-weight: 700;
    letter-spacing: 0.02em;
}

.seller-cta-link:hover {
    border-color: rgba(249, 168, 212, 0.45);
    background: rgba(249, 168, 212, 0.08);
    box-shadow: 0 0 0 4px rgba(249, 168, 212, 0.06);
    transform: translateY(-1px);
}

.seller-cta-link:focus-visible {
    outline: none;
    border-color: rgba(249, 168, 212, 0.65);
    box-shadow:
        0 0 0 4px rgba(249, 168, 212, 0.12),
        0 0 0 1px rgba(249, 168, 212, 0.35) inset;
}

.seller-cta-link .btn_discord {
    flex: 0 0 auto;
    cursor: inherit !important;
}

.seller-right {
    display: flex;
    justify-content: flex-end;
}

.znk-inline {
    transform-style: preserve-3d;
    width: 100%;
    position: relative;
    border: 1px solid rgba(249, 168, 212, 0.45);
    background: rgba(10, 10, 15, 0.38);
    border-radius: 16px;
    padding: 16px;
    display: grid;
    grid-template-columns: 168px 1fr;
    grid-template-rows: 120px auto;
    grid-template-areas:
        "banner banner"
        "logo stats";
    gap: 16px;
    overflow: hidden;
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.08) inset,
        0 0 0 5px rgba(0, 0, 0, 0.45) inset,
        0 0 18px rgba(249, 168, 212, 0.10),
        0 18px 60px rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transform: perspective(900px)
        translate3d(var(--znk-tilt-shift-x, 0px), var(--znk-tilt-shift-y, 0px), 0)
        rotateX(var(--znk-tilt-x, 0deg))
        rotateY(var(--znk-tilt-y, 0deg));
    will-change: transform;
    transition: box-shadow 0.22s ease, transform 0.18s ease;
}

.znk-banner {
    grid-area: banner;
    width: 100%;
    height: 120px;
    display: block;
    object-fit: cover;
    object-position: right center;
    transform: translate3d(var(--znk-banner-shift-x, 0px), 0, 0);
    will-change: transform;
    filter: saturate(1.12) contrast(1.08);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: rgba(0, 0, 0, 0.18);
}

.znk-inline::before {
    content: none;
}

.znk-inline::after {
    content: none;
}

.znk-inline:hover {
    transform: perspective(900px)
        translate3d(var(--znk-tilt-shift-x, 0px), calc(var(--znk-tilt-shift-y, 0px) - 1px), 0)
        rotateX(var(--znk-tilt-x, 0deg))
        rotateY(var(--znk-tilt-y, 0deg));
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.10) inset,
        0 0 0 5px rgba(0, 0, 0, 0.45) inset,
        0 0 22px rgba(249, 168, 212, 0.18),
        0 20px 70px rgba(0, 0, 0, 0.75);
}

.znk-logo {
    grid-area: logo;
    width: 168px;
    height: 168px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(0, 0, 0, 0.0);
    object-fit: cover;
}

.znk-stats {
    grid-area: stats;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex: 1;
    min-width: 260px;
}

.znk-stat {
    border: none;
    background: transparent;
    border-radius: 0;
    padding: 0;
    min-width: 0;
}

@media (max-width: 920px) {
    .seller-row {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .seller-left {
        width: 100%;
    }

    .seller-right {
        justify-content: flex-start;
    }

    .znk-inline {
        grid-template-columns: 128px 1fr;
        grid-template-rows: 104px auto;
    }

    .znk-logo {
        width: 128px;
        height: 128px;
    }

    .znk-banner {
        height: 104px;
    }

    .znk-inline::before {
        height: 104px;
    }
}

@media (max-width: 520px) {
    .znk-inline {
        grid-template-columns: 1fr;
        grid-template-rows: 96px auto auto;
        grid-template-areas:
            "banner"
            "logo"
            "stats";
    }

    .znk-inline::before {
        height: 96px;
    }

    .znk-logo {
        width: 100%;
        height: 180px;
    }

    .znk-stats {
        min-width: 0;
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }
}

.znk-stat {
    border: none;
    background: transparent;
    border-radius: 0;
    padding: 0;
    min-width: 0;
}

.znk-stat-label {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #cbd5e1;
}

.znk-stat-value {
    margin-top: 6px;
    font-size: 34px;
    font-weight: 800;
    color: #f9a8d4;
}

.znk-status {
    font-size: 12px;
    color: rgba(203, 213, 225, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: rgba(0, 0, 0, 0.12);
    border-radius: 12px;
    padding: 10px 12px;
}

.view-counter {
display: inline-flex;
align-items: center;
gap: 0.3rem;
font-size: 0.8rem;
color: #ffffff;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.8rem;
    color: #ffffff;
}

.view-counter-icon {
    display: block;
}

.view-counter-text {
    letter-spacing: 0.04em;
}

.label {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: transparent;
    border: 1px solid #f9a8d4;
    border-radius: 4px;
    font-size: 0.85rem;
    color: #f9a8d4;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #fff;
}

.gradient-text {
    color: #f9a8d4;
}

.hero-description {
    font-size: 1.1rem;
    color: #ffffff;
    line-height: 1.7;
    margin-bottom: 1rem;
    max-width: 650px;
}

.hero-location {
    font-size: 0.95rem;
    color: #f9a8d4;
    margin-bottom: 1.5rem;
}

.support-section {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.support-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
}

.crypto-address {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.crypto-label {
    font-size: 0.9rem;
    font-weight: 500;
    color: #f9a8d4;
}

.crypto-code {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    padding: 0.5rem 0.75rem;
    font-family: 'Courier New', monospace;
    font-size: 0.85rem;
    color: #ffffff;
    word-break: break-all;
    flex: 1;
    min-width: 200px;
}

.copy-btn {
    background: rgba(168, 139, 250, 0.2);
    border: 1px solid rgba(168, 139, 250, 0.3);
    border-radius: 6px;
    padding: 0.5rem;
    color: #f9a8d4;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.copy-btn:hover {
    background: rgba(168, 139, 250, 0.3);
    border-color: rgba(168, 139, 250, 0.5);
    color: #ffffff;
    transform: translateY(-1px);
}

.social-container {
    margin-top: 2.5rem;
}

.section {
    margin-bottom: 5rem;
}

.section-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 50px;
    height: 2px;
    background: #f9a8d4;
}

.skills-group-title {
    margin: 2rem 0 1rem;
    font-size: 1rem;
    font-weight: 600;
    color: #f9a8d4;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.skills-group-title:first-of-type {
    margin-top: 1rem;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.2rem;
}

.skill-card {
    background: transparent;
    border: 1px solid #1a1a1a;
    border-radius: 8px;
    padding: 1.8rem;
    transition: all 0.3s ease;
}

.skill-card:hover {
    border-color: #f9a8d4;
}

.skill-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    gap: 1rem;
}

.skill-header h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
    white-space: nowrap;
}

.skill-level {
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.skill-level.expert {
    background: rgba(249, 168, 212, 0.2);
    color: #f9a8d4;
    border: 1px solid #f9a8d4;
}

.skill-level.advanced {
    background: rgba(249, 168, 212, 0.15);
    color: #f9a8d4;
    border: 1px solid rgba(249, 168, 212, 0.4);
}

.gallery-filters {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
    padding: 0 1rem;
}

.gallery-filter {
    background: transparent;
    border: 1px solid rgba(249, 168, 212, 0.4);
    color: #f9a8d4;
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 0.9rem;
    cursor: none !important;
    transition: all 0.2s;
    font-weight: 500;
    white-space: nowrap;
    display: inline-block;
}

.gallery-filter:hover {
    border-color: #f9a8d4;
    background: rgba(249, 168, 212, 0.15);
}

.gallery-filter.active {
    border-color: #f9a8d4;
    background: rgba(249, 168, 212, 0.25);
    color: #fff;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.tool-gallery-card {
    position: relative;
    padding: 18px;
    border-radius: 12px;
    border: 1px solid rgba(249, 168, 212, 0.18);
    background: linear-gradient(180deg, rgba(249, 168, 212, 0.06), rgba(0, 0, 0, 0));
    overflow: hidden;
    transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.tool-gallery-card:hover {
    transform: translateY(-2px);
    border-color: rgba(249, 168, 212, 0.55);
    box-shadow: 0 10px 30px rgba(249, 168, 212, 0.08);
}

.tool-card-top {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.tool-card-headline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.tool-title {
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 0.2px;
    color: #fff;
    line-height: 1.25;
}

.tool-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 10px;
    border-radius: 9999px;
    border: 1px solid rgba(249, 168, 212, 0.35);
    background: rgba(249, 168, 212, 0.08);
    color: #fbcfe8;
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
}

.tool-desc {
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.92rem;
    line-height: 1.55;
}

.tool-desc-empty {
    min-height: 1.4em;
    opacity: 0.6;
}

.tool-card-bottom {
    margin-top: 14px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
}

.tool-download-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    border-radius: 10px;
    border: 1px solid rgba(249, 168, 212, 0.35);
    background: rgba(249, 168, 212, 0.10);
    color: #eaffff;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 650;
    transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.tool-download-btn:hover {
    background: rgba(249, 168, 212, 0.18);
    border-color: rgba(249, 168, 212, 0.65);
    transform: translateY(-1px);
}

.tool-download-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fbcfe8;
}

.tool-download-btn-disabled {
    opacity: 0.55;
    border-style: dashed;
}

.tool-github-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.92);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 650;
    transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.tool-github-btn:hover {
    background: rgba(255, 255, 255, 0.10);
    border-color: rgba(249, 168, 212, 0.35);
    transform: translateY(-1px);
}

.tool-github-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.85);
}

.gallery-loading {
    text-align: center;
    color: #888;
    padding: 40px;
    grid-column: 1 / -1;
}

.gallery-item {
    position: relative;
    background: rgba(15, 15, 20, 0.6);
    border: 1px solid rgba(249, 168, 212, 0.2);
    border-radius: 8px;
    overflow: hidden;
    cursor: none !important;
    transition: all 0.3s ease;
}

.gallery-item:hover {
    border-color: rgba(249, 168, 212, 0.5);
    background: rgba(15, 15, 20, 0.8);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(249, 168, 212, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    transition: all 0.3s ease;
}

.gallery-item:hover img {
    opacity: 0.9;
}

.gallery-item-info {
    padding: 16px;
    background: rgba(0, 0, 0, 0.4);
}

.gallery-item-title {
    color: #f9a8d4;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 6px;
}

.gallery-item-desc {
    color: #cbd5e1;
    font-size: 0.85rem;
    line-height: 1.4;
}

.gallery-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 4000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-modal.hidden {
    display: none;
}

.gallery-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.gallery-modal-content {
    position: relative;
    max-width: 85vw;
    max-height: 85vh;
    background: rgba(15, 15, 20, 0.98);
    border: 1px solid rgba(249, 168, 212, 0.3);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
}

.gallery-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(0, 0, 0, 0.7);
    border: none;
    color: #6b7280;
    font-size: 2rem;
    cursor: none !important;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    z-index: 1;
}

.gallery-modal-close:hover {
    color: #f9a8d4;
    background: rgba(0, 0, 0, 0.9);
}

.gallery-modal img {
    max-width: 100%;
    max-height: 60vh;
    object-fit: contain;
    display: block;
}

.gallery-modal-info {
    padding: 20px;
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(249, 168, 212, 0.2);
}

.gallery-modal-info h3 {
    color: #f9a8d4;
    font-size: 1.2rem;
    margin-bottom: 8px;
    margin-top: 0;
}

.gallery-modal-info p {
    color: #e5e7eb;
    font-size: 0.95rem;
    margin: 0;
}

.skill-description {
    color: #888;
    font-size: 0.95rem;
}

.skill-tools {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 1rem;
}

.tool-badge {
    padding: 0.4rem 0.9rem;
    background: transparent;
    border: 1px solid rgba(249, 168, 212, 0.3);
    border-radius: 4px;
    font-size: 0.85rem;
    color: #f9a8d4;
    transition: all 0.3s ease;
    display: inline-block;
}

.tool-badge:hover {
    border-color: #f9a8d4;
    background: rgba(249, 168, 212, 0.1);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.2rem;
}

.project-card {
    background: transparent;
    border: 1px solid #1a1a1a;
    border-radius: 8px;
    padding: 1.5rem;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.project-card:hover {
    border-color: #f9a8d4;
}

.project-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.8rem;
}

.project-header h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
}

.external-link {
    color: #f9a8d4;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.project-card:hover .external-link {
    opacity: 1;
}

.project-description {
    color: #888;
    font-size: 0.9rem;
}

.project-icons {
    display: flex;
    gap: 6px;
}

.project-view-btn,
.project-link-btn,
.project-download-btn {
    background: transparent;
    border: none;
    padding: 0;
    cursor: none !important;
    color: #f9a8d4;
    opacity: 0.5;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.project-view-btn:hover,
.project-link-btn:hover,
.project-download-btn:hover {
    opacity: 1;
}

.project-card:hover .project-view-btn,
.project-card:hover .project-link-btn,
.project-card:hover .project-download-btn {
    opacity: 1;
}

.project-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-popup.hidden {
    display: none;
}

.project-popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.project-popup-content {
    position: relative;
    width: 95%;
    max-width: 900px;
    max-height: 90vh;
    background: rgba(15, 15, 20, 0.98);
    border: 1px solid rgba(249, 168, 212, 0.3);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    max-width: 900px;
    max-height: 90vh;
    background: rgba(15, 15, 20, 0.98);
    border: 1px solid rgba(249, 168, 212, 0.3);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.project-popup-header {
display: flex;
justify-content: space-between;
align-items: center;
padding: 20px 24px;
border-bottom: 1px solid rgba(249, 168, 212, 0.2);
background: rgba(0, 0, 0, 0.3);
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid rgba(249, 168, 212, 0.2);
    background: rgba(0, 0, 0, 0.3);
}

.project-popup-header h2 {
    color: #f9a8d4;
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0;
}

.project-popup-close {
    background: none;
    border: none;
    color: #6b7280;
    font-size: 2rem;
    cursor: none !important;
    transition: all 0.2s;
    line-height: 1;
}

.project-popup-close:hover {
    color: #f9a8d4;
    transform: scale(1.1);
}

.project-popup-body {
    padding: 24px;
    overflow-y: auto;
    flex: 1;
}

.popup-loading {
    color: #888;
    text-align: center;
    padding: 40px;
}

.popup-info {
    margin-bottom: 24px;
}

.popup-info p {
    color: #e5e7eb;
    margin-bottom: 16px;
    line-height: 1.6;
}

.popup-stats {
    display: flex;
    gap: 24px;
    color: #888;
    font-size: 0.9rem;
}

.popup-stats span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.popup-stats svg {
    color: #f9a8d4;
}

.lang-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #f9a8d4;
}

.popup-files-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.popup-files-header h3 {
    color: #f9a8d4;
    font-size: 1rem;
    margin: 0;
}

.popup-back-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    border: 1px solid rgba(249, 168, 212, 0.3);
    border-radius: 6px;
    padding: 6px 12px;
    color: #f9a8d4;
    font-size: 0.85rem;
    cursor: none !important;
    transition: all 0.2s;
}

.popup-back-btn:hover {
    background: rgba(249, 168, 212, 0.1);
    border-color: #f9a8d4;
}

.popup-file-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.popup-file-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.popup-file-header span {
    color: #f9a8d4;
    font-size: 1rem;
    font-weight: 500;
}

#popup-code {
    background: #1e1e2e;
    border: 1px solid rgba(249, 168, 212, 0.2);
    border-radius: 8px;
    padding: 0;
    overflow: auto;
    max-height: 500px;
    margin: 0;
    flex: 1;
    user-select: text;
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
}

#popup-code code {
    display: block;
    padding: 16px;
    font-family: 'Consolas', 'Monaco', 'Fira Code', monospace;
    font-size: 0.9rem;
    line-height: 1.6;
    white-space: pre;
    tab-size: 4;
    user-select: text;
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
}

#popup-code code.hljs {
    background: transparent;
}

.popup-files-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
    max-height: 300px;
    overflow-y: auto;
}

.popup-file-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(249, 168, 212, 0.1);
    border-radius: 6px;
    color: #e5e7eb;
    font-size: 0.9rem;
    transition: all 0.2s;
}

.gallery-modal-info h3 {
    color: #f9a8d4;
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.gallery-modal-info p {
    color: #e5e7eb;
    font-size: 0.95rem;
}

.popup-folder-item {
    color: #f9a8d4;
    font-weight: 500;
}

.audio-player {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.8rem 1.2rem;
    border-radius: 12px;
    z-index: 1000;
    transition: all 0.3s ease;
}

.audio-player:hover {
    border-color: rgba(249, 168, 212, 0.3);
    background: rgba(0, 0, 0, 0.8);
}

.player-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.player-btn {
    background: transparent;
    border: none;
    color: #fff;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
}

.player-btn:hover {
    color: #f9a8d4;
}

.hidden {
    display: none !important;
}

.track-info {
    display: flex;
    flex-direction: column;
}

.track-name {
    font-size: 0.9rem;
    color: #e0e0e0;
    font-weight: 500;
}

.volume-container {
    display: flex;
    align-items: center;
    width: 80px;
}

.audio-progress-container {
    margin-top: 6px;
    width: 100%;
    height: 3px;
    background: rgba(31, 41, 55, 0.9);
    border-radius: 9999px;
    overflow: hidden;
    cursor: none !important;
}

@media (max-width: 768px) {
    .container {
        padding: 2rem 1.5rem;
    }

    .skills-grid,
    .projects-grid {
        grid-template-columns: 1fr;
    }
}

html {
overflow-y: scroll;
scrollbar-width: thin;
scrollbar-color: #f9a8d4 transparent;
}

html:has(.intro-overlay:not(.hidden)) {
overflow-y: hidden;
}

html.intro-skip:has(.intro-overlay:not(.hidden)) {
    overflow-y: scroll;
}

html.intro-skip #intro-overlay {
    display: none !important;
}

html:has(.intro-overlay:not(.hidden)) .lang-switch,
html:has(.intro-overlay:not(.hidden)) .lang-toggle-mobile,
html:has(.intro-overlay:not(.hidden)) .lang-menu-mobile {
    display: none !important;
    pointer-events: none !important;
}

body.intro-active .lang-switch,
body.intro-active .lang-toggle-mobile,
body.intro-active .lang-menu-mobile {
    display: none !important;
    pointer-events: none !important;
}

html.intro-skip:has(.intro-overlay:not(.hidden)) .lang-switch,
html.intro-skip:has(.intro-overlay:not(.hidden)) .lang-toggle-mobile,
html.intro-skip:has(.intro-overlay:not(.hidden)) .lang-menu-mobile,
html.intro-skip body.intro-active .lang-switch,
html.intro-skip body.intro-active .lang-toggle-mobile,
html.intro-skip body.intro-active .lang-menu-mobile {
    display: revert !important;
    pointer-events: auto !important;
}

::-webkit-scrollbar {
width: 8px;
height: 8px;
}

::-webkit-scrollbar-track {
background: transparent;
border-radius: 10px;
margin: 2px;
}

::-webkit-scrollbar-thumb {
background: linear-gradient(180deg, #f9a8d4, #f9a8d4);
border-radius: 10px;
border: 1px solid rgba(249, 168, 212, 0.5);
transition: all 0.2s ease;
min-height: 20px;
}

::-webkit-scrollbar-thumb:hover {
background: linear-gradient(180deg, #f9a8d4, #fbcfe8);
border-color: rgba(249, 168, 212, 0.8);
box-shadow: 0 0 6px rgba(249, 168, 212, 0.4);
}

::-webkit-scrollbar-corner {
background: transparent;
}

.btn_github {
width: 45px;
height: 45px;
display: flex;
align-items: center;
justify-content: center;
border: none;
background-color: transparent;
position: relative;
border-radius: 7px;
cursor: none !important;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background-color: transparent;
    position: relative;
    border-radius: 7px;
    cursor: none !important;
}

.svg_container_github {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    backdrop-filter: blur(0px);
    letter-spacing: 0.8px;
    border-radius: 10px;
    border: 1px solid rgba(156, 156, 156, 0.466);
}

.bg_github {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background: #181818;
    z-index: -1;
    border-radius: 10px;
    pointer-events: none;
}

.btn_discord {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background-color: transparent;
    position: relative;
    border-radius: 7px;
    cursor: none !important;
}

.svg_container_discord {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    backdrop-filter: blur(0px);
    letter-spacing: 0.8px;
    border-radius: 10px;
    border: 1px solid rgba(156, 156, 156, 0.466);
}

.bg_discord {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background: #7289da;
    z-index: -1;
    border-radius: 10px;
    pointer-events: none;
}

.btn_email {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background-color: transparent;
    position: relative;
    border-radius: 7px;
    cursor: none !important;
}

.svg_container_email {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    backdrop-filter: blur(0px);
    letter-spacing: 0.8px;
    border-radius: 10px;
    border: 1px solid rgba(156, 156, 156, 0.466);
}

.bg_email {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: -1;
    border-radius: 10px;
    pointer-events: none;
}

.btn_crypto {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background-color: transparent;
    position: relative;
    border-radius: 7px;
    cursor: none !important;
}

.svg_container_crypto {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    backdrop-filter: blur(0px);
    letter-spacing: 0.8px;
    border-radius: 10px;
    border: 1px solid rgba(255, 193, 7, 0.466);
    transition: all 0.3s ease;
}

.svg_container_crypto:hover {
    border-color: rgba(255, 193, 7, 0.8);
    background-color: rgba(255, 193, 7, 0.1);
}

.bg_crypto {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: -1;
    border-radius: 10px;
    pointer-events: none;
}

.audio-player {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.8rem 1.2rem;
    border-radius: 12px;
    z-index: 1000;
    transition: all 0.3s ease;
}

.audio-player:hover {
    border-color: rgba(249, 168, 212, 0.3);
    background: rgba(0, 0, 0, 0.8);
}

.player-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.player-btn {
    background: transparent;
    border: none;
    color: #fff;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
}

.player-btn:hover {
    color: #f9a8d4;
}

.hidden {
    display: none !important;
}

.track-info {
    display: flex;
    flex-direction: column;
}

.track-name {
    font-size: 0.9rem;
    color: #e0e0e0;
    font-weight: 500;
}

.volume-container {
    display: flex;
    align-items: center;
    width: 110px;
    gap: 8px;
}

.audio-progress-container {
    margin-top: 6px;
    width: 100%;
    height: 3px;
    background: rgba(31, 41, 55, 0.9);
    border-radius: 9999px;
    overflow: hidden;
    cursor: none !important;
}

.audio-progress-bar {
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, #4c1d95, #f9a8d4);
    border-radius: 9999px;
}

#volume-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 4px;
    border-radius: 9999px;
    background: linear-gradient(90deg, rgba(249, 168, 212, 0.2), rgba(249, 168, 212, 0.2));
    outline: none;
    cursor: none !important;
}

#volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f9a8d4, #f9a8d4);
    cursor: none !important;
    box-shadow: 0 0 8px rgba(249, 168, 212, 0.6);
    transition: all 0.2s;
    border: 2px solid #e5e7eb;
}

#volume-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

#volume-slider::-moz-range-thumb {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f9a8d4, #f9a8d4);
    cursor: none !important;
    border: 2px solid #e5e7eb;
    box-shadow: 0 0 8px rgba(249, 168, 212, 0.6);
    transition: all 0.2s;
}

#volume-slider::-moz-range-thumb:hover {
    transform: scale(1.2);
}

#volume-slider::-moz-range-track {
    background: transparent;
    border: none;
}

#volume-slider::-moz-range-progress {
    background: linear-gradient(90deg, #f9a8d4, #f9a8d4);
    height: 4px;
    border-radius: 9999px;
}

.intro-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1d4ed8, #0f172a);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 6000;
    pointer-events: auto;
    overflow: hidden;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    opacity: 1;
    transform: scale(1);
    filter: blur(0px);
    transition: opacity 0.45s ease, transform 0.45s ease, filter 0.45s ease;
}

.intro-overlay.leaving {
    opacity: 0;
    transform: scale(1.06) translateY(-6px);
    filter: blur(10px);
    animation: intro_leave 0.72s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes intro_leave {
    from {
        opacity: 1;
        transform: scale(1);
        filter: blur(0px);
    }
    to {
        opacity: 0;
        transform: scale(1.06) translateY(-6px);
        filter: blur(10px);
    }
}

.intro-overlay.leaving .intro-content {
    animation: intro_content_leave 0.55s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes intro_content_leave {
    from {
        transform: translateY(0px) scale(1);
        opacity: 1;
    }
    to {
        transform: translateY(-14px) scale(0.985);
        opacity: 0;
    }
}

.intro-overlay::-webkit-scrollbar {
    display: none;
}

.intro-content {
    text-align: center;
    pointer-events: auto;
    filter:
        drop-shadow(0 0 18px rgba(249, 168, 212, 0.18))
        drop-shadow(0 0 42px rgba(249, 168, 212, 0.12));
}

.intro-title {
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    font-weight: 800;
    color: #e5e7eb;
    text-shadow:
        0 0 18px rgba(0, 0, 0, 0.65),
        0 0 16px rgba(249, 168, 212, 0.34),
        0 0 36px rgba(249, 168, 212, 0.30),
        0 0 86px rgba(249, 168, 212, 0.22),
        0 0 140px rgba(249, 168, 212, 0.12);
    letter-spacing: 0.22em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
    animation: intro_text_glow 2.2s ease-in-out infinite;
}

.intro-subtitle {
    color: #c7d2fe;
    font-size: 0.95rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    text-shadow:
        0 0 12px rgba(0, 0, 0, 0.55),
        0 0 16px rgba(244, 114, 182, 0.36),
        0 0 30px rgba(249, 168, 212, 0.28),
        0 0 72px rgba(249, 168, 212, 0.18),
        0 0 120px rgba(249, 168, 212, 0.10);
    margin-bottom: 2rem;
    animation: intro_text_glow 2.2s ease-in-out infinite;
}

@keyframes intro_text_glow {
    0%,
    100% {
        filter: brightness(1) saturate(1.02);
    }

    50% {
        filter: brightness(1.16) saturate(1.18);
    }
}

.intro-button {
    padding: 1rem 3rem;
    border-radius: 8px;
    border: 2px solid #f9a8d4;
    background: transparent;
    color: #f9a8d4;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    cursor: none;
    position: relative;
    box-shadow:
        0 0 0 1px rgba(249, 168, 212, 0.20) inset,
        0 0 24px rgba(249, 168, 212, 0.18);
    text-shadow: 0 0 18px rgba(249, 168, 212, 0.25);
    transition: all 0.3s ease;
}

.intro-button:hover {
    background: rgba(249, 168, 212, 0.22);
    color: #e5e7eb;
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.08) inset,
        0 0 26px rgba(249, 168, 212, 0.55),
        0 0 60px rgba(249, 168, 212, 0.25);
    text-shadow:
        0 0 14px rgba(249, 168, 212, 0.45),
        0 0 22px rgba(255, 255, 255, 0.18);
}

.intro-button:focus-visible {
    outline: none;
    box-shadow:
        0 0 0 2px rgba(249, 168, 212, 0.75),
        0 0 0 1px rgba(255, 255, 255, 0.10) inset,
        0 0 36px rgba(249, 168, 212, 0.45);
}

.intro-button:active {
    transform: scale(0.95);
}

@keyframes easter_egg_fade {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.8);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(1);
    }
}

@keyframes baguette_fall {
    0% {
        top: -50px;
        opacity: 1;
    }
    100% {
        top: 100vh;
        opacity: 0;
        transform: rotate(720deg);
    }
}

.files-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.files-modal.hidden {
    display: none;
}

.files-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    cursor: pointer;
}

.files-modal-content {
    position: relative;
    background: #0a0a0a;
    border: 1px solid #f9a8d4;
    border-radius: 12px;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    z-index: 3001;
}

.files-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid #f9a8d4;
}

.files-modal-header h2 {
    margin: 0;
    color: #f9a8d4;
    font-size: 1.2rem;
}

.files-modal-close {
    background: none;
    border: none;
    color: #f9a8d4;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.files-modal-close:hover {
    color: #fff;
}

.files-modal-body {
    padding: 1.5rem;
}

.files-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.file-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(249, 168, 212, 0.05);
    border: 1px solid rgba(249, 168, 212, 0.2);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.file-item:hover {
    background: rgba(249, 168, 212, 0.1);
    border-color: #f9a8d4;
}

.file-icon {
    width: 24px;
    height: 24px;
    color: #f9a8d4;
    flex-shrink: 0;
}

.file-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.file-name {
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
}

.file-size {
    color: #888;
    font-size: 0.85rem;
}

.file-actions {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.file-action-btn {
    background: transparent;
    border: none;
    color: #f9a8d4;
    cursor: pointer;
    padding: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease;
    text-decoration: none;
}

.file-action-btn:hover {
    color: #fff;
}

.project-files-btn {
    background: transparent;
    border: none;
    padding: 0;
    cursor: none !important;
    color: #f9a8d4;
    opacity: 0.5;
    transition: opacity 0.3s ease, color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-files-btn:hover {
    opacity: 1;
    color: #fff;
}

.project-card:hover .project-files-btn {
    opacity: 1;
    color: #f9a8d4;
}

.pyc-upload-zone {
    margin-top: 1rem;
    border: 2px dashed #333;
    border-radius: 8px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pyc-upload-zone:hover {
    border-color: #f9a8d4;
    background: rgba(249, 168, 212, 0.05);
}

.pyc-upload-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.pyc-upload-content span {
    color: #888;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.pyc-upload-zone:hover .pyc-upload-content span {
    color: #f9a8d4;
}

#interactive-tools-container {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.pyc-obfuscator-card {
    background: transparent;
    border: 1px solid #1a1a1a;
    border-radius: 8px;
    padding: 1.5rem;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 300px;
    max-width: 500px;
}

.pyc-obfuscator-card:hover,
.interactive-tool-card:hover {
    border-color: #f9a8d4;
}

.interactive-tool-card {
    background: transparent;
    border: 1px solid #1a1a1a;
    border-radius: 8px;
    padding: 1.5rem;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 300px;
    max-width: 500px;
}

.interactive-tool-card .project-description {
    min-height: 60px;
    display: flex;
    align-items: center;
}

.tool-upload-zone {
    margin-top: auto;
    border: 2px dashed #333;
    border-radius: 8px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tool-upload-zone:hover {
    border-color: #f9a8d4;
    background: rgba(249, 168, 212, 0.05);
}

.tool-upload-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.tool-upload-content span {
    color: #888;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.tool-upload-zone:hover .tool-upload-content span {
    color: #f9a8d4;
}

@media (max-width: 768px) {
    .audio-player {
        left: 1rem;
        right: 1rem;
        width: auto;
        bottom: 1rem;
        padding: 0.6rem 0.8rem;
    }

    .player-controls {
        gap: 0.6rem;
    }

    .track-name {
        font-size: 0.8rem;
    }

    .volume-container {
        width: 70px;
    }
}

.audio-player.minimized {
    padding: 0.6rem;
}

.audio-player.minimized .player-controls,
.audio-player.minimized .audio-progress-container {
    display: none;
}

.player-minimize-btn {
    background: transparent;
    border: none;
    color: #f9a8d4;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: none !important;
    transition: all 0.2s;
    width: 24px;
    height: 24px;
}

.player-minimize-btn:hover {
    color: #fff;
    transform: scale(1.1);
}

.discord-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.discord-popup.hidden {
    display: none;
}

.discord-popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
}

.discord-popup-content {
    position: relative;
    width: 340px;
    background: #232428;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.discord-popup-banner {
    height: 120px;
    background: linear-gradient(135deg, #5865f2, #f9a8d4);
}

.discord-popup-avatar-container {
    position: relative;
    margin-top: -40px;
    margin-left: 16px;
    width: 80px;
    height: 80px;
}

.discord-popup-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 6px solid #232428;
    background: #232428;
    position: relative;
    z-index: 10;
}

.discord-status-indicator {
    position: absolute;
    bottom: 4px;
    right: 4px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 3px solid #232428;
    background: #747f8d;
}

.discord-status-indicator.online {
    background: #3ba55c;
}

.discord-status-indicator.idle {
    background: #faa61a;
}

.discord-status-indicator.dnd {
    background: #ed4245;
}

.discord-status-indicator.offline {
    background: #747f8d;
}

.discord-popup-body {
    padding: 12px 16px 16px;
}

.discord-popup-header {
    display: flex;
    flex-direction: column;
    margin-bottom: 12px;
}

.discord-displayname {
    font-size: 1.25rem;
    font-weight: 600;
    color: #fff;
}

.discord-username {
    font-size: 0.875rem;
    color: #b5bac1;
    display: flex;
    align-items: center;
    gap: 6px;
}

.discord-clan-badge {
    width: 16px;
    height: 16px;
}

.discord-custom-status {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 12px;
    padding: 8px;
    background: #2b2d31;
    border-radius: 4px;
}

.discord-custom-emoji {
    width: 20px;
    height: 20px;
}

.discord-custom-status span {
    color: #dbdee1;
    font-size: 0.875rem;
}

.discord-divider {
    height: 1px;
    background: #3f4147;
    margin: 12px 0;
}

.discord-activity {
    background: #2b2d31;
    border-radius: 4px;
    padding: 12px;
    margin-bottom: 12px;
}

.discord-activity-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #b5bac1;
    text-transform: uppercase;
}

.discord-spotify-content {
    display: flex;
    gap: 12px;
}

.discord-spotify-art {
    width: 60px;
    height: 60px;
    border-radius: 4px;
}

.discord-spotify-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2px;
    min-width: 0;
}

.discord-spotify-song {
    font-size: 0.875rem;
    font-weight: 600;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.discord-spotify-artist {
    font-size: 0.75rem;
    color: #b5bac1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.discord-spotify-album {
    font-size: 0.75rem;
    color: #b5bac1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.discord-spotify-progress {
    margin-top: 10px;
    height: 4px;
    background: #4f545c;
    border-radius: 2px;
    overflow: hidden;
}

.discord-spotify-bar {
    height: 100%;
    background: #1db954;
    border-radius: 2px;
    transition: width 1s linear;
}

.discord-spotify-time {
    display: flex;
    justify-content: space-between;
    margin-top: 4px;
    font-size: 0.7rem;
    color: #b5bac1;
}

.discord-add-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 10px;
    background: #5865f2;
    border: none;
    border-radius: 4px;
    color: #fff;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    cursor: none !important;
    transition: background 0.2s;
}

.discord-add-btn:hover {
    background: #4752c4;
}

.discord-avatar-decoration {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 96px;
    height: 96px;
    border-radius: 50%;
    object-fit: contain;
    pointer-events: none;
    z-index: 20;
    filter: drop-shadow(0 0 6px rgba(0, 0, 0, 0.65)) saturate(1.2) contrast(1.15);
}

.discord-game-content {
    display: flex;
    gap: 12px;
}

.discord-game-art {
    width: 60px;
    height: 60px;
    border-radius: 4px;
}

.discord-game-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2px;
    min-width: 0;
}

.discord-game-name-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.discord-app-icon {
    width: 20px;
    height: 20px;
    border-radius: 4px;
    flex-shrink: 0;
}

.discord-game-name {
    font-size: 0.875rem;
    font-weight: 600;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.discord-game-details,
.discord-game-state {
    font-size: 0.75rem;
    color: #b5bac1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.discord-activity-progress {
    margin-top: 10px;
}

.discord-progress-bar {
    height: 4px;
    background: #3f4147;
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 6px;
}

.discord-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #1db954, #1ed760);
    border-radius: 2px;
    transition: width 0.1s linear;
}

.discord-activity-time {
    display: flex;
    justify-content: space-between;
    font-size: 0.7rem;
    color: #b5bac1;
}

.bass-btn {
    position: relative;
}

.bass-btn.active {
    color: #f9a8d4;
}

.bass-btn {
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 24px !important;
    height: 24px !important;
    background: rgba(249, 168, 212, 0.1) !important;
    border-radius: 4px !important;
    border: 1px solid rgba(249, 168, 212, 0.3) !important;
}

.bass-btn.active {
    color: #f9a8d4 !important;
}

.rotating-name {
    display: inline-block;
    min-width: 150px;
}

.rotating-name.slide-out {
    animation: slide_out 0.5s ease-in-out forwards;
}

.rotating-name.slide-in {
    animation: slide_in 0.5s ease-in-out forwards;
}

.rotating-name-intro {
    display: inline-block;
    min-width: 150px;
}

.rotating-name-intro.slide-out {
    animation: slide_out 0.5s ease-in-out forwards;
}

.rotating-name-intro.slide-in {
    animation: slide_in 0.5s ease-in-out forwards;
}

@media (max-width: 768px) {
    .lang-switch {
        display: none !important;
    }
    
    .lang-toggle-mobile {
        display: block !important;
    }
    
    .CustomCursor,
    .CursorTrail {
        display: none !important;
    }
    
    body {
        cursor: auto !important;
    }
    
    a, button, input[type="button"], input[type="submit"], [role="button"] {
        cursor: auto !important;
    }
}

.lang-toggle-mobile {
    display: none;
    position: fixed;
    top: 15px;
    right: 15px;
    padding: 6px 10px;
    background: rgba(88, 101, 242, 0.2);
    border: 1px solid rgba(88, 101, 242, 0.5);
    color: #5865f2;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    cursor: pointer;
    z-index: 100;
    transition: all 0.3s ease;
    min-width: 35px;
    text-align: center;
}

.lang-toggle-mobile:active {
    background: rgba(88, 101, 242, 0.4);
    border-color: rgba(88, 101, 242, 0.8);
}

.lang-menu-mobile {
    position: fixed;
    top: 54px;
    right: 15px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 10px;
    background: rgba(0, 0, 0, 0.65);
    border: 1px solid rgba(88, 101, 242, 0.35);
    border-radius: 10px;
    backdrop-filter: blur(10px);
    z-index: 2500;
}

.lang-menu-item {
    background: transparent;
    border: 1px solid #333;
    color: #888;
    padding: 8px 12px;
    border-radius: 8px;
    font-family: inherit;
    font-size: 12px;
    font-weight: 600;
    text-align: left;
    cursor: none !important;
    transition: all 0.2s ease;
}

.lang-menu-item:hover {
    border-color: #f9a8d4;
    color: #f9a8d4;
}

@media (max-width: 480px) {
    .lang-toggle-mobile {
        top: 12px;
        right: 12px;
        padding: 5px 8px;
        font-size: 10px;
        min-width: 32px;
    }
}

@media (max-width: 360px) {
    .lang-toggle-mobile {
        top: 10px;
        right: 10px;
        padding: 4px 6px;
        font-size: 9px;
        min-width: 28px;
    }
}

@keyframes slide_out {
    0% {
        opacity: 1;
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateY(-40px);
    }
}

@keyframes slide_in {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact-card {
    background: transparent;
    border: 1px solid #1a1a1a;
    border-radius: 8px;
    padding: 2rem;
    transition: all 0.3s ease;
    max-width: 600px;
}

.contact-card:hover {
    border-color: #f9a8d4;
}

.contact-text {
    color: #888;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.contact-email {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: linear-gradient(135deg, #f9a8d4, #f9a8d4);
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.contact-email:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(249, 168, 212, 0.4);
}

.glitch-mode {
    animation: glitch-text 0.1s infinite;
    text-shadow: 2px 2px 0 rgba(255, 0, 0, 0.8), -2px -2px 0 rgba(0, 255, 255, 0.8), 2px -2px 0 rgba(0, 255, 0, 0.8);
}

@keyframes glitch-text {
    0% {
        transform: translate(0);
    }
    20% {
        transform: translate(-2px, 2px);
    }
    40% {
        transform: translate(-2px, -2px);
    }
    60% {
        transform: translate(2px, 2px);
    }
    80% {
        transform: translate(2px, -2px);
    }
    100% {
        transform: translate(0);
    }
}

.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
}

.scroll-animate.animate-in {
    animation: fade-in-up 0.8s ease-out forwards;
    animation-delay: var(--delay, 0s);
}

@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.scroll-animate.animate-in.skill-card {
    animation: fade-in-up 0.8s ease-out forwards, scale-in 0.8s ease-out forwards;
}

@keyframes scale-in {
    from {
        transform: translateY(30px) scale(0.95);
    }
    to {
        transform: translateY(0) scale(1);
    }
}

.regex-open-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    background: transparent;
    border: 1px solid rgba(249, 168, 212, 0.3);
    border-radius: 8px;
    color: #f9a8d4;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: none !important;
    width: 100%;
    text-align: center;
}

.regex-open-btn:hover {
    background: rgba(249, 168, 212, 0.1);
    border-color: #f9a8d4;
}

.donate-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1500;
    display: flex;
    align-items: center;
    justify-content: center;
}

.donate-popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.donate-popup-content {
    position: relative;
    background: rgba(15, 15, 25, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    border: 1px solid rgba(249, 168, 212, 0.2);
    width: 90%;
    max-width: 340px;
    overflow: hidden;
    animation: popup-appear 0.3s ease;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.donate-popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.85rem 1.25rem;
    background: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.donate-popup-header h2 {
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
}

.donate-popup-close {
    background: transparent;
    border: none;
    color: #888;
    font-size: 1.5rem;
    line-height: 1;
    transition: color 0.2s;
}

.donate-popup-close:hover {
    color: #fff;
}

.donate-popup-body {
    padding: 1.25rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.donate-crypto-icon {
    margin-bottom: 0.75rem;
}

.donate-crypto-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.75rem;
}

.donate-qr-container {
    background: #fff;
    padding: 0.75rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
}

.donate-qr {
    width: 140px;
    height: 140px;
    display: block;
}

.donate-address-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 0.6rem 0.75rem;
    margin-bottom: 0.75rem;
    width: 100%;
    max-width: 320px;
}

.donate-address {
    font-family: 'Courier New', monospace;
    font-size: 0.65rem;
    color: #a0aec0;
    word-break: break-all;
    flex: 1;
    text-align: center;
}

.donate-copy-btn {
    background: rgba(249, 168, 212, 0.2);
    border: 1px solid rgba(249, 168, 212, 0.3);
    border-radius: 6px;
    padding: 0.5rem;
    color: #f9a8d4;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.donate-copy-btn:hover {
    background: rgba(249, 168, 212, 0.3);
    border-color: rgba(249, 168, 212, 0.5);
    color: #fff;
    transform: translateY(-1px);
}

.donate-thanks {
    font-size: 0.8rem;
    color: #64748b;
    margin-top: 0.25rem;
}

.donate-crypto-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.donate-crypto-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 0.75rem;
    transition: all 0.2s;
}

.donate-crypto-item:hover {
    border-color: rgba(249, 168, 212, 0.3);
    background: rgba(249, 168, 212, 0.05);
}

.donate-crypto-label {
    font-weight: 600;
    color: #fff;
    min-width: 40px;
}

.donate-tabs {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.donate-tab {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    width: 48px;
    height: 48px;
    padding: 0;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.donate-tab img {
    width: 28px;
    height: 28px;
}

.donate-tab:hover {
    background: rgba(249, 168, 212, 0.15);
    border-color: rgba(249, 168, 212, 0.4);
    transform: scale(1.05);
}

.donate-tab.active {
    background: rgba(249, 168, 212, 0.25);
    border-color: #f9a8d4;
    box-shadow: 0 0 15px rgba(249, 168, 212, 0.3);
}

