@font-face{

    font-family: 'Mono';
    src:url('/assets/fonts/JetBrainsMono-Bold.ttf');
}
@font-face{

    font-family: 'Bold';
    src:url('/assets/fonts/JetBrainsMono-ExtraBold.ttf');
}
@font-face{

    font-family: 'Light';
    src:url('/assets/fonts/JetBrainsMono-Light.ttf');
}
@font-face{

    font-family: 'Medium';
    src:url('/assets/fonts/JetBrainsMono-Medium.ttf');
}



body{
	overflow-x: hidden;
	background: #000000;
	margin: 0px;
    width: 100%;
    padding: 0;
    max-width: none;
    font-family: Mono;
    padding-left: 30px;
    padding-right: 30px;
}
.main{
    display: flex;
  	flex-direction: row;
	justify-content: flex-start;
    align-items: flex-start;
    flex: 1;
    color: white;
    background: transparent;
    gap: 40px;
}

/* Лого*/
.anarchy-main-logo{
    width: 400px;
    height: 400px;
    display: flex;
    justify-content: flex-start;

    animation: slideInLeft 0.8s ease-out forwards;
}


.anarchy-text{
    font-size: 200%;
    display: block;
    margin-top: 15px;
    font-family: Bold;

    animation: slideInLeft 0.8s ease-out forwards;
}

.anarchy-text h4{
    display: block;
    margin-top: 15px;
    color: #afafaf;
    font-family: Light;
    margin-top: -50px;

    animation: slideInDown 0.8s ease-out 0.4s both;
}

/* Скрн 1*/
.scrin-containet-first{
    display: flex;
    justify-content: flex-start;
    color: #ffffff;

    animation: slideInLeft 0.8s ease-out forwards;
}

.scrin-containet-first h1{
    margin-left: 30px;
    font-size: 250%;
}

.scrin-containet-first h2{
    margin-left: 30px;
    font-size: 150%;
    color: #afafaf;
}

.scrin-containet-first img{
    border-radius: 20px;
    border: 2px solid #ffffff;
}

/* Скрн 2*/
.scrin-containet-second{
    display: flex;
    justify-content:end;
    color: #ffffff;

    animation: slideInRight 0.8s ease-out forwards;
}

.scrin-containet-second h1{
    margin-right: 30px;
    font-size: 250%;
}

.scrin-containet-second h2{
    font-size: 150%;
    color: #afafaf;
    margin-right: 30px;
}

.scrin-containet-second img{
    border-radius: 20px;
    border: 2px solid #ffffff;

}

/* Текст платформы*/
.app-main-platform{
    display: flex;
  	flex-direction: row;
	justify-content:center;
    align-items: flex-start;
    flex: 1;
    color: white;
    background: transparent;
    gap: 40px;
    animation: opacityUp 0.8s ease-out 0.4s both;
}

/* Круги*/
.main-cicrle{
    display: flex;
    justify-content: center;

}

.drawing-circle {
  width: 400px;
  height: 400px;
  /* Переворачиваем по горизонтали, чтобы рисование шло справа налево */
  transform: scaleX(-1);
}

.drawing-circle circle {
  fill: none;
  stroke: white;
  stroke-width: 7;

  /* Длина окружности = 2 * π * r = 2 * 3.14159 * 80 ≈ 502 */
  stroke-dasharray: 505;
  stroke-dashoffset: 505; /* Полностью скрыт в начале */

  /* Анимируем смещение штрихов от 502 до 0 */
  animation:
    slideInDownCircle 0.8s ease-out 0.4s both,
    drawCircle 1s ease-out 0.3s both;
}

.drawing-circle-small{
    width: 300px;
    height: 300px;
    /* Переворачиваем по горизонтали, чтобы рисование шло справа налево */
    transform: scaleX(-1);
    margin-top: 100px;
}

.image-in-circle
{
  animation: opacityUp 0.8s ease-out 1.2s both;
}

.drawing-circle-small circle {
  fill: none;
  stroke: white;
  stroke-width: 7;

  /* Длина окружности = 2 * π * r = 2 * 3.14159 * 80 ≈ 502 */
  stroke-dasharray: 505;
  stroke-dashoffset: 505; /* Полностью скрыт в начале */

  /* Анимируем смещение штрихов от 502 до 0 */
  animation:
    slideInDownCircle 0.8s ease-out 0.8s both,
    drawCircle 1s ease-out 0.3s both;
}

/* Анимации*/
@keyframes drawCircle {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes opacityUp {
  0% {
    opacity: 0; /* Можно добавить плавное появление */
  }
  100% {
    opacity: 1;
  }
}

@keyframes slideInLeft {
  0% {
    transform: translateX(-100%); /* Начальная позиция: за левым краем */
    opacity: 0; /* Можно добавить плавное появление */
  }
  100% {
    transform: translateX(0); /* Конечная позиция: свое место */
    opacity: 1;
  }
}

@keyframes slideInRight{
  0% {
    transform: translateX(100%); /* Начальная позиция: за левым краем */
    opacity: 0; /* Можно добавить плавное появление */
  }
  100% {
    transform: translateX(0); /* Конечная позиция: свое место */
    opacity: 1;
  }
}

@keyframes slideInDown {
  0% {
    transform: translateY(-100%); /* Начальная позиция: за левым краем */
    opacity: 0; /* Можно добавить плавное появление */
  }
  100% {
    transform: translateY(0); /* Конечная позиция: свое место */
    opacity: 1;
  }
}

@keyframes slideInDownCircle {
  0% {
    transform: translateY(-40%); /* Начальная позиция: за левым краем */
    opacity: 0; /* Можно добавить плавное появление */
  }
  100% {
    transform: translateY(0); /* Конечная позиция: свое место */
    opacity: 1;
  }
}

