@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@700;900&display=swap');

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: system-ui, -apple-system, sans-serif;
    background-color: black;
    color: #e7e7e7;
    line-height: 1.5;
    overflow-x: hidden;
}

.image-gradient { position: absolute; top: 0; right: 0; opacity: 0.5; z-index: -1; }

.layer-blur {
    height: 0; width: 30rem; position: absolute; top: 20%; right: 0;
    box-shadow: 0 0 700px 15px white; rotate: -30deg; z-index: -1;
}

.footer-logo {
    font-size: 2.2rem; 
    font-weight: 100; 
    color: white; 
    margin-bottom: 1rem; 
    display: inline-block;
    letter-spacing: 0.5px;
    text-shadow: 0 0 20px rgba(132, 56, 183, 0.6);
}
.footer-logo .highlight {
    color: #fbfbfb; 
    text-shadow: 0 0 20px rgba(132, 56, 183, 0.6);
}

.footer-logo {
    font-size: 2.2rem; 
    font-weight: 100; 
    color: white; 
    margin-bottom: 1rem; 
    display: inline-block;
    letter-spacing: 0.5px;
    text-shadow: 0 0 20px rgba(132, 56, 183, 0.6);
}
.footer-logo .highlight {
    color: #fbfbfb; 
    text-shadow: 0 0 20px rgba(132, 56, 183, 0.6);
}

