/* Общие стили */

@font-face {
  font-family: "Montserrat";
  src: url("fonts/Montserrat.woff2") format("woff2"),
       url("fonts/Montserrat.woff") format("woff"),
       url("fonts/Montserrat.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("fonts/MontserratBold.woff2") format("woff2"),
       url("fonts/MontserratBold.woff") format("woff"),
       url("fonts/MontserratBold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("fonts/MontserratBlack.woff2") format("woff2"),
       url("fonts/MontserratBlack.woff") format("woff"),
       url("fonts/MontserratBlack.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
    font-family: 'Montserrat';
    src: url('fonts/Montserrat-Italic.eot');
    src:
        url('fonts/Montserrat-Italic.eot?#iefix') format('embedded-opentype'),
        url('fonts/Montserrat-Italic.woff2') format('woff2'),
        url('fonts/Montserrat-Italic.woff') format('woff'),
        url('fonts/Montserrat-Italic.ttf') format('truetype');
    font-weight: normal;
    font-style: italic;
}



* { 
    box-sizing: border-box;
    
}

body {
    margin: 0;
    font-family: "Montserrat", sans-serif;
/*background:
  radial-gradient(circle at top center, rgba(255, 255, 255, 0.5), transparent 20%) fixed,
  radial-gradient(circle at top center, rgba(255, 255, 255, 0.5), transparent 30%) fixed,
  linear-gradient(rgba(0, 0, 0, 1), rgba(0, 0, 0, 0.6)) fixed, 
  url('bg.jpg') no-repeat center center fixed;
    background-size: 100% auto ;
    background-color: #09090b;*/
    background-color: #0c0d11;
    color: #222;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    padding-bottom: 200px;

}

/* Контейнер для контента */
.container {
    width: 100%;
    max-width: 1670px;
    margin: 0 auto;
    padding: 0 20px; /* немного отступов на мобилках */
    z-index: 48;
    position: relative;

}

/* Хедер */
header {
    width: 100%;
    height: 119px;
    padding-top: 30px;
background: linear-gradient(90deg, #0c0d11 0%, #292C36AD 19%, #0c0d11 100%);
    
}
.oracle{
/* Ellipse 1 */

position: absolute;
width: 1112px;
height: 1112px;
margin-left: -432px;
top: -667px;
z-index: 40;
background: radial-gradient( 50% 50% at 50% 50%, rgba(254, 0, 2, 0.29) 0%, rgba(254, 0, 2, 0.2) 20%, rgba(254, 0, 2, 0) 40%, rgba(254, 0, 2, 0) 60%, rgba(152, 0, 1, 0) 70% );




}


table.ttbbll,.ttbbll th{background: #fff;}

.header-container {
    display: flex;
    justify-content: space-between;
    padding: 0 30px; /* Горизонтальные отступы слева и справа */
    align-items: center;
    flex-wrap: nowrap;
    padding: 0 15px;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px; /* немного отступов на мобилках */
z-index: 48;
  position: relative;
}

.white{
color: #fff;
  width: 100%;
  text-align: left;
  font-style: italic;
  margin: 50px 0 40px;
  z-index: 45;
  position: relative;
}

.logo{
cursor: pointer;
  background: url('/css/favicon.png') no-repeat center center #fff;
    background-size: auto;
  background-size: 90% 90%;
  width: 56px;
  height: 56px;
  z-index: 43;
  border-radius: 50%;
}
/* Логотип слева */
.site-name {
  font-size: 1.8rem;
  font-weight: 800;
  color: #333; /* светло-чёрный */
  text-decoration: none;
  transition: color 0.6s ease, text-shadow 0.3s ease;
  user-select: none;
}

.site-name:hover {
  color: #0077cc;
  text-shadow: 0 1px 3px rgba(0, 119, 204, 0.3);
}

/* Основное меню по центру */
.header-center{
  margin-right: auto; 
  margin-left: 100px;  
}
.main-nav {

    display: flex;
    justify-content: center;
    gap: 50px;
    user-select: none;

}

.auth-nav p{cursor: pointer;color: #fff; background: url('line-dec.png') no-repeat bottom left;background-size: 100% auto;text-align: center;padding-bottom: 12px;transform: translateY(6px);}

.main-nav a {
    color: #fff;
    font-weight: 400;
    text-decoration: none;
    padding: 5px 8px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    font-family: "Montserrat", sans-serif;
    letter-spacing: 1px;
    z-index: 48;

}

.main-nav a:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.load-game{
    display: block;
    color: #000;
    
    text-decoration: none;
    padding: 5px 8px;
    border-radius: 4px;
    transition: background-color 0.3s ease,color 0.3s ease;
}
.load-game:hover {
    background-color: #cce6ff;
    color: #000;
}

/* Меню авторизации справа */
.auth-nav {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 15px;
    user-select: none;

}
.auth-nav .btn-logout{
  width: 92px;
  height: 27px;
  background: #F70E03;
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  user-select: none;
}


.auth-nav a,
.auth-nav button,
.auth-nav span {
    color: #fff;
    font-weight: 400;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    padding: 5px 10px;
    letter-spacing: 1px;
    text-decoration: none;
    transition: background-color 0.3s ease;
    padding-bottom:6px;
    user-select: none;
}

.auth-nav a:hover,
.auth-nav button:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.logout-form {
    margin: 0;
    padding: 0;
}


/* Основной контент */
main {
    padding: 40px 0;
    text-align: center;
}

.main-banner {
  width: 1920px;
  height: 970px;
  background:
    linear-gradient(to right, #0c0d11 0%, rgba(12, 13, 17, 0) 20%), /* слева затухание */
    linear-gradient(to left, #0c0d11 0%, rgba(12, 13, 17, 0) 20%),  /* справа затухание */
  linear-gradient(to right, #0c0d11 0%, rgba(12, 13, 17, 0) 10%), /* слева затухание */
    linear-gradient(to left, #0c0d11 0%, rgba(12, 13, 17, 0) 10%),  /* справа затухание */
    url('banner.webp') center/cover no-repeat;     
  margin: 0 auto;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center; /* центрируем по вертикали */
  align-items: center;     /* центрируем по горизонтали */
  text-align: center;      /* выравнивание текста */
  color: #fff;             /* базовый цвет текста */
  font-family: "Montserrat", sans-serif;
  z-index: 50;

}
/* Левый градиент */
.main-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100px;
  width: 100px; /* ширина затухания */
  height: 100%;
  background: linear-gradient(to left, #0c0d11 0%, rgba(12, 13, 17, 0) 100%);
  pointer-events: none;
  z-index: 30;
}

/* Правый градиент */
.main-banner::after {
  content: "";
  position: absolute;
  top: 0;
  right: -100px;
  width: 100px; /* ширина затухания */
  height: 100%;
  background: linear-gradient(to right, #0c0d11 0%, rgba(12, 13, 17, 0) 100%);
  pointer-events: none;
  z-index: 30;
}

.main-banner h1 {
  font-size: 136px;
  font-weight: 700;
  margin: 0 0 40px 0;
  line-height: 1.2;
  font-family: "Montserrat", sans-serif;
  user-select: none;
}

.main-banner h2 {
  font-size: 28px;
  font-weight: 400;
  margin: 0 0 40px 0;
  opacity: 0.85;
  font-family: 'Montserrat';
  font-style: italic;
  font-weight: 500;
  font-size: 40px;
  user-select: none;
  color: #FFFFFF;


}

.annonce {
  position: absolute;
  bottom: 0px;
  left: 50%;
  width: 2656px;
  line-height: 127px;
  transform: translateX(-50%);
  font-size: 22px;
  font-weight: 700;
  /* Rectangle 6 */
  background: linear-gradient(90deg, rgba(247, 33, 0, 0) 2.84%, rgba(122, 1, 1, 0.9) 31.99%, rgba(247, 33, 0, 0.79) 80.57%, rgba(145, 19, 0, 0) 95.14%);
  font-family: 'Montserrat';
  font-style: italic;
  font-weight: 600;
  font-size: 40px;
  color: #FFFFFF;
  white-space: nowrap;
  z-index: 40;

}

.param-line{
  display: flex;
  width: 100%;
  justify-content: center;
  padding-top: 50px;
  font-family: "Montserrat", sans-serif;
  font-size: 30px;
  color: #FFFFFF;
  align-items: center;
  letter-spacing: 1px;
  margin: 50px 0 70px;
  z-index: 20;
  position: relative;
}
.param-line b{
  font-size: 50px;}

.param-d{
width: 119px;
height: 9px;
background: linear-gradient(50deg, rgba(247, 33, 0, 0) 0%, #7A010170 40.17%, #F721008C 59.5%, rgba(145, 19, 0, 0) 95.14%);
transform: rotate(-51.6deg);
margin: 0 50px;

}

.main-src{
  width: 100%;
  height: 670px;
  background: url('main-src.png') no-repeat left top;
  padding: 200px 0 0 600px;
  color: #fff;
  text-align: left;
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  letter-spacing: 1px;
  z-index: 20;
  position: relative;
  margin: 100px 0 130px;

}

.main-flash-1 {
  position: absolute;
  width: 254px;
  height: 110px;
  left: 0px;
  top: 0px;
  background: #F77D03;

  /* убираем скругления */
  border-radius: 0;

  /* неровная форма */
  clip-path: polygon(
    0% 0%,    /* верхний левый срез */
    100% 0%,  /* верхний правый чуть ниже */
    95% 100%, /* нижний правый срез */
    0% 90%    /* нижний левый чуть выше */
  );

  transform: rotate(-8deg);
  padding: 18px 0 0 30px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 2px;
  color: #FFFFFF;
  z-index: 21;
  text-transform: uppercase;
}


.main-flash-2 {
  position: absolute;
  width: 254px;
  height: 110px;
  left: 450px;
  bottom: 90px;
  background: #F70E03;

  /* убираем скругления */
  border-radius: 0;

  /* форма с разными углами */
  clip-path: polygon(
    3% 0%,     /* верхний левый чуть срезан */
    98% 6%,    /* верхний правый сдвинут вниз */
    92% 100%,  /* нижний правый срез */
    0% 94%     /* нижний левый выше */
  );

  transform: rotate(3deg);
  padding: 18px 0 0 20px;
  font-family: 'Montserrat', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 2px;
  color: #FFFFFF;
  z-index: 21;
  text-transform: uppercase;
}


.sparks{
  background: url('sparks.png') no-repeat center;
  background-size: 100% 100%;
width: 264px;
  height: 150px;
  position: absolute;
  transform: rotate(-55deg);
  top: 60px;
  left: 10px;

}

.sparks-1{
  background: url('sparks.png') no-repeat center;
  background-size: 100% 100%;
  width: 602px;
  height: 446px;
  position: absolute;
  top: 494px;
  left: -296px;
}
.sparks-2{
  background: url('sparks.png') no-repeat center;
  background-size: 100% 100%;
  width: 602px;
  height: 446px;
  position: absolute;
top: 26px;
  right: -547px;
}

.sparks-3{
  background: url('sparks.png') no-repeat center;
  background-size: 100% 100%;
width: 353px;
  height: 275px;
  position: absolute;
  top: 409px;
  right: 218px;
  z-index: 15;
}

.oracle-fix{
  position: absolute;
  width: 100%;
  height: 2205px;
  top: 246px;
  left: 0;
  background: linear-gradient(rgba(12, 13, 17, 0.5), rgba(12, 13, 17, 0.5));
  z-index: 12;
}
.oracle-fix2{
  position: absolute;
  width: 100%;
min-height: 100%; /* Элемент будет покрывать всю высоту контента */
  height: auto;
  top: 0px;
  left: 0;
  background: linear-gradient(rgba(12, 13, 17, 0.5), rgba(12, 13, 17, 0.5));
  z-index: 12;
}
.oracle-1{
  position: absolute;
  width: 1702px;
  height: 1702px;
left: -746px;
  top: -540px;
  background:url('oracle-1.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 10;
}

.oracle-2{
  position: absolute;
  width: 1344px;
  height: 1344px;
left: -91px;
  top: -223px;
  opacity: 1;
  background:url('oracle-2.png'); /* нижний фон */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 11;
}

.oracle-3{
position: absolute;
width: 1495px;
height: 924px;
left: -207px;
margin-top: 0px;
z-index: 15;
background:url('oracle-3.png');
}
.oracle-4{
position: absolute;
width: 1246px;
height: 1246px;
right: -619px;
  bottom: -488px;
z-index: 25;
background:url('oracle-4.png');
opacity: 0.3;
}

.oracle-5{
  position: absolute;
  width: 1344px;
  height: 1100px;
left: 72px;
  bottom: 0px;
  opacity: 1;
  background:url('oracle-5.png'); /* нижний фон */
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 11;
}

/* Заголовок */
h1 {
    font-weight: 700;
    margin-bottom: 25px;
}


/* Ошибка */
.error {
    background-color: #ffe6e6;
    border: 1px solid #cc4444;
    color: #cc4444;
    padding: 10px;
    margin-bottom: 20px;
    font-weight: 600;
}
.login-form {
  max-width: 400px;
  margin: 30px auto;
  padding: 25px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  z-index: 45;
  position: relative;
}
.login-form a{text-decoration: none;
  color: #000;
  margin-top: 30px;
  display: block;}
  .login-form a:hover{text-decoration: underline;}

.login-form input[type="text"],
.login-form input[type="email"],
.login-form input[type="password"] {
  width: 100%;
  padding: 12px 15px;
  margin: 12px 0;
  border: 1px solid #bbb;
  border-radius: 5px;
  font-size: 16px;
  transition: border-color 0.3s;
}

.login-form input[type="text"]:focus,
.login-form input[type="password"]:focus {
  border-color: #0a74da; /* синий акцент */
  outline: none;
}

.login-form button {
  width: 100%;
  padding: 12px;
  background-color: #0a74da;
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.login-form button:hover {
  background-color: #065ea8;
}

button.cancel_2fa {
  width: 100%;
  padding: 12px;
  background-color: #d0d0d0;
  margin-top: 5px;
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
}
button.cancel_2fa:hover{
 background-color: #a0a0a0;
}

@media (max-width: 480px) {
  .login-form {
    flex-direction: column;
    max-width: 320px;
  }
  .login-form label {
    width: 100%;
    justify-content: flex-start;
  }
  .login-form input[type="text"],
  .login-form input[type="password"] {
    width: 100%;
  }
  .login-form button {
    width: 100%;
  }
}



/* Сообщение приветствия */
.welcome-message {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* Ссылка на регистрацию */
.register-link {
    margin-top: 20px;
    font-size: 1rem;
}

.register-link a {
    color: #fff;
    font-family: "Montserrat", sans-serif;
    letter-spacing: 1px;
    font-weight: 400;
    text-decoration: none;
    transition: color 0.3s ease;
}

.register-link a:hover {
    color: red;
}

.checkbox-agree {
  margin: 10px 0;
  font-size: 14px;
  color: #ccc;
}
.checkbox-agree input {
  margin-right: 5px;
}


/* Футер */
footer {
    
    position: absolute;
    padding-top: 90px;
    height: 200px;
    text-align: center;
    color: #fff;
    background:
  linear-gradient(rgba(12, 13, 17, 0.7), rgba(12, 13, 17, 0.7)), 
  url('oracle-1.png') no-repeat;
background-size: cover, auto;
background-position: center, 450px center;
    user-select: none;
    width: 100%;
  bottom: 0px;
  z-index: 20;
}
footer a{
  color: #fff;
  font-size: 16px;
  text-decoration: none;
  letter-spacing: 1px;
}

.register-form {
  max-width: 400px;
  margin: 30px auto;
  padding: 25px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    z-index: 45;
  position: relative;
}

.register-form input[type="email"],
.register-form input[type="password"] {
  width: 100%;
  padding: 12px 15px;
  margin: 12px 0;
  border: 1px solid #bbb;
  border-radius: 5px;
  font-size: 16px;
  transition: border-color 0.3s;
}

.register-form input[type="email"]:focus,
.register-form input[type="password"]:focus {
  border-color: #0a74da; /* синий акцент */
  outline: none;
}

.register-form button {
  width: 100%;
  padding: 12px;
  background-color: #0a74da;
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.register-form button:hover {
  background-color: #065ea8;
}

.error {
  max-width: 400px;
  margin: 15px auto 0;
  padding: 12px;
  background-color: #ffe6e6;
  border: 1px solid #ff4c4c;
  color: #a70000;

  font-weight: 600;
}

.success {
  max-width: 400px;
  margin: 15px auto 0;
  padding: 12px;
  background-color: #e6f2ff;
  border: 1px solid #0a74da;
  color: #064a8b;
  border-radius: 5px;
  font-weight: 600;
  text-align: center;
}

.captcha-block {
  max-width: 400px;
  margin: 15px 0 25px;
}

.captcha-block img {
  display: block;
  margin:0 auto 10px;
  height: 50px;
  border: 1px solid #bbb;
  border-radius: 5px;
  user-select: none;
  transition: border-color 0.3s;
  cursor: pointer;
}

.captcha-block img:hover {
  border-color: #0a74da;
}

.captcha-block input[type="text"] {
  width: 100%;
  padding: 12px 15px;
  font-size: 16px;
  border: 1px solid #bbb;
  border-radius: 5px;
  transition: border-color 0.3s;
}

.captcha-block input[type="text"]:focus {
  border-color: #0a74da;
  outline: none;
}




/* === Стили для карты развития сервера === */



/* Основной контейнер */
.roadmap {
  background: url('roadmap3440.png') no-repeat top left;
  background-size: 100% auto;
  width: 1650px;
  height: 877px;
  margin: 90px 0;

}

.road-block{
  width: 100%;
  background: #060607;
  z-index: 21;
  padding: 80px 0;
}


/* Заголовок */
.roadmap-title {


font-style: italic;
font-weight: 600;
font-size: 40px;
line-height: 49px;
/* identical to box height */

color: #FFFFFF;



}


@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}



/* Каждый месяц — карточка */
.month {
  position: relative;
  width: 45%;
  background: #ffffff;
  border-radius: 10px;
  padding: 18px 24px;
  margin-bottom: 40px;
  box-shadow: 0 8px 18px rgb(42 100 217 / 0.3);

  
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  z-index: 1;
}

/* Слева идут влево, справа — вправо */
.month:nth-child(odd) {
  left: 0;
  margin-left: 0;
  transform-origin: right center;
  animation: slideInLeft 0.7s ease forwards;
}

.month:nth-child(even) {
  left: 55%;
  margin-left: 0;
  transform-origin: left center;
  animation: slideInRight 0.7s ease forwards;
}

/* Плавное появление */
@keyframes slideInLeft {
  0% {opacity: 0; transform: translateX(-50px);}
  100% {opacity: 1; transform: translateX(0);}
}
@keyframes slideInRight {
  0% {opacity: 0; transform: translateX(50px);}
  100% {opacity: 1; transform: translateX(0);}
}

/* Заголовок месяца */
.month > h3 {
  margin-top: 0;
  font-weight: 700;
  font-size: 1.5rem;
  color: #000;
  user-select: none;
}
.month h3::before {
  content: "📅";
  position: relative;
  right: 10px;
  top: -1px;
  font-size: 1.2rem;
}

/* Список пунктов */
.month > ul {
  margin: 12px 0 0 20px;
  padding-left: 0;
  list-style-type: none;
  color: #2f3e6e;
  font-size: 1rem;
  line-height: 1.4;
}

/* При наведении слегка увеличиваем и подсвечиваем */
.month:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 18px rgb(42 100 217 / 0.5);
}

/* Скрытый блок с деталями */
.month .details {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 0;
  color: #374785;
  font-size: 1rem;
  margin-top: 12px;
  list-style-type: circle;
  padding-left: 20px;
}

.month.expanded .details {
  max-height: 1000px; /* чтобы раскрывать */
  padding-top: 10px;
}

/* Линии-соединители от центра к карточкам */

.month:nth-child(odd)::before,
.month:nth-child(even)::before {
  content: "";
  position: absolute;
  top: 60px;
  width: 55px;
  height: 4px;
  background: linear-gradient(90deg, #2a64d9, #1a2c89);
  border-radius: 2px;
  z-index: -1;
}

.month:nth-child(odd)::before {
  right: -55px;
}

.month:nth-child(even)::before {
  left: -55px;
}

/* === Личный кабинет === */

.lk-tabs {
  display: flex;
  justify-content: center; /* центрирует вкладки по горизонтали */
  margin: 20px 0;
}

.lk-tabs a {
  text-decoration: none;
  padding: 10px 20px;
  margin-right: 10px;
  background-color: #f0f0f0;
  color: #222;

  transition: background-color 0.3s;
  z-index: 48;
}
.lk-tabs a.active,
.lk-tabs a:hover {
  background-color: #F70E03;
  color: #fff;
}

/* Контент вкладок */
.lk-content {
  background: rgba(0, 0, 0, 0.8);
  padding: 50px 30px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  min-height: 700px;
  z-index: 48;
  position: relative;
  color: #eee;
}

/* Заголовки внутри */
.lk-content h2 {
  margin-top: 0;
  font-size: 1.8rem;
  color: #fff;
text-align: left;
  font-style: italic;
}

/* Формы */
.lk-content form {
  
}
.lk-content label {
  display: block;
  margin-bottom: 15px;
  font-weight: 500;
  color: #fff;
  text-align: left;
}
.lk-content input[type="email"],
.lk-content input[type="text"],
.lk-content input[type="number"],
.lk-content input[type="password"],
.lk-content textarea,
.lk-content input[type="file"] {
  width: 320px;
  padding: 10px;
  margin: 5px auto 0;
  border: 2px solid #ccc;
  border-radius: 6px;
  transition: border-color 0.3s;
}
.lk-content input[type="file"]{
  text-align: left;
  width: 100%;
  border: none;
}

.lk-content input:focus,
.lk-content textarea:focus {
  border-color: #0077cc;
  outline: none;
}
.lk-content textarea {
  height: 120px;
  resize: vertical;
}


.lk-content button {
  display: inline-block;
  background: none;
  color: white;
  padding: 10px 30px;
  border: 1px solid #fff;
  
  text-decoration: none;
  transition: background 0.2s ease;
  z-index: 48;
  position: relative;
  cursor: pointer;
}
.lk-content button:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* Сообщения об успехе/ошибке */
.success, .error {
  margin-bottom: 20px;
  padding: 12px;

  font-weight: 600;
}
.success {
  background-color: #e6f2ff;
  color: #064a8b;
  border: 1px solid #0a74da;
}
.error {
  background-color: #fff;
  color: #a70000;
  border: 1px solid #cc4444;
}

.coming-soon{
  margin-top: 200px;
  font-style: italic;
  font-size: 25px;
}

.support-chat {
  max-height: 400px;
  overflow-y: auto;
  padding: 10px;
  background: #f7f7f7;
  border: 1px solid #ccc;
  border-radius: 5px;
}
.message {
  margin-bottom: 15px;
  max-width: 70%;
  padding: 8px 12px;
  border-radius: 12px;
  clear: both;
}
.message.user {
  background: #e0f0ff;
  float: left;
  text-align: left;
}
.message.admin {
  background: #ffe0e0;
  float: right;
  text-align: right;
}
.message .image img {
  max-width: 150px;
  margin-top: 5px;
  border-radius: 8px;
}
.message .time {
  font-size: 0.75em;
  color: #666;
  margin-top: 4px;
}

#accountForm label {
  display: block;
  margin-bottom: 15px;
  font-weight: 600;
}

#accountForm input {
  padding: 6px 10px;
  font-size: 1em;
  width: 320px;
  box-sizing: border-box;
  border: 1px solid #ccc;
  border-radius: 4px;
}

#accountForm button[type="submit"] {
  background: #4caf50;
  color: white;
  border: none;
  padding: 10px 18px;
  font-size: 1em;
  border-radius: 5px;
  cursor: pointer;
}

#accountForm button[type="submit"]:hover {
  background: #45a049;
}

#accountForm #togglePassword {
  background: #ddd;
  border: none;
  cursor: pointer;
  padding: 6px 10px;
  border-radius: 4px;
  margin-left: 8px;
}

#accountForm #passwordStrength {
  font-size: 0.9em;
  margin-top: 5px;
}


.rules-container {
margin: 80px auto 20px;
text-align: left;
padding: 20px 50px;
  background: #f9fbfe;
  border-radius: 2px;
  box-shadow: 0 0 15px rgb(0 38 77 / 0.1);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #0a1f44;
  position: relative;
  max-width: 1200px;
  z-index: 44;
}

.date {
      color: #777;
      font-size: 14px;
      margin-bottom: 20px;
}

.rules-container h1 {
  text-align: center;
  margin-bottom: 50px;
  color: #444;
}

.rules-container h2 {
  margin-top: 25px;
  color: #555;
}

.rules-container p,
.rules-container ul {
    list-style:none;
  line-height: 1.6;
  margin-bottom: 15px;
}

.rules-container ul {
  margin-left: 20px;
}

.copy-container {
  position: relative;
  display: inline-block;
}

.copyable {
  cursor: pointer;
  user-select: none;
}

.copy-toast {
  position: absolute;
  top: -30px;
  left: 0;
  background: #4CAF50;
  color: white;
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 12px;
  opacity: 0;
  transform: translateY(0);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
  white-space: nowrap;
}

.copy-toast.show {
  opacity: 1;
  transform: translateY(-10px);
}

.news-container{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.news-block {
  width: 48%;
  display: flex;
  background: rgba(0, 0, 0, 0.4);
  margin: 20px 0;
  color: #fff;
  transition: transform 0.2s ease;
  z-index: 42;
  position: relative;
}

.news-block-inner {
  width: 100%;
  margin: 40px 0 80px;
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
  transition: transform 0.2s ease;
  z-index: 41;
  position: relative;
  padding: 30px;

}

.news-block-inner h3{
  font-size: 30px;
}
.news-desc h3{font-size: 19px;}
.news-desc a,a:active,a:visited{text-decoration: underline;}
.newslinks{color: #527fc6;}
.full-image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 10px auto; /* выравнивание по центру */
  border-radius: 6px; /* аккуратные уголки, по желанию */
}


.news-block-inner p{
  font-size: 18px;
}

.news-block:hover {
  transform: scale(1.01);
  
}

.news-block h3 {
  margin-top: 0;
  font-size: 1.5em;
  color: #fff;
}

.news-block p {
  line-height: 1.5;
}

.news-block small {
  color: #aaa;
}

.news-desc{
  text-align: left;
  padding-left: 50px;
  letter-spacing: 1px;
}

.bb-item-img {
  width: 32px;
  height: 32px;
  vertical-align: middle;
  margin: 0 4px;
}


.read-more {
  display: inline-block;
  margin-top: 10px;
  background: #5e9cff;
  color: white;
  padding: 6px 12px;
  border-radius: 5px;
  text-decoration: none;
  transition: background 0.2s ease;
}

.read-more:hover {
  background: #84b8ff;
}

.news-desc h1{font-size:2.8em;}.news-desc h2{font-size:2.5em;}.news-desc h3{font-size:2.2em;}.news-desc h4{font-size:1.9em;}.news-desc h5{font-size:1.6em;}.news-desc h6{font-size:1.4em;}


 a.link-agree{
  color: #4fa3f7;
  text-decoration: underline;
}


.btn{
  display: inline-block;
  background: none;
  color: white;
  padding: 8px 16px;
  border: 1px solid #b00000;
  
  text-decoration: none;
  transition: background 0.2s ease;
  z-index: 48;
  
}

.btn:hover {
  background: rgba(255, 255, 255, 0.2);
}


.news-cont{
  width: 100%;
  text-align: left;
  padding: 20px 40px 60px;
}

.news-block img.preview {
width: 265px;
  height: 265px;
  object-fit: cover;
  
  
}
.news-block img.full-image {
  max-width: 100%;
  margin: 15px 0;
  border-radius: 6px;
}
@media (max-width: 768px) {
  .news-cont {
    padding: 1px 20px 50px;
  }
}

.reactions {
  margin: 20px 0;
  cursor: default;
}
.react-btn {
  background: #2c2c2c;
  color: #fff;
  border: 1px solid #555;
  border-radius: 6px;
  padding: 5px 10px;
  margin-right: 5px;
  cursor: pointer;
  font-size: 16px;
}
.react-btn:hover {
  background: #444;
}
.reaction-static {
    margin-right: 6px;
    display: inline-block;
}

.reaction-static {
    font-size: 1em;
    font-weight: bold;
    padding: 0.3em 0.5em;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
    display: inline-block;
}

.small-note {
    font-size: 0.85em;
    color: #bbb;
    margin-top: 4px;
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    z-index: 999;
}

.confirm-box {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #ffffff;
    padding: 30px 20px;
    border-radius: 8px;
    box-shadow: 0 0 25px rgba(0,0,0,0.4);
    z-index: 1000;
    max-width: 400px;
    width: 90%;
    text-align: center;
}

.confirm-box h2 {
    margin-top: 0;
    font-size: 20px;
    color: #000;
}

.confirm-box button {
    margin: 10px 8px;
    padding: 8px 16px;
    border: none;
    border-radius: 5px;
    font-size: 15px;
    cursor: pointer;
}

.confirm-box button[value="confirm"] {
    background-color: #4CAF50;
    color: white;
}

.confirm-box button[value="cancel"] {
    background-color: #f44336;
    color: white;
}

.confirm-box button:hover {
    opacity: 0.9;
}

.politic{
    display: block;
    position: fixed;
    bottom: 15px;
    right: 15px;
    color: #fff;

}

.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(12, 13, 17, 0.99);
  z-index: 100;
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.mobile-menu.active {
  display: flex;
}

.mobile-menu .close-btn {
  position: absolute;
  top: 20px;
  right: 40px;
  background: none;
  border: none;
  color: #fff;
  font-size: 40px;
  cursor: pointer;
}

.mobile-content nav,
.mobile-content .auth-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.mobile-content a {
  color: #fff;
  font-size: 20px;
  margin: 10px 0;
  text-decoration: none;
}


.burger {
  width: 35px;
  height: 3px; 
  background: #fff;
  position: relative;
  cursor: pointer;
  transform: translateY(-5px);
}

.burger::before,
.burger::after{
  background: #fff; /* цвет линий */
  border-radius: 2px;
  display: none;
  height: 3px;      /* толщина линии */
  width: 35px;
  position: absolute;
  left: 0;
  transition: 0.3s;
}

.burger {
  top: 11px; /* средняя полоса */
  position: relative;
  z-index: 50;
}

.burger::before {
  content: "";
  top: -10px; /* верхняя полоса */
}

.burger::after {
  content: "";
  top: 10px;  /* нижняя полоса */
}
 .burger::before,.burger::after,.burger {display: none;}

.burger-click{position: absolute;width: 60px; height: 50px; top: -24px;left: -12px;cursor: pointer;z-index: 50;}


@media (max-width: 3015px) {.oracle-4{right: -335px;}.sparks-2{right: -212px;}}

@media (max-width: 2660px) {.annonce{width: 1920px;}}

@media (max-width: 2305px) {
  
  .main-banner::after{display: none;}
  .main-banner::before{display: none;}
  .main-banner{background: url('banner.webp') center/cover no-repeat;}
  .sparks-1{display: none;}.sparks-2{display: none;}
}

@media (max-width: 1920px) {
  .oracle{margin-left: -530px;top: -697px;}
  .oracle-4 {right: -193px;}
  .container{max-width: 1400px;}
  .roadmap{width: 1220px;height: 873px;background: url('roadmap1920.png') no-repeat top left;background-size: 100% auto;}
}

@media (max-width: 1700px) {
  .container{max-width: 1200px;}
  .container{max-width: 90%;}
  .roadmap{width: 1120px;height: 1213px;background: url('roadmap1280.png') no-repeat top left;background-size: 100% auto;} 
}


@media (max-width: 1680px) {.main-banner{width: 1680px;height: 848px;}.annonce{width: 100%;}.main-banner h1{font-size: 120px;}.main-banner h2{font-size: 40px;}.annonce{line-height: 100px;font-size: 26px;}.param-line b{font-size: 45px;}.param-line{font-size: 25px;}}
@media (max-width: 1600px) {.main-banner{width: 1600px;height: 808px;}.oracle-4{display: none;}.oracle-1{width: 1000px;height: 1000px;right: -116px;bottom: -399px;left: auto;top: auto;}.oracle-5{width: 800px;height: 800px;left: -159px;bottom: 0px;}}
@media (max-width: 1440px) {.main-banner{width: 1440px;height: 727px;}.oracle-2 {left: -373px;}.news-block img.preview{width: 150px;height: 150px;}}
@media (max-width: 1366px) {.main-banner{width: 1366px;height: 690px;}.oracle-1{right: -21px;}.annonce{background: linear-gradient(90deg, rgba(247, 33, 0, 0.24) 2.84%, rgba(122, 1, 1, 0.9) 31.99%, rgba(247, 33, 0, 0.79) 80.57%, rgba(145, 19, 0, 0.5) 95.14%);}.main-banner h1{font-size: 80px;}.main-banner h2{font-size: 20px;}.annonce{line-height: 74px;font-size: 20px;}}
@media (max-width: 1280px) {.main-banner{width: 1280px;height: 646px;}}
@media (max-width: 1152px) {.main-banner{width: 1152px;height: 582px;}.oracle-1{right: 11px;}.oracle{margin-left: -385px;}.header-container{padding: 0 40px;}.param-line b{font-size: 40px;}.param-line{font-size: 20px;}.container{padding: 0 50px;}.roadmap{width: 1050px;height: 1150px;}.road-block{padding: 80px 0 20px;}}
@media (max-width: 960px) {
 .main-banner {    width: 100%;    height: 540px;  }
 .container{overflow: hidden;}
 .param-line b{font-size: 30px;}.param-line{font-size: 16px;}
 .param-d {width: 95px;}
 .roadmap-title {font-size: 20px;}
  .roadmap {width: 100%;height: 1000px;margin: 90px 0 20px;}
  footer{padding-top: 80px;height: 180px;}
  body{padding-bottom: 180px;}  
.main-nav,.auth-nav{display: none;}
  .burger::before,.burger::after,.burger {display: block;}
.header-center{margin-left: 0px;}
.auth-nav p{font-size: 20px;width: 100%;transform: translateY(-10px);background: none;}
.auth-nav .btn-logout{width: auto;height: auto;font-size: 35px;padding: 5px 15px;}
.main-nav{background: url('line-dec.png') no-repeat bottom left;background-size: 100% 5px;padding-bottom: 50px;margin-bottom: 40px;gap: 20px;}
header{height: 85px;padding-top: 15px;}

.main-src{background-size: 60% auto;padding: 150px 0 0 430px;font-size: 17px;margin: 100px 0 0px;height: 600px;}
.main-flash-2{font-size: 16px;padding: 8px 0 0 10px;width: 230px;height: 90px;left: 330px;bottom: 160px;}
.main-flash-1{font-size: 16px;padding: 8px 0 0 18px;width: 230px;height: 90px;}
.news-block{width: 100%;}
}

@media (max-width: 960px) {.main-banner{background: url('mob-banner.webp') center bottom/cover no-repeat;height: 1000px;}.oracle{margin-left: -540px;}.main-banner h1 {margin: -500px 0 40px 0;}.main-src{background-size: 100% auto;padding: 750px 150px 100px 150px;height: auto;}.main-flash-2{left: 487px;bottom: 362px;}.roadmap{background: url('roadmap640.png') no-repeat top left;background-size: 100% auto;height: 1285px;width: 610px;margin: 50px auto 0;}}

@media (max-width: 840px) {.main-flash-2{left: 477px;bottom: 335px;}.main-src{padding: 650px 100px 100px 100px;}.param-line{width: 80%;margin: 50px auto 70px;}}

@media (max-width: 780px) {.main-flash-2{left: 398px;bottom: 279px;}  .main-src {padding: 600px 70px 100px 70px;}}

@media (max-width: 700px) {.main-flash-2{left: 320px;bottom: 260px;}  .main-src {padding: 570px 50px 10px 50px;}}

@media (max-width: 640px) {.main-flash-2{bottom: 251px;}  .main-src {padding: 540px 10px 70px 10px;}  .container {padding: 0 10px;}.main-banner{height: 802px;} .main-banner h1 {margin: -300px 0 40px 0;}.oracle-5{left: -500px;}}

@media (max-width: 600px) {.roadmap{width: 100%;}.annonce{font-size: 12px;}.main-flash-2{left: 110px;bottom: 258px;}.oracle{display: none;}.news-block-inner{padding: 30px 0;}.news-desc{padding-left: 10px;}  .container {max-width: 100%;}}

@media (max-width: 490px) {  .main-banner h1 {font-size: 60px;}  .main-banner {height: 650px;}  .main-src {padding: 460px 10px 70px 10px;}.roadmap {background: url('roadmap480.png') no-repeat top left;height: 2107px}.param-d{height: 45px;}  .param-line {font-size: 12px;}.sparks{display: none;}}

@media (max-width: 400px) {.main-banner{height: 572px;}.param-line{margin: 0px auto;}.main-flash-1{top: -57px;} .main-flash-2 {left: 102px;bottom: 285px;font-size: 12px;} .main-src {padding: 380px 10px 30px 10px;}.road-block {padding: 40px 0 20px;}.roadmap{background-size: 100%;height: 1579px;}.main-banner h1{margin: -180px 0 60px 0;} footer {padding-top: 60px;height: 150px;}body{padding-bottom: 150px;}}

@media (max-width: 360px) {.main-flash-1{top: -55px;}.main-flash-2{left: 97px;bottom: 351px;}  .main-src {padding: 390px 10px 70px 10px;}.annonce{white-space: wrap;line-height: 49px;}.main-banner h1 {margin: -200px 0 40px 0;font-size: 45px;}  .roadmap {background: url('roadmap360.png') no-repeat top left;}.param-line b {font-size: 21px;}.mobile-content a{font-size: 30px;}}



/*@media (max-width: px) {.main-banner{width: px;height: px;}}overflow: hidden;*/
/*{border: 1px solid #fff;}