:root {
    --bg-color: #050505;
    --primary: #2563eb;
    --accent: #3b82f6;
    --text: #ffffff;
    --glass: rgba(255, 255, 255, 0.05);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: var(--bg-color);
    color: var(--text);
    overflow-x: hidden;
    min-height: 100vh;
}

#void-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background: rgba(5, 5, 5, 0.7);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 1.2rem;
}

.logo img {
    height: 35px;
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.7);
    transition: 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--accent);
    text-shadow: 0 0 10px var(--primary);
}

.btn-primary {
    background: var(--primary);
    color: white;
    padding: 10px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.glow-btn:hover {
    box-shadow: 0 0 20px var(--primary);
    transform: translateY(-2px);
}

.btn-secondary {
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 10px 25px;
    border-radius: 50px;
    text-decoration: none;
    margin-left: 10px;
    transition: 0.3s;
}

.btn-secondary:hover {
    background: white;
    color: black;
}

.hero-section {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 60px;
}

.hero-content h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 20px;
}

.highlight {
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 40px auto;
}

/* Footer */
.footer {
    padding: 2rem;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.8);
}

.socials {
    margin-top: 10px;
}

.socials a {
    color: white;
    margin: 0 10px;
    font-size: 1.2rem;
    opacity: 0.7;
    transition: 0.3s;
}

.socials a:hover {
    opacity: 1;
    color: var(--accent);
}



.main-footer {
    background-color: #050505;
    color: #fff;
    padding: 80px 5% 20px;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}



.footer-watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 25vw;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.02);
    user-select: none;
    pointer-events: none;
    z-index: 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
}

.footer-section {
    flex: 1;
    min-width: 250px;
}



.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.footer-logo img {
    height: 40px;
}

.brand-desc {
    color: #a1a1aa;
    line-height: 1.6;
    font-size: 0.95rem;
}



.footer-section h3 {
    font-size: 1.1rem;
    margin-bottom: 25px;
    color: #fff;
}



.links ul {
    list-style: none;
}

.links ul li {
    margin-bottom: 12px;
}

.links ul li a {
    text-decoration: none;
    color: #a1a1aa;
    transition: 0.3s;
}

.links ul li a:hover {
    color: var(--accent);
    padding-left: 5px;
}



.social-icons {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icons a:hover {
    background: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3);
}



.email-box span {
    display: block;
    font-weight: 700;
    color: #fff;
    margin-bottom: 5px;
}

.email-box a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 500;
}



.footer-bottom {
    text-align: center;
    margin-top: 60px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #52525b;
    font-size: 0.9rem;
    position: relative;
    z-index: 1;
}



.page-404 {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.error-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 20px;
    position: relative;
    z-index: 2;
}

.error-container h1 {
    font-size: 8rem;
    font-weight: 900;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 2px var(--primary);
    margin-bottom: 20px;
    text-shadow: 0 0 30px var(--primary);
}

.error-container h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.error-container p {
    color: #a1a1aa;
    margin-bottom: 30px;
}



.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.4s ease;
    background: transparent;
    border-bottom: 1px solid transparent;
}



.navbar.scrolled {
    background: rgba(5, 5, 5, 0.85);
    backdrop-filter: blur(15px);
    padding: 1rem 5%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 1.2rem;
    color: #fff;
}

.logo img {
    height: 35px;
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.8);
    transition: 0.3s;
    font-weight: 500;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--accent);
}



.desktop-btn {
    display: inline-block;
}

.mobile-btn-container {
    display: none;
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #fff;
}



@media (max-width: 768px) {

    .navbar {
        padding: 1rem 5%;
        background: rgba(5, 5, 5, 0.95);
        backdrop-filter: blur(10px);
    }

    .desktop-btn {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        height: 0;
        background: rgba(5, 5, 5, 0.95);
        backdrop-filter: blur(15px);
        flex-direction: column;
        align-items: center;
        overflow: hidden;
        transition: height 0.4s ease;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        gap: 0;
    }



    .nav-links.active {
        height: 350px;
        padding: 20px 0;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
        opacity: 0;
        transform: translateY(-20px);
        transition: 0.4s;
    }



    .nav-links.active li {
        opacity: 1;
        transform: translateY(0);
    }

    .nav-links.active li:nth-child(1) {
        transition-delay: 0.1s;
    }

    .nav-links.active li:nth-child(2) {
        transition-delay: 0.2s;
    }

    .nav-links.active li:nth-child(3) {
        transition-delay: 0.3s;
    }

    .nav-links.active li:nth-child(4) {
        transition-delay: 0.4s;
    }

    .nav-links.active li:nth-child(5) {
        transition-delay: 0.5s;
    }

    .nav-links a {
        display: block;
        padding: 15px;
        font-size: 1.2rem;
    }

    .mobile-btn-container {
        display: block;
        margin-top: 10px;
    }
}




