@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');

:root {
    --bg-color: #121212;
    --main-color: rgb(0, 121, 219);
    --main-hover-color: rgb(1, 83, 151);
    --second-color: #1a1a1a;
    --third-color: #2c2c2c;
    --nav-text-color: #98999b;
    --nav-text-hover-color: #fffce4;
    --heading-color: #fffce4;
    --small-text-color: #c7c7c7;
    --very-small-text-color: #999999;
}

/* random */
h1 {
    color: var(--heading-color);
}

h2 {
    margin-left: 1.5%;
    color: var(--heading-color);
}

h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1.825rem;
    margin: 1.3rem 0;
    margin-top: 8px;
    color: var(--small-text-color);
}

p {
    color: var(--very-small-text-color);
    font-size: 0.9rem;
    margin: 1rem 0;
    line-height: 1.5;
}

a {
    text-decoration: none;
    margin: 1rem 0;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8125rem;
    letter-spacing: 1px;
}

::-webkit-scrollbar {
    width: 10px;
    background-color: #000000;
}

::-webkit-scrollbar-thumb {
    background-color: var(--main-color);
    border-radius: 15px;
    transition: 0.35s;
}

::-webkit-scrollbar-thumb:hover {
    background-color: var(--main-hover-color);

}

.reveal {
    position: relative;
    transform: translateY(150px);
    opacity: 0;
    transition: all 2s ease;
}

.reveal.active {
    transform: translateY(0px);
    opacity: 1;
}

.wrapper {
    margin: 100px auto;
    max-width: 1100px;

}

.title {
    margin-top: 30px;
    text-align: center;
    width: 100%;
    height: 65px;
    margin-bottom: 20px;

}

.th1 {
    display: flex;
    justify-content: center;
}

.thr {
    width: 180px;
    justify-content: center;
}

.thr hr {
    background-color: var(--main-color);
    height: 5px;
    border: none;
    border-top-left-radius: 15px;
    border-bottom-right-radius: 15px;
}

svg {
    display: block;
}

.curve {
    background-color: var(--bg-color);
    margin: 0;
    display: block;
    fill: var(--second-color);
}



.curved {
    background-color: var(--second-color);
    margin: 0;
    display: block;
    fill: var(--bg-color);
}

/* random end */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);

}



/* navbar */
header {
    height: 80px;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 70px;
    background-color: transparent;
}

.logo {
    cursor: pointer;
    margin-top: 25px;
}

.nav-area {
    list-style: none;
}

.nav-area li {
    display: inline-block;
    padding: 0 15px;
    text-transform: uppercase;
}

.nav-area li a {
    transition: .3s;
    color: var(--nav-text-color);
    font-size: 17px;
}

.nav-area li a:hover {
    color: var(--nav-text-hover-color);
}

.btn-area {
    cursor: pointer;
    color: var(--heading-color);
    font-size: 16px;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 10px 30px;
    border-radius: 5px;
    background-color: var(--main-color);
    transition: .35s;
}

.btn-area:hover {
    background-color: var(--main-hover-color);
}

::selection {
    color: #fff;
    background: #007bff;
}

/* navbar end */

/* home */

.home {
    margin-top: 150px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}



.bot-description {
    margin-right: 150px;
}

.home-btn {
    margin-top: 10px;
    width: auto;
    padding: 8px 50px;
    border-radius: 50px;
    border: none;
    background: var(--main-color);
    color: white;
    font-weight: bold;
    font-size: 20px;
    cursor: pointer;
    transition: .35s;
}

.home-btn:hover {
    background-color: var(--main-hover-color);
}

.home-img img {
    width: 250px;
    height: 250px;
    border-radius: 50%;

}

/* home end */
/* features */
.features {
    background-color: var(--second-color);
}



.feature h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1.3rem;
    margin: 1rem 0 0.6rem;
}

.features-grid {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
}

.feature {
    background: none;
    margin: 20px;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    -webkit-box-flex: 1;
    flex: 1;
    display: -webkit-box;
    display: flex;
    flex-wrap: wrap;
    border: 2px solid var(--third-color);
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.feature:hover {
    -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.08);
    -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.08);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.08);
}

.feature i {
    font-size: 3.45rem;
    margin: 1rem 0;
}

.feature1 i,
.feature1 h4,
.feature1 .cta {
    color: #42b7ca;
}

.feature1:hover {
    border: 2px solid #42b7ca;
}

.feature2 i,
.feature2 h4,
.feature2 .cta {
    color: #425fca;
}

.feature2:hover {
    border: 2px solid #425fca;
}

