* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Outfit', sans-serif;
    color: #ffffff;
    background-color: #0e0e0e;
    overflow-x: hidden;
    margin: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.navbar {
    position: fixed;
    width: 100%;
    background: rgba(14, 14, 14, 0.9);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    z-index: 100;
    transition: background 0.3s ease;
}

.navbar.scrolled {
    background: rgba(14, 14, 14, 0.95);
}

.logo a {
    color: #ffffff;
    font-size: 1.8rem;
    font-weight: bold;
    text-decoration: none;
    position: relative;
    display: inline-block;
    animation: logoGlow 2s infinite;
}

.logo .void {
    color: #ffffff;
}

.logo .bot {
    color: #3F4AAA;
}

@keyframes logoGlow {
    0% {
        text-shadow: 0 0 10px rgba(63, 74, 170, 0.4), 0 0 10px rgba(63, 74, 170, 0.3);
    }
    50% {
        text-shadow: 0 0 10px rgba(63, 74, 170, 0.4), 0 0 10px rgba(63, 74, 170, 0.3);
    }
    100% {
        text-shadow: 0 0 10px rgba(63, 74, 170, 0.4), 0 0 10px rgba(63, 74, 170, 0.3);
    }
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-links li a {
    color: #cccccc;
    text-decoration: none;
    font-size: 1rem;
    position: relative;
    transition: color 0.3s, text-shadow 0.3s;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    width: 0%;
    height: 2px;
    background: #3F4AAA;
    bottom: -5px;
    left: 0;
    transition: width 0.3s;
}

.nav-links li a:hover {
    color: #3F4AAA;
    text-shadow: 0 0 10px #3F4AAA;
}

.nav-links li a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    height: 3px;
    width: 25px;
    background: #fff;
    margin-bottom: 5px;
    border-radius: 5px;
    transition: all 0.3s;
}

.hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 20px;
    text-align: center;
    min-height: 60vh; 
    background: linear-gradient(135deg, #1a1a1a 0%, #0e0e0e 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    width: 150%;
    height: 150%;
    top: -25%;
    left: -25%;
    background: radial-gradient(circle at center, rgba(63, 74, 170, 0.2), transparent 70%);
    animation: rotateBackground 20s linear infinite;
    z-index: -1;
}

@keyframes rotateBackground {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

 
.hero-content {
    
    max-width: 800px;
    animation: fadeInUp 1.5s ease-out;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 30px;
    line-height: 1.2;
    color: #ffffff;
    text-shadow: 0 0 5px rgba(63, 74, 170, 0.5);
}

.hero-content h1 .void {
    color: #ffffff;
}

.hero-content h1 .bot {
    color: #3F4AAA;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #cccccc;
}

.hero-content .btn {
    display: inline-block;
    padding: 18px 36px;
    background: #3F4AAA;
    color: #ffffff;
    font-size: 1.1rem;
    border-radius: 25px;
    text-decoration: none;
    transition: background 0.3s;
    position: relative;
    overflow: hidden;
}


.hero-content .btn:hover {
    background: #4b59d2;
}

.hero-content .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50px;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transform: skewX(-45deg);
    opacity: 0;
    transition: opacity 0.3s, left 0.5s;
}

.hero-content .btn:hover::before {
    left: 0;
    opacity: 0.3;
}

.features {
    padding: 100px 20px;
    text-align: center;
    background-color: #111;
    animation: fadeInUp 1s ease-out;
}

.features h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #ffffff;
    position: relative;
}

.features h2::after {
    content: '';
    width: 80px;
    height: 3px;
    background: #3F4AAA;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -10px;
}

.features-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
}

.feature-item {
    background: #1a1a1a;
    padding: 30px;
    border-radius: 10px;
    width: 220px;
    transition: transform 0.3s;
}

.feature-item:hover {
    transform: translateY(-10px);
}

.feature-icon {
    font-size: 3rem;
    color: #3F4AAA;
    margin-bottom: 20px;
    transition: transform 0.3s;
}

.feature-item:hover .feature-icon {
    transform: scale(1.1);
}

.feature-item h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #ffffff;
}

.feature-item p {
    color: #cccccc;
    font-size: 1rem;
    line-height: 1.6;
}

.faq {
    padding-top: 80px;
    padding: 60px 20px;
    text-align: center;
    animation: fadeInUp 1s ease-out;
}

.faq h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #ffffff;
    position: relative;
}