.services-page {
    padding-top: 120px;
    padding-bottom: 80px;
    min-height: 100vh;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.page-header {
    text-align: center;
    margin-bottom: 60px;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}






.services-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    align-items: stretch;
}




.service-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px 30px;
    backdrop-filter: blur(10px);
    transition: 0.4s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}



.service-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.07);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
    border-color: var(--primary);
}



.card-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 20px;
    background: rgba(37, 99, 235, 0.1);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-left: auto;
    margin-right: auto;
}

.service-card h3 {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.card-desc {
    text-align: center;
    color: #a1a1aa;
    font-size: 0.95rem;
    margin-bottom: 30px;
    line-height: 1.5;
}



.service-list {
    list-style: none;
    margin-bottom: 30px;
    padding: 0 10px;
}

.service-list li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 1rem;
    color: #e4e4e7;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 10px;
}



.service-list li i {
    color: #10b981;
    margin-right: 15px;
    font-size: 1.2rem;
    text-shadow: 0 0 10px rgba(16, 185, 129, 0.5);
}



.btn-card {
    display: block;
    width: 100%;
    padding: 12px;
    text-align: center;
    border: 1px solid var(--primary);
    border-radius: 50px;
    color: white;
    text-decoration: none;
    transition: 0.3s;
}

.btn-card:hover {
    background: var(--primary);
    box-shadow: 0 0 15px var(--primary);
}



.highlight-card {
    border-color: var(--primary);
    background: rgba(37, 99, 235, 0.05);
    transform: scale(1.05);
}



@media (max-width: 768px) {
    .highlight-card {
        transform: scale(1);
    }
}



.about-page {
    padding-top: 120px;
    padding-bottom: 80px;
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
}



.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 60px;
}

.stat-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 20px;
    text-align: center;
    border-radius: 15px;
    backdrop-filter: blur(5px);
    transition: 0.3s;
}

.stat-box:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.stat-box i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.stat-box h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 5px;
}

.stat-box p {
    color: #a1a1aa;
    font-size: 0.9rem;
}



.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 80px;
}

@media (max-width: 768px) {
    .mv-grid {
        grid-template-columns: 1fr;
    }
}

.mv-card {
    background: rgba(5, 5, 5, 0.6);
    border-left: 4px solid var(--primary);
    padding: 30px;
    border-radius: 0 15px 15px 0;
}

.mv-card h3 {
    color: #fff;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.mv-card p {
    color: #ccc;
    line-height: 1.6;
}



.founder-section {
    text-align: center;
    margin-top: 50px;
}

.section-title {
    font-size: 2rem;
    margin-bottom: 40px;
    color: #fff;
    letter-spacing: 2px;
}

.founder-card {
    background: rgba(25, 25, 25, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 20px;
    max-width: 400px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: 0.3s;
}

.founder-card:hover {
    box-shadow: 0 0 30px rgba(37, 99, 235, 0.2);
    border-color: var(--primary);
}



.img-wrapper {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    position: relative;
}

.img-wrapper img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 3px solid var(--primary);
    object-fit: cover;
}



.status-indicator {
    position: absolute;
    bottom: 5px;
    right: 5px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 3px solid #191919;
    background-color: #747f8d;


}

.status-indicator.online {
    background-color: #3ba55c;
    box-shadow: 0 0 10px #3ba55c;
}

.status-indicator.dnd {
    background-color: #ed4245;
}

.status-indicator.idle {
    background-color: #faa61a;
}

.founder-card h3 {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 5px;
}

.role-badge {
    background: linear-gradient(90deg, var(--primary), var(--accent));
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    color: #fff;
    display: inline-block;
    margin-bottom: 20px;
}

.founder-desc {
    color: #a1a1aa;
    margin-bottom: 25px;
}