.feature3 i,
.feature3 h4,
.feature3 .cta {
    color: #9c42ca;
}

.feature3:hover {
    border: 2px solid #9c42ca;
}

.feature .cta span {
    font-size: 0.6rem;
}

.feature>* {
    flex: 1 1 100%;
}

.feature .cta {
    align-self: flex-end;
}

/* features end */

/* commands */
.wrapper nav {
    display: flex;
    justify-content: center;
}

.wrapper .categorys {
    display: flex;
    max-width: 720px;
    width: 100%;
    justify-content: space-between;
}

.categorys span {
    padding: 7px 25px;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    color: var(--main-color);
    border-radius: 50px;
    border: 2px solid var(--main-color);
    transition: all 0.3s ease;
}

.categorys span.active,
.categorys span:hover {
    color: #fff;
    background: var(--main-color);
}

.commands {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    margin-top: 30px;
}

.commands .command {
    width: 100%;
    color: #fff;
    margin-bottom: 15px;
    padding: 7px;
    height: auto;
    border-radius: 15px;
    background-color: var(--second-color);
}

.commands .command span {
    flex-direction: column;
    position: relative;
    display: flex;
    height: auto;
    margin-top: 5px;
    margin-left: 1%;
    width: 98%;
    border-radius: 15px;
    background-color: var(--third-color);
    margin-bottom: 1%;
    ;
}


.cmdinfo {
    margin-top: 1%;
    margin-left: 1%;
    justify-content: center;
}

.cmdinfo p {
    font-size: 1.25rem;
    color: var(--small-text-color);
}

.cmdali {
    margin-left: 1%;
    margin-bottom: 1%;
    justify-content: center;
    margin-top: -2.75%;
    color: var(--very-small-text-color);
}

.cmdali p {
    font-size: 1.1rem;
}

.commands .command.hide {
    display: none;
}

.commands .command.show {
    animation: animate 0.4s ease;
}

/* commands end */


/* faq */
.faq {
    background-color: var(--second-color);
}

main#questions {
    display: block;
    position: relative;
    box-sizing: border-box;
    width: 100%;
    margin: 0 auto;
    margin-top: 50px;
}

.live-search-box {
    width: 100%;
    margin: 50px 0px;
    font-size: 16px !important;
    display: block;
    padding: 1em;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    border: 1px solid var(--bg-color) !important;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}

.live-search-box:focus {
    border: 1px solid !important;
}

.topic {
    padding: 20px;
    padding-top: 0px;
    padding-bottom: 0px;
    background: var(--bg-color);
    margin: 5px 0px;
    border-radius: 10px;
}

.topic h2.question {
    padding-bottom: 20px;
}

.open {
    cursor: pointer;
    display: block;
    padding: 0px;
}

.open:hover {
    opacity: 0.7;
}

.expanded {
    background-color: var(--third-color);
    transition: all .3s ease-in-out;
}

.ptag {
    display: none;
}

.question {
    padding-top: 30px;
    padding-right: 40px;
    font-size: 18px;
    font-weight: 500;
    color: var(--small-text-color);
}

.answer {
    font-size: 16px;
    line-height: 16px;
    display: none;
    margin-bottom: 30px;
    text-align: justify;
    padding-bottom: 20px !important;
}

.faq-t {
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    display: block;
    float: right;
    position: relative;
    top: -55px;
    right: 10px;
    width: 10px;
    height: 10px;
    background: transparent;
    border-left: 2px solid var(--main-color);
    border-bottom: 2px solid var(--main-color);
    transition: all .3s ease-in-out;
}

.faq-o {
    top: -50px;
    -moz-transform: rotate(-224deg);
    -ms-transform: rotate(-224deg);
    -webkit-transform: rotate(-224deg);
    transform: rotate(-224deg);
}

.live-search-box {
    background: var(--bg-color);
    width: 100%;
    margin: 50px 0px;
    font-size: 16px !important;
    display: block;
    padding: 1em;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    border: 1px solid var(--third-color) !important;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    color: var(--very-small-text-color);
}

/* faq end */
/* footer */
footer {
    display: flex;
    width: auto;
    height: 250px;
    background-color: var(--second-color);
    align-items: center;
}



.foot {
    flex-direction: column;
    display: flex;
    align-items: center;
    justify-content: space-around;
    height: 250px;
    color: white;
}

/* footer end */
/* @ */
@keyframes animate {
    0% {
        transform: scale(0.5);
    }

    100% {
        transform: scale(1);
    }
}