.tag-box {
    position: relative; width: 18rem; height: 2.5rem; border-radius: 50px;
    background: linear-gradient(to right, #656565, #7f42a7, #6600c5, #5300a0, #757575, #656565);
    background-size: 200%; animation: animateGradient 2.5s linear infinite;
    box-shadow: 0 0 15px rgba(132, 56, 183, 0.3);
}
@keyframes animateGradient { to { background-position: 200%; } }

.tag-box .tag {
    position: absolute; inset: 3px; background-color: black; border-radius: 50px;
    display: flex; align-items: center; justify-content: center;
    transition: 0.5s ease; cursor: pointer;
}
.tag-box .tag:hover { color: #8438b7; }

.btn-signing {
    background-color: #8438b7;
    color: black; padding: 0.8rem 2rem; border-radius: 50px; 
    border: none; font-size: 1rem; font-weight: 500;
    cursor: pointer; transition: all 0.3s ease; z-index: 999;
}
.btn-signing:hover {
    background-color: #7c39bb; transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(168, 85, 247, 0.5);
}

.btn-signing-main {
    text-decoration: none; background: linear-gradient(135deg, #7326c5, #7326c5);
    color: black; padding: 0.8rem 1.8rem; border-radius: 50px;
    font-size: 1rem; font-weight: 600; letter-spacing: 0.05em;
    display: inline-block; transition: all 0.3s ease; border: none;
}
.btn-signing-main:hover {
    background: linear-gradient(135deg, #6c18a4, #6c18a4);
    transform: translateY(-3px); box-shadow: 0 8px 25px rgba(159, 52, 212, 0.25);
}

.btn-get-started {
    text-decoration: none; border: 1px solid #2a2a2a; padding: 0.8rem 2rem;
    border-radius: 50px; font-size: 1rem; font-weight: 600; letter-spacing: 0.1em;
    transition: all 0.3s ease; color: #e7e7e7; background-color: transparent;
    display: inline-flex; align-items: center; justify-content: center; min-width: 150px; 
}
.btn-get-started:hover { background-color: #1a1a1a; border-color: #8438b7; color: #8438b7; }

.privacy-section { position: relative; z-index: 10; color: white; }
.privacy-content h2 { font-size: 3rem; font-weight: 600; margin-bottom: 1.5rem; line-height: 1.2; }
.privacy-content p { font-size: 1.1rem; color: #a7a7a7; line-height: 1.6; margin-bottom: 2rem; }
.link-arrow { font-size: 1.2rem; color: #8438b7; text-decoration: none; font-weight: 600; transition: color 0.3s ease; }
.link-arrow:hover { color: white; text-shadow: 0 0 10px #8438b7; }
.privacy-img { width: 100%; max-width: 600px; border-radius: 20px; background: linear-gradient(135deg, #2a0a4d, #000); }

.menu-toggle { display: flex; flex-direction: column; gap: 6px; cursor: pointer; z-index: 3000; padding: 5px; transition: opacity 0.3s ease; }
.menu-toggle .bar { width: 28px; height: 3px; background-color: white; border-radius: 5px; transition: all 0.3s ease; }
.menu-toggle:hover .bar { background-color: #8438b7; }
.menu-toggle.hide { opacity: 0; pointer-events: none; }

.mobile-menu-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background-color: rgba(0, 0, 0, 0.7); backdrop-filter: blur(5px); z-index: 2000;
    display: flex; justify-content: center; align-items: flex-start; padding-top: 0;
    opacity: 0; visibility: hidden; transition: all 0.3s ease;
}
.mobile-menu-overlay.active { opacity: 1; visibility: visible; }
.mobile-menu-box {
    width: 100%; max-width: 100%; background: #111; border-bottom: 1px solid #333; border-radius: 0 0 20px 20px;
    padding: 1.5rem; box-shadow: 0 10px 30px rgba(0,0,0,0.8); transform: translateY(-100%); transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.mobile-menu-overlay.active .mobile-menu-box { transform: translateY(0); }
.mobile-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 2rem; border-bottom: 1px solid #333; padding-bottom: 1rem; }
.mobile-header h3 { font-size: 1.2rem; font-weight: 600; color: white; }
.close-btn { font-size: 2rem; cursor: pointer; color: #888; line-height: 1; }
.close-btn:hover { color: white; }
.mobile-links { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2rem; }
.mobile-links a { text-decoration: none; color: #ccc; font-size: 1.1rem; font-weight: 500; padding: 0.5rem 0; border-bottom: 1px solid #222; transition: color 0.3s; }
.mobile-links a:hover { color: #8438b7; padding-left: 5px; }

.brand-section {
    margin-top: 9rem;
    margin-bottom: 6rem;
    padding: 2.5rem 0;
    text-align: center;
    position: relative;
    width: 100%;
    background: #09090b; 
    border-top: 1px solid #8438b7;
    border-bottom: 1px solid #8438b7;
    box-shadow: 0 0 30px rgba(132, 56, 183, 0.15);
}

.brand-heading {
    color: #a1a1aa; 
    font-size: 0rem;
    margin-bottom: 0rem; 
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 0;
}

.brand-slider-container {
    overflow: hidden; width: 100%; position: relative;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.brand-track {
    display: flex; gap: 6rem; width: max-content;
    animation: scrollBrands 40s linear infinite;
    align-items: center;
}

.brand-item {
    display: flex; align-items: center; gap: 0.8rem;
    color: #71717a;
    font-size: 1rem; font-weight: 400;
    transition: all 0.3s ease; cursor: default;
}

.brand-item i { font-size: 2.2rem; }

.brand-item:hover {
    color: white; 
    transform: scale(1.1); 
    text-shadow: 0 0 10px rgba(132, 56, 183, 0.8);
}
.brand-item:hover i { color: #a855f7; drop-shadow: 0 0 10px rgba(168, 85, 247, 0.8); }

@keyframes scrollBrands {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-100% / 3)); } 
}

.testimonials-wrapper { margin-top: 10rem; margin-bottom: 5rem; width: 100%; }
.testimonials-header { text-align: center; margin-bottom: 3rem; }
.testimonials-header h2 {
    font-size: 2.5rem; font-weight: 700; margin-bottom: 1rem;
    background: linear-gradient(to right, #fff, #ccc);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.testimonials-header p { color: #888; font-size: 1.1rem; }
.slider { height: auto; margin: auto; overflow: hidden; position: relative; width: 100%; }
.slider::before, .slider::after {
    background: linear-gradient(to right, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
    content: ""; height: 100%; position: absolute; width: 100px; z-index: 2; pointer-events: none;
}
.slider::after { right: 0; top: 0; transform: rotateZ(180deg); }
.slider::before { left: 0; top: 0; }
.slide-track { display: flex; width: calc(360px * 9); animation: scroll 35s linear infinite; }
.slider:hover .slide-track { animation-play-state: paused; }
.slide {
    height: 250px; width: 330px; margin: 0 15px; background-color: #0b0b12;
    border: 1px solid #1f1f2e; border-radius: 12px; padding: 2rem;
    display: flex; flex-direction: column; justify-content: space-between;
    transition: all 0.3s ease; cursor: default;
    box-shadow: inset 0 0 10px rgba(132, 56, 183, 0.05);
}
.slide:hover { 
    border-color: #8438b7;
    box-shadow: 0 0 20px rgba(132, 56, 183, 0.4), inset 0 0 10px rgba(132, 56, 183, 0.2);
    transform: translateY(-2px);
}
.stars { color: #f59e0b; margin-bottom: 1rem; font-size: 0.9rem; }
.review-text { color: #ccc; font-size: 0.95rem; line-height: 1.6; font-style: italic; }
.reviewer-info h4 { color: white; font-size: 1rem; margin-top: 1rem; font-weight: 600; }
.reviewer-info span { color: #666; font-size: 0.85rem; }
@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-360px * 3)); }
}

.discord-section { width: 100%; padding: 6rem; margin-bottom: 4rem; }
.discord-box {
    position: relative; background: #0b0b12; border: 1px solid #8438b7;
    border-radius: 16px; padding: 1.5rem 3rem; max-width: 1000px; margin: 0 auto;
    display: flex; justify-content: space-between; align-items: center;
    color: white; overflow: hidden;
    box-shadow: 0 0 15px rgba(132, 56, 183, 0.2), inset 0 0 20px rgba(132, 56, 183, 0.1);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.discord-box::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(800px circle at var(--x) var(--y), rgba(132, 56, 183, 0.25), transparent 40%);
    z-index: 0; pointer-events: none;
}
.discord-content, .discord-btn-area { position: relative; z-index: 1; }
.discord-box:hover {
    box-shadow: 0 0 30px rgba(132, 56, 183, 0.6), inset 0 0 20px rgba(132, 56, 183, 0.3);
    border-color: #a855f7; transform: translateY(-3px);
}
.discord-content { max-width: 60%; }
.discord-content h2 { 
    font-size: 1.8rem; font-weight: 700; display: flex; align-items: center; gap: 0.8rem; margin-bottom: 0.5rem; 
    text-shadow: 0 0 10px rgba(132, 56, 183, 0.5);
}
.discord-content p { font-size: 0.95rem; opacity: 0.9; color: #ccc; margin: 0; }
.join-discord-btn {
    display: inline-block; font-size: 1rem; font-weight: 700; color: white;
    text-decoration: none; text-transform: uppercase; background: #8438b7;
    padding: 0.8rem 1.5rem; border-radius: 8px; box-shadow: 0 0 10px rgba(132, 56, 183, 0.5);
    transition: all 0.3s ease;
}
.join-discord-btn:hover { background: #6d28d9; box-shadow: 0 0 25px rgba(132, 56, 183, 1); transform: scale(1.05); }

footer { border-top: 1px solid #222; padding: 5rem 0 2rem 0; width: 100%; text-align: center; }
.footer-grid { display: flex; justify-content: space-around; flex-wrap: wrap; gap: 3rem; padding: 0 2rem; margin-bottom: 4rem; text-align: center; }
.brand-col { display: flex; flex-direction: column; align-items: center; max-width: 300px; }
.brand-col p { color: #888; font-size: 0.95rem; line-height: 1.6; margin-bottom: 1.5rem; }
.social-icons { display: flex; gap: 1rem; justify-content: center; }
.social-icons a { color: #888; font-size: 1.5rem; transition: color 0.3s; }
.social-icons a:hover { color: #8438b7; text-shadow: 0 0 15px #8438b7; transform: scale(1.1); }
.footer-col { display: flex; flex-direction: column; align-items: center; }
.footer-col h4 { font-size: 1.1rem; color: white; margin-bottom: 1.5rem; font-weight: 600; }
.footer-col a { display: block; color: #888; text-decoration: none; margin-bottom: 0.8rem; font-size: 0.95rem; transition: all 0.3s; }
.footer-col a:hover { color: white; text-shadow: 0 0 8px rgba(132, 56, 183, 0.8); }
.footer-bottom { text-align: center; border-top: 1px solid #1a1a1a; padding-top: 2rem; color: #555; font-size: 0.9rem; }