.founder-socials {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.founder-socials a {
    color: #fff;
    font-size: 1.5rem;
    transition: 0.3s;
}

.founder-socials a:hover {
    color: var(--primary);
    transform: scale(1.2);
}



.contact-page {
    padding-top: 120px;
    padding-bottom: 80px;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-container {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

/* Mobilde Alt Alta Olsun */
@media (max-width: 900px) {
    .contact-container {
        flex-direction: column-reverse;
    }

    /* Discord mobilde üste çıksın dersen column-reverse yap */
}



.contact-left {
    flex: 1;
    width: 100%;
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

@media (max-width: 600px) {
    .info-grid {
        grid-template-columns: 1fr;
    }
}

.info-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 15px;
    text-align: center;
}

.info-card i {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.info-card h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: #fff;
}

.info-card p {
    color: #ccc;
    font-size: 0.9rem;
}

.status-badge {
    display: inline-block;
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    font-size: 0.75rem;
    padding: 3px 8px;
    border-radius: 5px;
    margin-top: 5px;
}

.hours-box span {
    display: block;
    font-size: 0.9rem;
    color: #a1a1aa;
    margin-top: 3px;
}

.hours-box strong {
    color: #fff;
}



.form-box {
    background: rgba(5, 5, 5, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.form-box h3 {
    margin-bottom: 20px;
    color: #fff;
}

.input-group {
    margin-bottom: 15px;
}

.input-group input,
.input-group select,
.input-group textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 15px;
    border-radius: 10px;
    color: #fff;
    outline: none;
    font-family: 'Inter', sans-serif;
    transition: 0.3s;
}

.input-group input:focus,
.input-group textarea:focus {
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.1);
}

/* Placeholder Rengi */
::placeholder {
    color: rgba(255, 255, 255, 0.3);
}



/* Select içindeki option'ların arka planını karanlık yap */
.input-group select option {
    background-color: #121212;

    color: #fff;

    padding: 10px;
}



.contact-right {
    flex: 0 0 350px;
    /* Genişlik sabit */
    display: flex;
    justify-content: center;
    width: 100%;
    /* Mobil uyum */
}

.discord-wrapper {
    position: sticky;
    top: 100px;

    background: #5865F2;

    padding: 5px;

    border-radius: 15px;
    box-shadow: 0 0 40px rgba(88, 101, 242, 0.4);

    animation: pulseDiscord 3s infinite;
}

@keyframes pulseDiscord {
    0% {
        box-shadow: 0 0 20px rgba(88, 101, 242, 0.3);
    }

    50% {
        box-shadow: 0 0 50px rgba(88, 101, 242, 0.6);
    }

    100% {
        box-shadow: 0 0 20px rgba(88, 101, 242, 0.3);
    }
}




.discord-wrapper iframe {
    border-radius: 0 0 10px 10px;
    display: block;
    background: #000;
}

.btn-discord-join {
    display: block;
    text-align: center;
    background: #5865F2;
    color: white;
    text-decoration: none;
    padding: 12px;
    margin-top: 10px;
    border-radius: 8px;
    font-weight: bold;
    transition: 0.3s;
}

.btn-discord-join:hover {
    background: #4752c4;
}

/* Mobilde iframe taşmasın */
@media (max-width: 400px) {
    .contact-right {
        flex: 1;
    }

    .discord-wrapper {
        width: 100%;
    }

    .discord-wrapper iframe {
        width: 100%;
    }
}






::-webkit-scrollbar {
    width: 10px;

}



::-webkit-scrollbar-track {
    background: #050505;

    border-left: 1px solid rgba(255, 255, 255, 0.05);

}



::-webkit-scrollbar-thumb {
    background: #2563eb;

    border-radius: 10px;

    border: 2px solid #050505;

}



::-webkit-scrollbar-thumb:hover {
    background: #3b82f6;

    box-shadow: 0 0 10px #3b82f6;

}



html {
    scrollbar-width: thin;

    scrollbar-color: #2563eb #050505;

}






a.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;

    color: #fff;

    font-weight: 800;
    font-size: 1.2rem;
    cursor: pointer;
}



a.logo img {
    height: 35px;
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);

}



a.logo:hover img {
    transform: rotate(360deg);

    filter: drop-shadow(0 0 10px rgba(37, 99, 235, 0.6));

}



a.logo:hover span {
    color: var(--accent);

    transition: 0.3s;
}






.custom-menu-link {
    position: relative;

    text-decoration: none;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    transition: 0.3s;
    padding-bottom: 5px;

}



.custom-menu-link::after {
    content: '';
    position: absolute;
    width: 0%;

    height: 2px;

    bottom: 0;
    left: 0;

    background-color: #2563eb;

    transition: width 0.3s ease-in-out;

    box-shadow: 0 0 10px #2563eb;

}



.custom-menu-link:hover::after {
    width: 100%;

}

.custom-menu-link:hover {
    color: #fff;

    text-shadow: 0 0 10px rgba(37, 99, 235, 0.5);

}



.custom-menu-link.active-page {
    color: #fff;
    text-shadow: 0 0 15px rgba(37, 99, 235, 0.8);

}



.custom-menu-link.active-page::after {
    width: 100%;
}






.tech-strip {
    background: transparent;
    border: none;
    padding: 30px 0;
    margin-bottom: 80px;
    position: relative;
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.tech-track {
    display: flex;
    gap: 60px;
    width: max-content;
    animation: scrollTech 25s linear infinite;
}

.slide {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 600;
    transition: 0.3s;
}

.slide:hover {
    color: #fff;
    text-shadow: 0 0 15px var(--primary);
    transform: scale(1.1);
}

.slide i {
    font-size: 1.8rem;
}

@keyframes scrollTech {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}


.process-section {
    max-width: 1200px;
    margin: 0 auto 120px;
    padding: 0 5%;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.process-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 40px 30px;
    border-radius: 20px;
    position: relative;
    transition: 0.4s ease;
    backdrop-filter: blur(10px);
}

.process-card:hover {
    transform: translateY(-10px);
    background: rgba(37, 99, 235, 0.08);
    border-color: var(--primary);
    box-shadow: 0 10px 40px rgba(37, 99, 235, 0.15);
}

.step-number {
    font-size: 5rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.03);
    position: absolute;
    top: -10px;
    right: 20px;
    z-index: 0;
}

.process-card h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: #fff;
    position: relative;
    z-index: 1;
}