@media (max-width: 1200px) {

    .wrapper nav .categorys {
        max-width: 600px;
    }

    .wrapper {
        max-width: 695px;
        margin: 30px auto;
    }

    nav .categorys span {
        padding: 7px 15px;
    }
}

@media all and (max-width:900px) {
    .features-grid {
        display: -webkit-box;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        flex-direction: column;
    }
}


@media (max-width: 710px) {
    .wrapper nav .categorys {
        max-width: 600px;
    }

    .wrapper {
        max-width: 450px;
        margin: 30px auto;
    }

    nav .categorys span {
        padding: 7px 15px;
    }

    header {
        padding: 10px 25px;
    }

    .top-nav {
        display: none;
    }

    .home {
        display: flex;
        flex-direction: column-reverse;
        justify-content: space-between;
        align-items: center;
    }

    .home-text {
        text-align: center;
    }

    .bot-description {
        margin-right: 0;
    }

    .nav-area li a {
        font-size: 12.25px;
    }
}

@media (max-width: 600px) {
    .wrapper {
        margin: 30px auto;
    }

    .wrapper nav .categorys {
        flex-wrap: wrap;
        justify-content: center;
    }

    nav .categorys span {
        margin: 5px;
    }
}

/* Animated Wave */

/* Обертка для волны с переполнением скрыто */
.curve, .curved {
    overflow: hidden;
    position: relative;
  }
  
  /* Анимация волны с использованием свойства transform: translateY */
  @keyframes waveFlow {
    0% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(10px);
    }
    100% {
      transform: translateY(0);
    }
  }
  
  /* Применяем анимацию только к пути внутри SVG */
  .curve svg path, 
  .curved svg path {
    animation: waveFlow 3s ease-in-out infinite;
    transform-origin: center;
  }
  
  /* Разная задержка для создания более реалистичного эффекта */
  .curve:nth-of-type(2) svg path {
    animation-delay: -2s;
  }
  
  .curved svg path {
    animation-delay: -3s;
  }

/* Добавьте эти стили к вашему файлу style.css */

/* Новые цветовые стили для дополнительных блоков */
.feature4 i,
.feature4 h4,
.feature4 .cta {
    color: #ca8a42; /* оранжевый оттенок для Economy */
}

.feature4:hover {
    border: 2px solid #ca8a42;
}

.feature5 i,
.feature5 h4,
.feature5 .cta {
    color: #4bca42; /* зеленый оттенок для Tickets */
}

.feature5:hover {
    border: 2px solid #4bca42;
}

.feature6 i,
.feature6 h4,
.feature6 .cta {
    color: #ca4242; /* красный оттенок для Auto Moderation */
}

.feature6:hover {
    border: 2px solid #ca4242;
}

.feature7 i,
.feature7 h4,
.feature7 .cta {
    color: #6742ca; /* фиолетовый оттенок для Statistics */
}

.feature7:hover {
    border: 2px solid #6742ca;
}

.feature8 i,
.feature8 h4,
.feature8 .cta {
    color: #ca42b0; /* розовый оттенок для Levels & XP */
}

.feature8:hover {
    border: 2px solid #ca42b0;
}

.feature9 i,
.feature9 h4,
.feature9 .cta {
    color: #42cabe; /* бирюзовый оттенок для Notifications */
}

.feature9:hover {
    border: 2px solid #42cabe;
}

/* Добавляем отступ между рядами блоков */
.features-grid + .features-grid {
    margin-top: 20px;
}

/* Адаптивная настройка для мобильных устройств */
@media all and (max-width:900px) {
    .features-grid + .features-grid {
        margin-top: 0;
    }
}

/* Добавьте эти стили к вашему файлу style.css */

/* Базовое состояние для всех блоков feature */
.feature {
    /* Уже существующие стили */
    transition: all 0.3s ease-in-out;
    position: relative;
    overflow: visible; /* Изменено с overflow: hidden, чтобы свечение не обрезалось */
    z-index: 1;
}

/* Общий стиль свечения при наведении - усилен */
.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

/* Индивидуальные стили свечения для каждого блока - значительно усилены */


/* Добавим эффект более интенсивной пульсации свечения */
@keyframes glow-pulse {
    0% {
        box-shadow: 0 0 20px 3px rgba(var(--glow-color), 0.5);
    }
    50% {
        box-shadow: 0 0 40px 8px rgba(var(--glow-color), 0.8);
    }
    100% {
        box-shadow: 0 0 20px 3px rgba(var(--glow-color), 0.5);
    }
}

/* Более интенсивный эффект свечения при активном состоянии (нажатии) */
.feature1:active {
    --glow-color: 66, 183, 202;
    animation: glow-pulse 1.5s infinite;
}

