:root {
    --bg-color: #121212;
    --primary-color: #f91880;
    --card-bg-color: rgba(26, 26, 26, 0.7);
    --text-color: #e0e0e0;
    --border-color: rgba(249, 24, 128, 0.2);
}

body {
    font-family: 'Space Grotesk', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    overflow-x: hidden;
}

#tsparticles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.glitch {
    font-size: 4rem;
    font-weight: 700;
    position: relative;
    color: white;
    text-shadow: 0 0 5px var(--primary-color), 0 0 10px var(--primary-color);
}

.glitch:before,
.glitch:after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-color);
    overflow: hidden;
}

.glitch:before {
    left: 2px;
    text-shadow: -2px 0 #7e22ce;
    animation: glitch-anim-1 2s infinite linear reverse;
}

.glitch:after {
    left: -2px;
    text-shadow: -2px 0 var(--primary-color), 2px 2px #7e22ce;
    animation: glitch-anim-2 2s infinite linear reverse;
}

@keyframes glitch-anim-1 {
    0%, 100% { clip-path: inset(45% 0 56% 0); }
    20% { clip-path: inset(15% 0 86% 0); }
    40% { clip-path: inset(65% 0 16% 0); }
    60% { clip-path: inset(85% 0 6% 0); }
    80% { clip-path: inset(35% 0 66% 0); }
}

@keyframes glitch-anim-2 {
    0%, 100% { clip-path: inset(5% 0 96% 0); }
    20% { clip-path: inset(95% 0 1% 0); }
    40% { clip-path: inset(25% 0 76% 0); }
    60% { clip-path: inset(55% 0 26% 0); }
    80% { clip-path: inset(5% 0 96% 0); }
}

.glass-card {
    background: var(--card-bg-color);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}
.glass-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 0 20px rgba(249, 24, 128, 0.2);
}

.scrolling-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to right, transparent 0, black 128px, black calc(100% - 128px), transparent 100%);
    mask-image: linear-gradient(to right, transparent 0, black 128px, black calc(100% - 128px), transparent 100%);
}

.testimonial-track, .transfer-track {
    display: flex;
}
.testimonial-track {
    animation: scroll 80s linear infinite;
    width: calc(400px * 24);
}
.transfer-track {
    animation: scroll-fast 30s linear infinite;
    width: calc(250px * 12);
}


@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-400px * 12)); }
}
@keyframes scroll-fast {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-250px * 6)); }
}

.scrolling-wrapper:hover .testimonial-track,
.scrolling-wrapper:hover .transfer-track {
    animation-play-state: paused;
}


img, video:not([controls]) {
    pointer-events: none;
    user-select: none;
}

::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #1a1a1a;
}
::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: #fff;
}

.menu-link {
    position: relative;
    text-decoration: none;
    color: white;
}
.menu-link::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    border-radius: 2px;
    background-color: var(--primary-color);
    bottom: -5px;
    left: 0;
    transform-origin: right;
    transform: scaleX(0);
    transition: transform .3s ease-in-out;
}
.menu-link:hover::before {
    transform-origin: left;
    transform: scaleX(1);
}

.gallery-item {
    transition: transform 0.3s ease, filter 0.3s ease;
    overflow: hidden;
    border-radius: 0.5rem;
}
.gallery-item:hover {
    transform: scale(1.05) rotate(2deg);
    filter: brightness(1.2);
}

.faq-question.active .faq-icon {
    transform: rotate(180deg);
}
.faq-question:hover {
    background-color: rgba(249, 24, 128, 0.1);
}

.form-input {
    width: 100%;
    background-color: rgba(0,0,0,0.2);
    border: 1px solid var(--border-color);
    border-radius: 0.375rem;
    padding: 0.75rem 1rem;
    color: var(--text-color);
    transition: border-color 0.3s, box-shadow 0.3s;
}
.form-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 10px rgba(249, 24, 128, 0.3);
}
.file-upload-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px dashed var(--border-color);
    color: var(--text-color);
    border-radius: 0.375rem;
    cursor: pointer;
    transition: all 0.3s;
}
.file-upload-label:hover {
    background-color: rgba(249, 24, 128, 0.1);
    border-color: var(--primary-color);
}