.process-card p {
    color: #a1a1aa;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}


.faq-section {
    max-width: 800px;
    margin: 0 auto 120px;
    padding: 0 5%;
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.faq-item {
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin: 0;
    transition: 0.3s;
}

.faq-item:hover {
    border-bottom-color: rgba(255, 255, 255, 0.4);
}

.faq-item summary {
    padding: 25px 10px;
    cursor: pointer;
    font-weight: 500;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary i {
    color: var(--primary);
    transition: 0.3s;
    font-size: 0.9rem;
}

.faq-item[open] summary {
    color: var(--primary);
    font-weight: 600;
}

.faq-item[open] summary i {
    transform: rotate(45deg);
}

.faq-content {
    padding: 0 10px 25px 10px;
    color: #a1a1aa;
    line-height: 1.6;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.community-banner {
    background: linear-gradient(90deg, transparent, rgba(88, 101, 242, 0.08), transparent);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 100px 5%;
    text-align: center;
    margin-bottom: 100px;
}

.faq-section {
    max-width: 900px;
    margin: 100px auto;
    padding: 0 5%;
}

.faq-main-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 10px;
    color: #fff;
}

.faq-subtitle {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 50px;
}

.faq-wrapper {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-box {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    transition: 0.3s;
    overflow: hidden;
}

.faq-box:hover {
    border-color: var(--accent-blue);
    background: rgba(255, 255, 255, 0.04);
}

.faq-box summary {
    padding: 22px 25px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
}

.faq-box summary::-webkit-details-marker {
    display: none;
}

.faq-box summary i {
    color: var(--accent-blue);
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-size: 0.9rem;
}

.faq-box[open] {
    background: rgba(0, 85, 255, 0.05);
    border-color: var(--accent-blue);
}

.faq-box[open] summary i {
    transform: rotate(45deg);
    color: #fff;
}

.faq-ans {
    padding: 0 25px 25px 25px;
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 0.95rem;
    animation: slideDown 0.4s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

:root {
    --brand-blue: #0055ff;
    --brand-green: #0055ff;
    --dark-surface: #0f0f0f;
    --text-gray: #a1a1aa;
}

.hero-wrapper {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 140px 20px 60px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 25px;
}

.text-gradient {
    background: linear-gradient(90deg, #0055ff, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-desc {
    font-size: 1.2rem;
    color: var(--text-gray);
    max-width: 650px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-solid {
    background: var(--brand-blue);
    color: #fff;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s;
    box-shadow: 0 0 25px rgba(0, 85, 255, 0.4);
}
.btn-solid:hover { transform: translateY(-3px); box-shadow: 0 0 40px rgba(0, 85, 255, 0.6); }

.btn-outline {
    background: rgba(255,255,255,0.05);
    color: #fff;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    border: 1px solid rgba(255,255,255,0.1);
    transition: 0.3s;
}
.btn-outline:hover { background: rgba(255,255,255,0.1); }

.stats-bar {
    display: flex;
    justify-content: space-around;
    max-width: 1000px;
    margin: 0 auto 100px;
    padding: 50px 20px;
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    background: rgba(0,0,0,0.3);
    text-align: center;
    flex-wrap: wrap;
    gap: 30px;
}
.stat-item h2 { font-size: 3rem; font-weight: 800; margin: 0; color: #fff; }
.text-green { color: var(--brand-green) !important; }
.stat-item p { color: var(--text-gray); margin-top: 5px; }

.split-section {
    max-width: 1200px;
    margin: 0 auto 150px;
    padding: 0 5%;
}

.split-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: start;
}

.split-content { position: sticky; top: 120px; }

.split-title {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #fff;
    font-weight: 800;
}

.badge-accent {
    background: var(--brand-green);
    color: #000;
    padding: 2px 10px;
    border-radius: 5px;
    display: inline-block;
    transform: rotate(-2deg);
    font-weight: 900;
}

.split-text { color: var(--text-gray); font-size: 1.1rem; line-height: 1.7; margin-bottom: 30px; }

.tags-row span {
    display: inline-block;
    padding: 6px 15px;
    border-radius: 20px;
    background: rgba(255,255,255,0.05);
    color: #fff;
    font-size: 0.85rem;
    margin-right: 10px;
    border: 1px solid rgba(255,255,255,0.1);
}

.split-cards { display: flex; flex-direction: column; gap: 25px; }

.step-box {
    background: var(--dark-surface);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 35px;
    border-radius: 20px;
    transition: 0.3s;
}
.step-box:hover {
    border-color: rgba(255,255,255,0.2);
    transform: translateX(10px);
}

.step-id { color: var(--brand-blue); font-weight: 900; font-size: 1.2rem; display: block; margin-bottom: 10px; }
.step-box h3 { font-size: 1.5rem; color: #fff; margin-bottom: 10px; }
.step-box p { color: var(--text-gray); line-height: 1.6; }

.discord-area { text-align: center; margin-bottom: 120px; padding: 0 20px; }
.discord-card {
    display: inline-block;
    background: linear-gradient(180deg, rgba(88,101,242,0.1) 0%, rgba(0,0,0,0) 100%);
    padding: 60px 40px;
    border-radius: 30px;
    border: 1px solid rgba(88,101,242,0.3);
    max-width: 800px;
}
.discord-card i { font-size: 4rem; color: #5865F2; margin-bottom: 20px; display: block; }
.discord-card h2 { font-size: 2.2rem; color: #fff; margin-bottom: 15px; }
.discord-card p { color: var(--text-gray); margin-bottom: 35px; font-size: 1.1rem; }
.btn-discord {
    background: #5865F2; color: #fff; padding: 14px 35px; border-radius: 12px; text-decoration: none; font-weight: 700;
}

.faq-area { max-width: 800px; margin: 0 auto 150px; padding: 0 20px; }
.faq-head { font-size: 2.2rem; color: #fff; margin-bottom: 40px; text-align: left; }
.text-blue { color: var(--brand-blue); }

.faq-item { border-bottom: 1px solid rgba(255,255,255,0.1); margin-bottom: 15px; }
.faq-item summary {
    padding: 20px 10px; cursor: pointer; color: #fff; font-weight: 600; font-size: 1.1rem;
    display: flex; justify-content: space-between; list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary i { color: var(--text-gray); transition: 0.3s; }
.faq-item[open] summary i { transform: rotate(180deg); color: #fff; }
.faq-body { padding: 0 10px 20px; color: var(--text-gray); line-height: 1.6; }

@media (max-width: 900px) {
    .hero-wrapper { padding-top: 120px; min-height: auto; padding-bottom: 60px; }
    .hero-title { font-size: 2.5rem; }
    .hero-btns { flex-direction: column; width: 100%; align-items: center; }
    .btn-solid, .btn-outline { width: 100%; max-width: 320px; }
    .split-container { grid-template-columns: 1fr; gap: 50px; }
    .split-content { position: static; text-align: center; margin-bottom: 20px; }
    .tags-row { justify-content: center; }
    .stats-bar { flex-direction: column; gap: 40px; padding: 40px 0; }
    .faq-head { text-align: center; font-size: 2rem; }
}