.feature2:active {
    --glow-color: 66, 95, 202;
    animation: glow-pulse 1.5s infinite;
}

.feature3:active {
    --glow-color: 156, 66, 202;
    animation: glow-pulse 1.5s infinite;
}

.feature4:active {
    --glow-color: 202, 138, 66;
    animation: glow-pulse 1.5s infinite;
}

.feature5:active {
    --glow-color: 75, 202, 66;
    animation: glow-pulse 1.5s infinite;
}

.feature6:active {
    --glow-color: 202, 66, 66;
    animation: glow-pulse 1.5s infinite;
}

.feature7:active {
    --glow-color: 103, 66, 202;
    animation: glow-pulse 1.5s infinite;
}

.feature8:active {
    --glow-color: 202, 66, 176;
    animation: glow-pulse 1.5s infinite;
}

.feature9:active {
    --glow-color: 66, 202, 190;
    animation: glow-pulse 1.5s infinite;
}

/* Добавляем плавное увеличение иконки при наведении */
.feature i {
    transition: transform 0.3s ease;
}

.feature:hover i {
    transform: scale(1.2); /* Увеличено с 1.1 до 1.2 */
}

/* Добавляем подсветку заголовка при наведении */
.feature h4 {
    transition: all 0.3s ease;
    position: relative;
}


/* Добавляем тонкую светящуюся границу при наведении */
.feature1:hover {
    border: 2px solid rgba(66, 183, 202, 1);
}

.feature2:hover {
    border: 2px solid rgba(66, 95, 202, 1);
}

.feature3:hover {
    border: 2px solid rgba(156, 66, 202, 1);
}

.feature4:hover {
    border: 2px solid rgba(202, 138, 66, 1);
}

.feature5:hover {
    border: 2px solid rgba(75, 202, 66, 1);
}

.feature6:hover {
    border: 2px solid rgba(202, 66, 66, 1);
}

.feature7:hover {
    border: 2px solid rgba(103, 66, 202, 1);
}

.feature8:hover {
    border: 2px solid rgba(202, 66, 176, 1);
}

.feature9:hover {
    border: 2px solid rgba(66, 202, 190, 1);
}

/* Добавляем эффект свечения для всего блока с использованием псевдоэлемента */
.feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 15px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature1:hover::before {
    opacity: 1;
    box-shadow: 0 0 40px 10px rgba(66, 183, 202, 0.6);
}

.feature2:hover::before {
    opacity: 1;
    box-shadow: 0 0 40px 10px rgba(66, 95, 202, 0.6);
}

.feature3:hover::before {
    opacity: 1;
    box-shadow: 0 0 40px 10px rgba(156, 66, 202, 0.6);
}

.feature4:hover::before {
    opacity: 1;
    box-shadow: 0 0 40px 10px rgba(202, 138, 66, 0.6);
}

.feature5:hover::before {
    opacity: 1;
    box-shadow: 0 0 40px 10px rgba(75, 202, 66, 0.6);
}

.feature6:hover::before {
    opacity: 1;
    box-shadow: 0 0 40px 10px rgba(202, 66, 66, 0.6);
}

.feature7:hover::before {
    opacity: 1;
    box-shadow: 0 0 40px 10px rgba(103, 66, 202, 0.6);
}

.feature8:hover::before {
    opacity: 1;
    box-shadow: 0 0 40px 10px rgba(202, 66, 176, 0.6);
}

.feature9:hover::before {
    opacity: 1;
    box-shadow: 0 0 40px 10px rgba(66, 202, 190, 0.6);
}

/* features end */

/* video inside wave */
.video-in-wave {
    margin-bottom: 60px;
}

.video-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 40px 0;
}

.video-wrapper {
    position: relative;
    width: 100%;
    max-width: 800px;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 2px solid var(--third-color);
    transition: all 0.3s ease;
}

.video-wrapper:hover {
    border: 2px solid var(--main-color);
    box-shadow: 0 15px 40px rgba(0, 121, 219, 0.2);
    transform: translateY(-5px);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 15px;
}

/* Responsive design for video */
@media (max-width: 900px) {
    .video-wrapper {
        max-width: 90%;
    }
}

@media (max-width: 600px) {
    .video-wrapper {
        max-width: 95%;
        border-radius: 10px;
    }
    
    .video-wrapper iframe {
        border-radius: 10px;
    }
    
    .video-in-wave {
        margin-bottom: 40px;
    }
}
/* video inside wave end */

/* faq */
/* @ end */