.faq h2::after {
    content: '';
    width: 80px;
    height: 3px;
    background: #3F4AAA;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -10px;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.faq-item {
    background: #1a1a1a;
    padding: 20px 25px;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: background 0.3s;
    cursor: pointer;
    position: relative;
}

.faq-item h3 {
    margin: 0;
    font-size: 1.2rem;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.faq-item h3 .faq-arrow {
    width: 16px;
    height: 16px;
    fill: #3F4AAA;
    transition: transform 0.3s;
}

.faq-item.active h3 .faq-arrow {
    transform: rotate(180deg);
}

.faq-item p {
    color: #cccccc;
    margin-top: 10px;
    display: none;
    line-height: 1.6;
}

.faq-item.active p {
    display: block;
}

.faq-item:hover {
    background: #222;
}

.reviews {
    padding: 60px 20px;
    text-align: center;
    animation: fadeInUp 1s ease-out;
}

.reviews h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #ffffff;
    position: relative;
}

.reviews h2::after {
    content: '';
    width: 80px;
    height: 3px;
    background: #3F4AAA;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -10px;
}

.reviews-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.review-item {
    padding: 30px;
    border-radius: 10px;
    color: #cccccc;
    margin: 0 10px;
    min-height: 150px;
    opacity: 0;
    animation: slideInReview 1s forwards;
}

