body {
    background-color: #010101;
    color: white;
    font-family: 'Satoshi', sans-serif;
    overflow-x: hidden;
}

.no-scrollbar::-webkit-scrollbar { display: none; }
.no-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }

.ndt_blick_btn {
    position: relative;
    overflow: hidden;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.ndt_blick_btn:hover {
    background-color: #0071E3 !important;
    color: white !important;
    border-color: #0071E3 !important;
}
.ndt_blick_btn::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -60%;
    width: 20%;
    height: 200%;
    background: rgba(255, 255, 255, 0.4);
    transform: rotate(30deg);
    transition: all 0.5s;
    pointer-events: none;
}
.ndt_blick_btn:hover::after {
    left: 120%;
}

.square-shape {
    background-color: #0c0c0c;
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.circle-shape {
    background-color: #0c0c0c;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.glass-card {
    background: rgba(12, 12, 12, 0.4);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}
.glass-card:hover { border-color: rgba(0, 113, 227, 0.5); }
.text-gradient-blue {
    background: linear-gradient(180deg, #FFFFFF 0%, #0071E3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-in-out, opacity 0.5s ease-in-out;
    opacity: 0;
}
.faq-answer.open { opacity: 0.6; }
.faq-icon { transition: transform 0.3s ease; }

.carousel-container {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
}
.carousel-item {
    flex: 0 0 100%;
    scroll-snap-align: center;
}
@media (min-width: 1024px) {
    .carousel-item { flex: 0 0 50%; }
}