.review-item p {
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.review-item span {
    font-size: 0.9rem;
    color: #888888;
}

.review-item:nth-child(1) {
    animation-delay: 0.3s;
}

.review-item:nth-child(2) {
    animation-delay: 0.6s;
}

.review-item:nth-child(3) {
    animation-delay: 0.9s;
}

@keyframes slideInReview {
    to {
        opacity: 1;
        transform: translateY(0);
    }
    from {
        opacity: 0;
        transform: translateY(50px);
    }
}

.faq-item h3 {
    cursor: pointer;
}


.support-link {
    color: #cccccc;
    text-decoration: none;
    position: relative;
    transition: color 0.3s, text-shadow 0.3s;
}

.support-link::after {
    content: '';
    position: absolute;
    width: 0%;
    height: 2px;
    background: #3F4AAA;
    bottom: -3px;
    left: 0;
    transition: width 0.3s;
}

.support-link:hover {
    color: #3F4AAA;
    text-shadow: 0 0 10px #3F4AAA;
}

.support-link:hover::after {
    width: 100%;
}

.faq-item.active h3 {
    color: #3F4AAA;
}



footer {
    text-align: center;
    position: relative;
    z-index: 2;
    padding: 20px;
    width: 100%;
    bottom: 0;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

footer p {
    color: #888888;
    font-size: 0.9rem;
    margin-top: 10px;
}

footer p a {
    color: #888888;
    text-decoration: none;
    border-bottom: 1px dotted transparent;
    transition: color 0.3s, border-bottom 0.3s;
}

footer p a:hover {
    color: #3F4AAA;
    border-bottom: 1px dotted #3F4AAA;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 2px;
    background: linear-gradient(to right, transparent, #3F4AAA, transparent);
}

.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #1a1a1a, #0e0e0e);
    z-index: -1;
}

@keyframes gradientBackground {
    0% {
        background-position: 0% 50%;
        background: linear-gradient(45deg, #1a1a1a, #0e0e0e);
    }
    50% {
        background-position: 100% 50%;
        background: linear-gradient(45deg, #0e0e0e, #1a1a1a);
    }
    100% {
        background-position: 0% 50%;
        background: linear-gradient(45deg, #1a1a1a, #0e0e0e);
    }
}

.modal {
    display: none;
    position: fixed;
    z-index: 200;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    overflow: hidden;
}

.modal-content {
    background-color: #1d1d1d;
    margin: 5% auto;
    padding: 20px 30px;
    border: 1px solid #3F4AAA;
    width: 80%;
    max-width: 700px;
    border-radius: 10px;
    animation: slideIn 0.5s ease;
    position: relative;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(50px);
    } 
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.close-modal {
    color: #aaaaaa;
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close-modal:hover,
.close-modal:focus {
    color: #ffffff;
    text-decoration: none;
}

.modal-title {
    font-size: 2rem;
    color: #3F4AAA;
    margin-bottom: 20px;
    text-align: center;
}

.modal-body p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #cccccc;
    margin-bottom: 15px;
}

.modal-body a.modal-link {
    color: #83A598;
    text-decoration: none;
    border-bottom: 1px dotted transparent;
    transition: color 0.3s, border-bottom 0.3s;
}

.modal-body a.modal-link:hover {
    color: #3F4AAA;
    border-bottom: 1px dotted #3F4AAA;
}

.modal-large {
    max-width: 90%;
    width: 90%;
    max-height: 90vh;
    margin: 5vh auto;
    overflow: hidden;
}

.modal-large .modal-content {
    padding: 0;
}

.container {
    width: 100%;
    height: 100%;
    padding: 0;
    display: flex;
    flex-direction: column;
}

.title {
    font-size: 2rem;
    font-weight: 500;
    margin: 20px;
    text-align: center;
}

.title .light-blue {
    color: #3f4aaa;
}

.title .white {
    color: white;
}

.content {
    display: flex;
    height: calc(90vh - 80px);
}

.sidebar {
    background-color: #222;
    width: 30%;
    overflow-y: auto;
    padding: 10px;
}

.sidebar ul {
    list-style-type: none;
    padding: 0;
}

.sidebar li {
    padding: 10px;
    cursor: pointer;
    border-bottom: 1px solid #444;
    transition: background-color 0.3s;
}

.sidebar li:hover {
    background-color: #555;
}

.main-content {
    background-color: #313338;
    width: 70%;
    padding: 20px;
    white-space: pre-line;
    overflow-y: auto;
}

.main-content h2 {
    font-size: 1.8rem;
    font-weight: 500;
}

.main-content p {
    font-size: 1rem;
    line-height: 1.5;
}

.command-image-container {
    display: flex;
    justify-content: center;
    align-items: center;    
    margin-top: 20px;
}

.command-image {
    max-width: 100%;
    border-radius: 10px;
    opacity: 0;
    animation: fadeIn 1s forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 15px 20px;
    }

    .hero {
        padding: 100px 20px;
        min-height: 70vh;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .hero-content .btn {
        font-size: 1rem;
        padding: 15px 30px;
    }

    .nav-links {
        position: fixed;
        right: 0;
        height: 100vh;
        top: 0;
        background: rgba(14, 14, 14, 0.95);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 80px 20px 20px 20px;
        gap: 20px;
        width: 250px;
        transform: translateX(100%);
        transition: transform 0.3s ease-in-out;
    }

    .nav-links.active {
        transform: translateX(0);
    }

    .hamburger {
        display: flex;
    }

    .hamburger.toggle span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }

    .hamburger.toggle span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.toggle span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links li a {
        display: block;
        width: 100%;
        text-align: left;
        font-size: 1.2rem;
        padding: 10px 0;
        position: initial;
    }

    .nav-links li a::after {
        content: '';
        position: absolute;
        width: 0%;
        height: 2px;
        background: #3F4AAA;
        bottom: 8px;
        left: 0;
        transition: width 0.3s;
    }

    .nav-links li a:hover::after {
        width: 100%;
    }

    .logo a {
        font-size: 1.5rem;
    }

    .features-container {
        flex-direction: column;
        align-items: center;
    }

    .feature-item {
        width: 80%;
        margin-bottom: 20px;
    }

    .faq-container {
        width: 100%;
    }

    .reviews-container {
        width: 100%;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .hero-content .btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }

    .modal-large {
        width: 95%;
        max-height: 95%;
        margin: 2.5% auto;
    }

    .content {
        flex-direction: column;
        height: 80vh;
    }

    .sidebar {
        width: 100%;
        max-height: 30vh;
        overflow-y: auto;
    }

    .main-content {
        width: 100%;
        height: 50vh;
        overflow-y: auto;
    }

    .command-image {
        max-width: 100%;
        height: auto;
    }

    .command-image-container {
        margin-top: 10px;
        margin-bottom: 10px;
    }

    .modal-large .container {
        height: 100%;
        display: flex;
        flex-direction: column;
    }

    .title {
        font-size: 1.5rem;
        margin: 15px;
    }

    .sidebar li {
        padding: 8px;
        font-size: 0.9rem;
    }

    .main-content h2 {
        font-size: 1.5rem;
    }

    .main-content p {
        font-size: 0.9rem;
    }
    footer {
        padding: 30px 20px 20px 20px;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-large .close-modal {
    top: 15px;
    right: 20px;
    font-size: 28px;
}