@font-face {
    font-family: 'Abel-Regular';
    src: url('./fonts/Abel-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Galano Grotesque DEMO Bold';
    src: url('./fonts/Galano Grotesque DEMO Bold.woff2') format('woff2');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

/**
  Нормализация блочной модели
 */
*,
::before,
::after {
    box-sizing: border-box;
}

/**
  Убираем внутренние отступы слева тегам списков,
  у которых есть атрибут class
 */
:where(ul, ol):where([class]) {
    padding-left: 0;
}

/**
  Убираем внешние отступы body и двум другим тегам,
  у которых есть атрибут class
 */
body,
:where(blockquote, figure):where([class]) {
    margin: 0;
}

/**
  Убираем внешние отступы вертикали нужным тегам,
  у которых есть атрибут class
 */
:where(
  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  p,
  ul,
  ol,
  dl
):where([class]) {
    margin-block: 0;
}

:where(dd[class]) {
    margin-left: 0;
}

:where(fieldset[class]) {
    margin-left: 0;
    padding: 0;
    border: none;
}

/**
  Убираем стандартный маркер маркированному списку,
  у которого есть атрибут class
 */
:where(ul[class]) {
    list-style: none;
}

:where(address[class]) {
    font-style: normal;
}

/**
  Обнуляем вертикальные внешние отступы параграфа,
  объявляем локальную переменную для внешнего отступа вниз,
  чтобы избежать взаимодействие с более сложным селектором
 */
p {
    --paragraphMarginBottom: 24px;
    margin-block: 0;
}

/**
  Внешний отступ вниз для параграфа без атрибута class,
  который расположен не последним среди своих соседних элементов
 */
p:where(:not([class]):not(:last-child)) {
    margin-bottom: var(--paragraphMarginBottom);
}

/**
  Упрощаем работу с изображениями и видео
 */
img,
video {
    max-width: 100%;
    height: auto;
}

/**
  Наследуем свойства шрифт для полей ввода
 */
input,
textarea,
select,
button {
    font: inherit;
}

html {
    /**
      Пригодится в большинстве ситуаций
      (когда, например, нужно будет "прижать" футер к низу сайта)
     */
    height: 100%;
    /**
      Убираем скачок интерфейса по горизонтали
      при появлении / исчезновении скроллбара
     */
    scrollbar-gutter: stable;
}

/**
  Плавный скролл
 */
html,
:has(:target) {
    scroll-behavior: smooth;
}

body {
    /**
      Пригодится в большинстве ситуаций
      (когда, например, нужно будет "прижать" футер к низу сайта)
     */
    min-height: 100%;
    /**
      Унифицированный интерлиньяж
     */
    line-height: 1.5;
}


/**
  Курсор-рука при наведении на элемент
 */
button,
label {
    cursor: pointer;
}

/**
  Приводим к единому цвету svg-элементы
  (за исключением тех, у которых уже указан
  атрибут fill со значением 'none' или начинается с 'url')
 */
:where([fill]:not(
  [fill="none"],
  [fill^="url"]
)) {
    fill: currentColor;
}

/**
  Приводим к единому цвету svg-элементы
  (за исключением тех, у которых уже указан
  атрибут stroke со значением 'none')
 */
:where([stroke]:not(
  [stroke="none"],
  [stroke^="url"]
)) {
    stroke: currentColor;
}

/**
  Чиним баг задержки смены цвета при взаимодействии с svg-элементами
 */
svg * {
    transition-property: fill, stroke;
}

/**
  Приведение рамок таблиц в классический 'collapse' вид
 */
:where(table) {
    border-collapse: collapse;
    border-color: currentColor;
}

/**
  Удаляем все анимации и переходы для людей,
  которые предпочитают их не использовать
 */
@media (prefers-reduced-motion: reduce) {
    *,
    ::before,
    ::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

:root {
    --color-dark-purple: #1A1A2E;
    --color-light-purple: #A855F7;
    --font-family-base: 'Galano Grotesque DEMO Bold', sans-serif;
    --font-family-heading: 'Galano Grotesque DEMO Bold', sans-serif;
    --font-family-description: 'Abel-Regular', sans-serif;
    --container-padding-x: 15px;
    --transition-duration: 0.2s;
}

a,
button,
input,
textarea,
svg * {
    transition-duration: var(--transition-duration);
}

body {
    font-family: var(--font-family-base);
    background-color: var(--color-dark-purple);
    color: white;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 800;
}

/* Header Styles */
.header {
    padding: 20px 0;
    background-color: var(--color-dark-purple);
}

.header .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--container-padding-x);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.logo-text {
    font-size: 24px;
    font-weight: 800;
    color: white;
}

.nav {
    display: flex;
    gap: 40px;
}

.nav a {
    color: #888;
    text-decoration: none;
    font-weight: 600;
    transition: color var(--transition-duration);
}

.nav a:hover,
.nav a.active {
    color: white;
}

.nav a.active {
    color: var(--color-light-purple);
}

.btn-browse {
    background: var(--color-light-purple);
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all var(--transition-duration);
}

.btn-browse:hover {
    background: #9333ea;
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    padding: 100px 0;
    background-color: var(--color-dark-purple);
}

.hero .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--container-padding-x);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    max-width: 500px;
}

.premium-badge {
    background: rgba(168, 85, 247, 0.1);
    border: 1px solid rgba(168, 85, 247, 0.3);
    color: var(--color-light-purple);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 30px;
}

.hero-title {
    font-size: 48px;
    font-weight: 800;
    color: white;
    line-height: 1.1;
    margin-bottom: 20px;
}

.glow-text {
    position: relative;
    color: white; /* основной цвет текста */
}

.glow-text::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500%; /* размер свечения, можешь регулировать */
    height: 300%;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.6) 0%, rgba(168, 85, 247, 0) 60%);
    filter: blur(211px);
    z-index: 1; /* чтобы свечение было позади текста */
    border-radius: 50%;
}


.hero-title .highlight {
    color: var(--color-light-purple);
}

.hero-subtitle {
    font-size: 32px;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
}

.hero-description {
    color: #888;
    font-family: Abel-Regular;
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.hero-features {
    display: flex;
    font-family: Abel-Regular;
    gap: 20px;
    align-items: center;
    color: #888;
    font-size: 20px;
}

.hero-features .feature {
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-image {
    position: relative;
}

.hero-image {
    position: relative;
}

.hero-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.8) 0%, rgba(168, 85, 247, 0) 60%);
    filter: blur(70px);

    z-index: 0;
    border-radius: 23px;
}

.hero {
    position: relative; /* обязательно, чтобы позиционировать свечение внутри */
    padding: 100px 0;
    background-color: var(--color-dark-purple);
    overflow: hidden; /* чтобы свечение не выходило за границы */
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: -300px; /* регулирует смещение за правый край */
    width: 400px;
    height: 100%;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.5) 0%, rgba(168, 85, 247, 0) 70%);
    filter: blur(80px);
    z-index: 0; /* чтобы свечение было за контентом */
}


.hero-image video {
    width: 100%;
    height: auto;
    border-radius: 23px;
    object-fit: cover;
    position: relative;
    z-index: 1;
}



.hero-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);

}

.hero-image video {
    width: 100%; /* или другая нужная ширина */
    height: auto; /* или фиксированная высота */
    border-radius: 23px 23px 23px 23px;
    object-fit: cover; /* чтобы видео красиво вписывалось */
}


/* How to Use Section */
.how-to-use {
    padding: 100px 0;
    background-color: var(--color-dark-purple);
}

.how-to-use {
    position: relative;
    padding: 100px 0;
    background-color: var(--color-dark-purple);
    overflow: hidden;
}

.how-to-use::before,
.how-to-use::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
}

.how-to-use::before {
    top: 50px; /* левое верхнее свечение */
    left: 100px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.6) 0%, rgba(168, 85, 247, 0) 60%);
}

.how-to-use::after {
    bottom: 50px; /* правое нижнее свечение */
    right: 100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.6) 0%, rgba(168, 85, 247, 0) 60%);
}


.how-to-use .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--container-padding-x);
}

.section-title {
    text-align: center;
    font-size: 36px;
    font-weight: 800;
    color: white;
    margin-bottom: 60px;
}

.section-title .highlight {
    color: var(--color-light-purple);
}

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.step-card {
    background: #0C0C15;
    border: 1px solid #FFF;
    border-radius: 15px;
    padding: 40px 30px;
    text-align: left;
    transition: transform var(--transition-duration);
}

.step-card:hover {
    transform: translateY(-5px);
}

.step-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.step-icon img {
    width: 59px;
    height: 59px;
}

.step-title {
    font-size: 20px;
    font-weight: 800;
    color: white;
    margin-bottom: 16px;
}

.step-description {
    color: #888;
    font-family: Abel-Regular;
    font-size: 20px;
    line-height: 1.6;
}

/* Footer */
.footer {
    padding: 60px 0 40px;
    background-color: var(--color-dark-purple);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--container-padding-x);
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 60px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-brand img {
    width: 32px;
    height: 32px;
}

.footer-brand-text {
    font-size: 20px;
    font-weight: 800;
    color: white;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all var(--transition-duration);
}

.footer-social a:hover {
    background: var(--color-dark-purple);
    transform: translateY(-2px);
}

.footer-social a img {
    width: 35px;
    height: 35px;
}

.footer-section h3 {
    color: white;
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: #888;
    text-decoration: none;
    transition: color var(--transition-duration);
}

.footer-links a:hover {
    color: white;
}

@media (max-width: 768px) {
    .hero .container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 24px;
    }

    .steps {
        grid-template-columns: 1fr;
    }

    .footer .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .nav {
        display: none;
    }
}

/* Scripts Styles */

.scripts-page {
    padding: 80px 0;
    background-color: var(--color-dark-purple);
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.scripts-page::before {
    content: '';
    position: absolute;
    top: 0;
    right: -300px;
    width: 600px;
    height: 100%;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.3) 0%, rgba(168, 85, 247, 0) 70%);
    filter: blur(100px);
    z-index: 0;
}

.scripts-page::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -200px;
    width: 400px;
    height: 50%;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.2) 0%, rgba(168, 85, 247, 0) 70%);
    filter: blur(80px);
    z-index: 0;
}

.scripts-page .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--container-padding-x);
    position: relative;
    z-index: 1;
}

.scripts-title {
    text-align: center;
    font-size: 48px;
    font-weight: 800;
    color: white;
    margin-bottom: 60px;
}

.scripts-title .highlight {
    color: var(--color-light-purple);
}

.scripts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.script-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 480px; /* или подстрой под свои карточки */
    background: #0C0C15;
    border: 1px solid #FFF;
    border-radius: 15px;
    padding: 0;
    transition: all var(--transition-duration);
    overflow: hidden;
}


.script-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(168, 85, 247, 0.2);
}

.script-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 15px 15px 0 0;
}

.script-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.script-content {
    padding: 21px;
}

.script-title {
    font-size: 18px;
    font-weight: 800;
    color: white;
    margin-bottom: 8px;
}

.script-description {
    color: #888;
    font-size: 14px;
    margin-bottom: 20px;
}

.script-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.watch-video {
    background: transparent;
    border: none;
    color: #888;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: color var(--transition-duration);
}

.watch-video:hover {
    color: white;
}

.watch-video img {
    width: 20px;
    height: 20px;
}

.download-btn {
    background: var(--color-light-purple);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-duration);
}

.download-btn:hover {
    background: #9333ea;
    transform: translateY(-2px);
}

/* Pagination Styles */
.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
}

.pagination-btn {
    background: transparent;
    border: 1px solid #2a3855;
    color: #888;
    padding: 12px 16px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all var(--transition-duration);
}

.pagination-btn:hover {
    background: #2a3855;
    color: white;
}

.pagination-btn.active {
    background: var(--color-light-purple);
    color: white;
    border-color: var(--color-light-purple);
}

.pagination-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Footer Styles */
.footer {
    padding: 60px 0 40px;
    background-color: var(--color-dark-purple);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--container-padding-x);
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 60px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-brand img {
    width: 32px;
    height: 32px;
}

.footer-brand-text {
    font-size: 20px;
    font-weight: 800;
    color: white;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all var(--transition-duration);
}

.footer-social a:hover {
    background: var(--color-dark-purple);
    transform: translateY(-2px);
}

.footer-social a img {
    width: 35px;
    height: 35px;
}

.footer-section h3 {
    color: white;
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: #888;
    text-decoration: none;
    transition: color var(--transition-duration);
}

.watch-video {
    text-decoration: none;
}


.footer-links a:hover {
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .scripts-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .scripts-title {
        font-size: 36px;
    }

    .footer .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .nav {
        display: none;
    }

    .pagination {
        flex-wrap: wrap;
        gap: 4px;
    }

    .pagination-btn {
        padding: 8px 12px;
        font-size: 14px;
    }
}

@media (max-width: 1024px) {
    .scripts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* ---------- Modal ---------- */
.modal{
    position:fixed;
    inset:0;
    display:flex;
    align-items:center;
    justify-content:center;
    background:rgba(0,0,0,.6);
    opacity:0;
    visibility:hidden;
    transition:opacity .25s ease;
    z-index:1000;
}
.modal.show{opacity:1;visibility:visible;}

.modal-content{
    background:#1A1A2E;
    padding:40px 32px 32px;
    border-radius:16px;
    width:min(90vw,420px);
    text-align:center;
    position:relative;
    box-shadow:0 25px 60px rgba(0,0,0,.35);
}

.modal-close{
    position:absolute;
    top:12px;
    right:16px;
    background:none;
    border:none;
    font-size:28px;
    color:#fff;
    cursor:pointer;
}

.modal-title{
    color:#fff;
    font-size:22px;
    font-weight:800;
    margin-bottom:24px;
}

.password-box{
    display:flex;
    align-items:center;
    justify-content:space-between;
    background:#1A1A2E;
    border:1px solid white;
    border-radius:8px;
    padding:12px 16px;
}

#password-value{
    color: var(--color-light-purple);
    font-weight:700;
    user-select:all;
}


.copy-btn img {
    width: 20px;
    height: 20px;
    color:var(--color-light-purple);
}


.copy-btn{
    background:none;
    border:none;
    cursor:pointer;
    color:var(--color-light-purple);
    transition:transform .15s;
}
.copy-btn:active{transform:scale(.9);}

.copy-btn.copied img{filter:grayscale(1) brightness(2);}
.modal-hint{color:#888;margin-top:12px;font-size:14px;}


/* ---------- Purple glow particles ---------- */
#particles-bg{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    z-index:0;            /* лежит ниже .container (у которой z-index:1) */
    pointer-events:none;  /* не перехватывает клики */
}


/* ---------- Floating neon diamonds (home page) ---------- */
#shapes-bg{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    z-index:0;            /* всё основное содержимое выше thanks to .container{z-index:1} */
    pointer-events:none;  /* холст не перехватывает мышь/тач */
}


/* Tutorials Page Styles */
.tutorials-page {
    padding: 80px 0;
    background-color: var(--color-dark-purple);
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.tutorials-page::before {
    content: '';
    position: absolute;
    top: 0;
    right: -300px;
    width: 600px;
    height: 100%;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.3) 0%, rgba(168, 85, 247, 0) 70%);
    filter: blur(100px);
    z-index: 0;
}

.tutorials-page::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -200px;
    width: 400px;
    height: 50%;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.2) 0%, rgba(168, 85, 247, 0) 70%);
    filter: blur(80px);
    z-index: 0;
}

.tutorials-page .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--container-padding-x);
    position: relative;
    z-index: 1;
}

.section-title {
    font-size: 48px;
    font-weight: 800;
    color: white;
    margin-bottom: 60px;
    text-align: center;
}

.section-title .highlight {
    color: var(--color-light-purple);
}

/* ---------- scroll-reveal ---------- */
.reveal{
    opacity:0;
    transform:translateY(24px);
    transition:opacity .6s ease, transform .6s ease;
}
.reveal.show{                /* когда попадает в viewport */
    opacity:1;
    transform:none;
}



/* Tutorials Page Styles */
.tutorials-page {
    padding: 80px 0;
    background-color: var(--color-dark-purple);
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.tutorials-page::before {
    content: '';
    position: absolute;
    top: 0;
    right: -300px;
    width: 600px;
    height: 100%;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.3) 0%, rgba(168, 85, 247, 0) 70%);
    filter: blur(100px);
    z-index: 0;
}

.tutorials-page::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -200px;
    width: 400px;
    height: 50%;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.2) 0%, rgba(168, 85, 247, 0) 70%);
    filter: blur(80px);
    z-index: 0;
}

.tutorials-page .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--container-padding-x);
    position: relative;
    z-index: 1;
}

.section-title {
    font-size: 48px;
    font-weight: 800;
    color: white;
    margin-bottom: 60px;
    text-align: center;
}

.section-title .highlight {
    color: var(--color-light-purple);
}

/* How to Use Safely Section */
.how-to-use-section {
    margin-bottom: 120px;
}

.tutorial-steps {
    display: flex;
    flex-direction: column;
    gap: 60px;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 40px;
}

.tutorial-step {
    display: flex;
    align-items: center;
    gap: 40px;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    border: 1px solid #FFF;
    background: var(--color-dark-purple);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 800;
    color: var(--color-light-purple);
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.step-content {
    flex: 1;
}

.step-content h3 {
    font-size: 36px;
    font-weight: 800;
    color: white;
    margin-bottom: 16px;
    line-height: 1.2;
}

.step-content h3 .highlight {
    color: var(--color-light-purple);
}

.step-description {
    color: #888;
    font-size: 18px;
    margin-bottom: 8px;
    line-height: 1.5;
}

/* Important Information Section */
.important-info-section {
    margin-bottom: 120px;
}

.info-cards {
    display: flex;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.info-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    flex: 1;
}

.info-number {
    width: 60px;
    height: 60px;
    background: var(--color-dark-purple);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 800;
    border: 1px solid #FFF;
    color: var(--color-light-purple);
    flex-shrink: 0;
}

.info-content p {
    color: #888;
    font-family: Abel-Regular;
    font-size: 20px;
    line-height: 1.6;
}

/* Video Tutorial Section */
.video-tutorial-section {
    margin-bottom: 80px;
}

.video-container {
    max-width: 800px;
    margin: 0 auto;
    background: #1A1A2E;
    border-radius: 20px;
    overflow: hidden;
    padding: 20px;
}

.video-placeholder {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
}

.video-placeholder img {
    width: 100%;
    height: auto;
    display: block;
}

/* Footer Styles */
.footer {
    padding: 60px 0 40px;
    background-color: var(--color-dark-purple);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--container-padding-x);
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 60px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-brand img {
    width: 32px;
    height: 32px;
}

.footer-brand-text {
    font-size: 20px;
    font-weight: 800;
    color: white;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all var(--transition-duration);
}

.footer-social a:hover {
    background: rgba(168, 85, 247, 0.2);
    transform: translateY(-2px);
}

.footer-social a img {
    width: 35px;
    height: 35px;
}

.footer-section h3 {
    color: white;
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: #888;
    text-decoration: none;
    transition: color var(--transition-duration);
}

.footer-links a:hover {
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .section-title {
        font-size: 36px;
    }

    .tutorial-steps {
        padding: 0 20px;
        gap: 40px;
    }

    .tutorial-step {
        flex-direction: column;
        gap: 20px;
        text-align: center;
        align-items: center;
    }

    .step-content h3 {
        font-size: 28px;
    }

    .step-description {
        font-size: 16px;
    }

    .info-cards {
        flex-direction: column;
        gap: 30px;
    }

    .footer .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .nav {
        display: none;
    }
}

@media (max-width: 1024px) {
    .info-cards {
        flex-direction: column;
        gap: 30px;
    }

    .tutorial-steps {
        padding: 0 30px;
    }

    .step-content h3 {
        font-size: 32px;
    }
}


.tutorials-page{position:relative; overflow:hidden;}

#constellation-bg{
    position:absolute; inset:0;
    width:100%; height:100%;
    pointer-events:none;
    z-index:0;                 /* контейнер имеет z-index:1 → текст поверх */
}


/* Contact Page Styles */
.contact-page {
    padding: 80px 0;
    background-color: var(--color-dark-purple);
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.contact-page::before {
    content: '';
    position: absolute;
    top: 0;
    right: -300px;
    width: 600px;
    height: 100%;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.3) 0%, rgba(168, 85, 247, 0) 70%);
    filter: blur(100px);
    z-index: 0;
}

.contact-page::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -200px;
    width: 400px;
    height: 50%;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.2) 0%, rgba(168, 85, 247, 0) 70%);
    filter: blur(80px);
    z-index: 0;
}

.contact-page .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--container-padding-x);
    position: relative;
    z-index: 1;
}

.contact-title {
    text-align: center;
    font-size: 48px;
    font-weight: 800;
    color: white;
    margin-bottom: 80px;
}

.contact-title .highlight {
    color: var(--color-light-purple);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-bottom: 120px;
}

/* Support Info Section */
.support-card {
    background: rgba(12, 12, 21, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    text-align: left;
}

.support-icon {
    width: 48px;
    height: 48px;
    background: rgba(168, 85, 247, 0.1);
    border: 1px solid rgba(168, 85, 247, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--color-light-purple);
}

.support-card h3 {
    font-size: 24px;
    font-weight: 800;
    color: white;
    margin-bottom: 24px;
}

.support-hours p {
    color: #888;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 8px;
}

.support-hours p:first-child {
    margin-bottom: 16px;
}

/* Contact Form Section */
.form-card {
    background: rgba(12, 12, 21, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
}

.form-card h3 {
    font-size: 24px;
    font-weight: 800;
    color: white;
    margin-bottom: 12px;
}

.form-description {
    color: #888;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 32px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    color: white;
    font-weight: 600;
    font-size: 16px;
}

.form-group input,
.form-group textarea {
    background: rgba(26, 26, 46, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 12px 16px;
    color: white;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-light-purple);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    background: var(--color-light-purple);
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.submit-btn:hover {
    background: #9333ea;
    transform: translateY(-2px);
}

/* FAQ Section */
.faq-section {
    max-width: 800px;
    margin: 0 auto;
}

.faq-title {
    text-align: center;
    font-size: 48px;
    font-weight: 800;
    color: white;
    margin-bottom: 60px;
}

.faq-title .highlight {
    color: var(--color-light-purple);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: rgba(12, 12, 21, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(168, 85, 247, 0.3);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 24px;
    text-align: left;
    color: white;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(168, 85, 247, 0.05);
}

.faq-arrow {
    color: var(--color-light-purple);
    font-size: 14px;
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 0 24px 20px;
    color: #888;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-title {
        font-size: 36px;
        margin-bottom: 60px;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 80px;
    }

    .support-card,
    .form-card {
        padding: 30px 20px;
    }

    .faq-title {
        font-size: 36px;
        margin-bottom: 40px;
    }

    .faq-question {
        padding: 16px 20px;
        font-size: 15px;
    }

    .faq-answer p {
        padding: 0 20px 16px;
        font-size: 13px;
    }
}

@media (max-width: 1024px) {
    .contact-content {
        gap: 60px;
    }

    .support-card,
    .form-card {
        padding: 35px 25px;
    }
}


/* контактная страница должна быть position:relative, чтобы холст «приклеился» */
.contact-page{position:relative; overflow:hidden;}

#bokeh-bg{
    position:absolute; inset:0;
    width:100%; height:100%;
    pointer-events:none;
    z-index:0;                         /* под контентом */
}


/* Executors Page Styles */
.executors-page {
    padding: 80px 0;
    background-color: var(--color-dark-purple);
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.executors-page::before {
    content: '';
    position: absolute;
    top: 0;
    right: -300px;
    width: 600px;
    height: 100%;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.3) 0%, rgba(168, 85, 247, 0) 70%);
    filter: blur(100px);
    z-index: 0;
}

.executors-page::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -200px;
    width: 400px;
    height: 50%;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.2) 0%, rgba(168, 85, 247, 0) 70%);
    filter: blur(80px);
    z-index: 0;
}

.executors-title {
    text-align: center;
    font-size: 48px;
    font-weight: 800;
    color: white;
    margin-bottom: 80px;
}

.executors-title .highlight {
    color: var(--color-light-purple);
}

.executors-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    max-width: 800px;
    margin: 0 auto;
}

.executor-card {
    background: rgba(26, 26, 46, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all var(--transition-duration);
    position: relative;
    overflow: hidden;
}

.executor-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.1) 0%, rgba(168, 85, 247, 0) 70%);
    filter: blur(50px);
    z-index: 0;
    opacity: 0;
    transition: opacity var(--transition-duration);
}

.executor-card:hover::before {
    opacity: 1;
}

.executor-card:hover {
    transform: translateY(-5px);
    border-color: rgba(168, 85, 247, 0.3);
}

.executor-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    position: relative;
    z-index: 1;
}

.executor-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.executor-name {
    font-size: 28px;
    font-weight: 800;
    color: white;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.executor-features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.feature-badge {
    background: rgba(168, 85, 247, 0.1);
    border: 1px solid rgba(168, 85, 247, 0.3);
    color: var(--color-light-purple);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.feature-badge img {
    width: 16px;
    height: 16px;
}

.executor-download {
    position: relative;
    z-index: 1;
}

.download-info {
    color: #888;
    font-size: 14px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.download-info img {
    width: 16px;
    height: 16px;
}

.download-btn {
    background: var(--color-light-purple);
    color: white;
    border: none;
    padding: 16px 40px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    text-align: center;
    transition: all var(--transition-duration);
    width: 100%;
    text-decoration: none;
    display: inline-block;
}

.download-btn:hover {
    background: #9333ea;
    transform: translateY(-2px);
}

/* Footer Styles */
.footer {
    padding: 60px 0 40px;
    background-color: var(--color-dark-purple);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer .container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 60px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-brand img {
    width: 32px;
    height: 32px;
}

.footer-brand-text {
    font-size: 20px;
    font-weight: 800;
    color: white;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all var(--transition-duration);
}

.footer-social a:hover {
    background: rgba(168, 85, 247, 0.2);
    transform: translateY(-2px);
}

.footer-social a img {
    width: 35px;
    height: 35px;
}

.footer-section h3 {
    color: white;
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: #888;
    text-decoration: none;
    transition: color var(--transition-duration);
}

.footer-links a:hover {
    color: white;
}

.footer-links a.active {
    color: var(--color-light-purple);
}

/* Responsive Design */
@media (max-width: 768px) {
    .executors-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .executors-title {
        font-size: 36px;
    }

    .executor-name {
        font-size: 24px;
    }

    .footer .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .nav {
        display: none;
    }
}

@media (max-width: 1024px) {
    .executors-grid {
        max-width: 600px;
        grid-template-columns: 1fr;
    }
}


/* ---- Aurora ribbons ---------------------------------------------------- */
#aurora-bg{
    position:fixed;
    inset:0;
    width:100%;
    height:100%;
    z-index:0;              /* всё остальное выше (контейнеры с z-index:1) */
    pointer-events:none;
    filter:blur(8px) brightness(1.2); /* мягкие края и лёгкое свечение */
}


/* style.css  ─────  где-нибудь внизу */

.badge-new{
    position:absolute;
    top:8px;
    left:8px;
    background:red;
    color:#fff;
    font-size:11px;
    font-weight:700;
    padding:4px 10px 3px;
    border-radius:12px;
    letter-spacing:.5px;
    box-shadow:0 2px 6px rgba(0,0,0,.25);
    pointer-events:none;           /* чтобы не мешала клику по картинке */
    animation: pulse 2s infinite;
}

@keyframes pulse{
    0%,100%{ transform:scale(1); opacity:1 }
    50%   { transform:scale(1.15); opacity:.85 }
}

.script-image{ position:relative }   /* чтобы badge позиционировался */

/* ---- Search box ------------------------------------------------------- */
.search-box{
    max-width:360px;margin:0 auto 40px;position:relative;
}
#searchInput{
    width:100%;padding:12px 44px 12px 18px;border-radius:12px;border:1px solid #2a3855;
    background:#111827;color:#fff;font-size:15px;
    transition:border-color .25s;
}
#searchInput::placeholder{color:#888}
#searchInput:focus{outline:none;border-color:var(--color-light-purple);}
.search-ico{
    position:absolute;right:16px;top:50%;transform:translateY(-50%);
    width:20px;height:20px;pointer-events:none;color:#888;
}




/* ---- Styles redirect ------------------------------------------------------- */

/* Breadcrumb */
.breadcrumb {
    background-color: var(--color-dark-purple);
    padding: 16px 0;
    border-bottom: 1px solid var(--color-border);
}

.breadcrumb .container {
    display: flex;
    align-items: center;
    gap: 8px;
}

.breadcrumb-link {
    color: #888;
    text-decoration: none;
    font-size: 14px;
    transition: color var(--transition-duration);
}

.breadcrumb-link:hover {
    color: var(--color-light-purple);
}

.breadcrumb-separator {
    color: #666;
    font-size: 14px;
}

.breadcrumb-current {
    color: white;
    font-size: 14px;
    font-weight: 500;
}


/* Main Executor Detail Page */
.executor-detail-page {
    padding: 60px 0;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 100%);
    min-height: 60vh;
}

.executor-detail-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

/* Left Section - Image */
.executor-image-section {
    display: flex;
    justify-content: center;
}

.executor-image-card {
    background: rgba(26, 26, 46, 0.8);
    border: 1px solid var(--color-border);
    border-radius: 20px;
    padding: 40px;
    width: 100%;
    max-width: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.executor-main-image {
    width: 200px;
    height: 200px;
    object-fit: contain;
    border-radius: 50%;
}

/* Right Section - Info */
.executor-info-section {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.executor-detail-title {
    font-size: 48px;
    font-weight: 800;
    color: var(--color-light-purple);
    margin-bottom: 0;
}

.executor-meta {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.meta-label {
    font-weight: 600;
    color: #888;
    min-width: 80px;
}

.meta-value {
    font-weight: 600;
    color: white;
}

.status-undetected {
    color: #10b981;
}

.rating {
    color: #fbbf24;
}

.downloads {
    color: #3b82f6;
}

.executor-description h3 {
    font-size: 20px;
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
}

.executor-description p {
    color: #888;
    font-size: 16px;
    line-height: 1.6;
}

.executor-password {
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: left;
}

.executor-password label {
    font-weight: 600;
    color: white;
}

.password-input-container {
    display: flex;
    align-items: center;
    gap: 8px;
}

.executor-password input {
    background: rgba(26, 26, 46, 0.8);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    padding: 12px 16px;
    color: var(--color-light-purple);
    font-size: 16px;
    font-weight: 600;
    flex: 1;
}

.copy-btn {
    background: rgba(168, 85, 247, 0.1);
    border: 1px solid rgba(168, 85, 247, 0.3);
    border-radius: 8px;
    padding: 12px 16px;
    color: var(--color-light-purple);
    cursor: pointer;
    transition: all var(--transition-duration);
}

.copy-btn:hover {
    background: rgba(168, 85, 247, 0.2);
}

.download-btn-main {
    background: var(--color-light-purple);
    color: white;
    border: none;
    padding: 20px 40px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 18px;
    cursor: pointer;
    transition: all var(--transition-duration);
    width: 100%;
}

.download-btn-main:hover {
    background: #9333ea;
    transform: translateY(-2px);
}

/* Recommended Section */
.recommended-section {
    padding: 80px 0;
    background-color: var(--color-dark-purple);
}

.recommended-title {
    text-align: center;
    font-size: 48px;
    font-weight: 800;
    color: white;
    margin-bottom: 12px;
}

.recommended-subtitle {
    text-align: center;
    color: #888;
    font-size: 16px;
    margin-bottom: 60px;
}

.recommended-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.script-card {
    background: rgba(26, 26, 46, 0.8);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    overflow: hidden;
    transition: all var(--transition-duration);
}

.script-card:hover {
    transform: translateY(-5px);
    border-color: rgba(168, 85, 247, 0.3);
}

.script-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.script-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.badge-featured {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--color-light-purple);
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-free {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #10b981;
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.script-info {
    padding: 24px;
}

.script-title {
    font-size: 18px;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
    line-height: 1.4;
}

.script-description {
    color: #888;
    font-size: 14px;
    margin-bottom: 16px;
    line-height: 1.5;
}

.script-stats {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
}

.views,
.rating {
    color: #888;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.view-mod-btn {
    background: var(--color-light-purple);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-duration);
    width: 100%;
}

.view-mod-btn:hover {
    background: #9333ea;
    transform: translateY(-2px);
}


/* ---------- Root & Reset ---------- */
:root{
    --color-dark-purple:#0f0f23;
    --color-dark-purple-2:#1a1a2e;
    --color-light-purple:#a855f7;
    --color-border:rgba(255,255,255,0.08);
    --transition-duration:0.2s ease;
}

*,*::before,*::after{margin:0;padding:0;box-sizing:border-box;}
html{scroll-behavior:smooth;}
img{display:block;max-width:100%;height:auto;}
.container{width:100%;max-width:1240px;padding:0 24px;margin:0 auto;}



/* ---------- Breadcrumb ---------- */
.breadcrumb{
    background:var(--color-dark-purple);
    padding:16px 0;
    border-bottom:1px solid var(--color-border);
}
.breadcrumb .container{display:flex;align-items:center;gap:6px;font-size:14px;}
.breadcrumb-link{color:#888;text-decoration:none;transition:color var(--transition-duration);}
.breadcrumb-link:hover{color:var(--color-light-purple);}
.breadcrumb-current{color:#fff;font-weight:500;}
.breadcrumb-separator{color:#666;}

/* ---------- Main (Executor) ---------- */
.executor-detail-page{padding:80px 0;}
.executor-detail-content{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:80px;
}

.executor-image-section{display:flex;justify-content:center;}
.executor-image-card{
    background:rgba(26,26,46,.8);
    border:1px solid var(--color-border);
    border-radius:20px;
    padding:40px;
    max-width:400px;
    display:flex;
    align-items:center;
    justify-content:center;
}
.executor-main-image{width:200px;height:200px;object-fit:contain;border-radius:50%;}

.executor-info-section{display:flex;flex-direction:column;gap:32px;}
.executor-detail-title{font-size:48px;font-weight:800;color:var(--color-light-purple);}

.executor-meta{display:flex;flex-direction:column;gap:8px;font-size:16px;}
.meta-item{display:flex;gap:12px;}
.meta-label{min-width:90px;color:#888;font-weight:600;}
.meta-value{font-weight:600;}
.status-undetected{color:#10b981;}
.rating{color:#fbbf24;}
.downloads{color:#60a5fa;}

.executor-description h3{font-size:20px;margin-bottom:8px;}
.executor-description p{color:#9ca3af;font-size:16px;}

.executor-password{display:flex;flex-direction:column;gap:8px;}
.executor-password input{
    flex:1;
    background:rgba(26,26,46,.8);
    border:1px solid var(--color-border);
    border-radius:8px;
    padding:12px 16px;
    color:var(--color-light-purple);
    font-weight:600;
}
.password-input-container{display:flex;align-items:center;gap:8px;}
.copy-btn{
    background:rgba(168,85,247,0.1);
    border:1px solid rgba(168,85,247,0.3);
    border-radius:8px;
    padding:12px 16px;
    cursor:pointer;
    transition:background var(--transition-duration),transform var(--transition-duration);
}
.copy-btn:hover{background:rgba(168,85,247,0.25);transform:translateY(-1px);}

.download-btn-main-executor{
    background:var(--color-light-purple);
    color:#fff;
    border:none;
    padding:20px;
    border-radius:12px;
    font-weight:700;
    font-size:18px;
    cursor:pointer;
    text-align: center;
    text-decoration: none;
    transition:background var(--transition-duration),transform var(--transition-duration);
}
.download-btn-main-executor:hover{background:#9333ea;transform:translateY(-2px);}

/* ---------- Recommended ---------- */
.recommended-section{padding:100px 0;background:var(--color-dark-purple);}
.recommended-title{text-align:center;font-size:48px;font-weight:800;margin-bottom:8px;}
.recommended-subtitle{text-align:center;color:#888;margin-bottom:60px;}

.recommended-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:40px;
}
.script-card{
    background:rgba(26,26,46,.8);
    border:1px solid var(--color-border);
    border-radius:16px;
    overflow:hidden;
    transition:transform var(--transition-duration),border-color var(--transition-duration);
}
.script-card:hover{transform:translateY(-5px);border-color:rgba(168,85,247,0.3);}
.script-image{position:relative;height:200px;overflow:hidden;}
.script-image img{width:100%;height:100%;object-fit:cover;}
.badge-featured,.badge-free{
    position:absolute;top:12px;left:12px;
    padding:4px 12px;border-radius:12px;
    font-size:12px;font-weight:700;text-transform:uppercase;letter-spacing:.5px;
}
.badge-featured{background:var(--color-light-purple);}
.badge-free{background:#10b981;}
.script-info{padding:24px;}
.script-title{font-size:18px;font-weight:700;line-height:1.35;margin-bottom:6px;}
.script-description{color:#9ca3af;font-size:14px;margin-bottom:16px;}
.script-stats{display:flex;gap:16px;font-size:14px;color:#9ca3af;margin-bottom:24px;}
.view-mod-btn{
    background:var(--color-light-purple);
    width:100%;border:none;border-radius:8px;
    padding:12px;font-weight:600;color:#fff;
    cursor:pointer;transition:background var(--transition-duration),transform var(--transition-duration);
}
.view-mod-btn:hover{background:#9333ea;transform:translateY(-2px);}


/* ---------- Responsive tweaks ---------- */
@media(max-width:768px){
    .executor-detail-content{gap:40px;}
    .executor-detail-title{font-size:36px;}
    .recommended-title{font-size:36px;}
}

@media(max-width:480px){
    .nav{display:none;}          /* burger-меню можно добавить позже */
    .btn-browse{display:none;}
    .executor-detail-title{font-size:30px;}
    .executor-main-image{width:150px;height:150px;}
}



/* Main content */
.main-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}



.download-container {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 48px;
    max-width: 500px;
    width: 100%;
    text-align: center;
}

.download-icon {
    margin-bottom: 24px;
    display: flex;
    justify-content: center;
}

.download-title {
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
}

.download-subtitle {
    font-size: 16px;
    color: #8B5CF6;
    font-weight: 600;
    margin-bottom: 24px;
}

.download-description {
    font-size: 16px;
    color: #c1c7d0;
    line-height: 1.6;
    margin-bottom: 32px;
}

.file-info {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 32px;
}

.file-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.file-row:last-child {
    border-bottom: none;
}

.file-label {
    font-weight: 600;
    color: #c1c7d0;
    font-size: 14px;
}

.file-value {
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
}

.status-detected {
    color: #10B981;
    font-weight: 600;
}

.download-button {
    background: #8B5CF6;
    color: #ffffff;
    border: none;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 auto;
}

.download-button:hover {
    background: #7C3AED;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
}

.download-button:active {
    transform: translateY(0);
}






.footer-redirect {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    text-align: center;
}

.footer-redirect p {
    color: #8B93A6;
    font-size: 14px;
}

/* Responsive design */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
        gap: 20px;
    }

    .nav {
        gap: 20px;
    }

    .download-container {
        padding: 32px 24px;
        margin: 0 20px;
    }

    .download-title {
        font-size: 24px;
    }

    .nav a {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }

    .download-container {
        padding: 24px 16px;
    }

    .file-info {
        padding: 16px;
    }

    .download-button {
        width: 100%;
        justify-content: center;
    }
}

.page-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.main-content {
    flex: 1; /* занимает всё свободное пространство */
}


.btn-download {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 16px auto 0;
    padding: 16px 32px;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(90deg, #a78bfa 0%, #8b5cf6 100%);
    border: none;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(139, 92, 246, 0.4);
    text-decoration: none;
    cursor: pointer;
    transition:
            transform 0.2s ease,
            box-shadow 0.2s ease,
            background 0.3s ease;
}

.btn-download svg {
    width: 20px;
    height: 20px;
    stroke: #fff;
}



.btn-download:hover {
    background: linear-gradient(90deg, #9333ea 0%, #7c3aed 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(139, 92, 246, 0.6);
}

.btn-download:active {
    background: linear-gradient(90deg, #7c3aed 0%, #9333ea 100%);
    transform: translateY(-1px);
    box-shadow: 0 6px 12px rgba(139, 92, 246, 0.3);
}





/* ============ CONTAINER ============ */
.container-terms {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    gap: 0.5rem;
}

/* ============ BREADCRUMB ============ */
.breadcrumb {
    padding: 1rem 0;
    font-size: .9rem;
}
.breadcrumb .container {
    display: flex;
    align-items: center;
    gap: .5rem;
}
.breadcrumb-link {
    color: #b0b0b0;
    text-decoration: none;
    transition: color .3s;
}
.breadcrumb-link:hover {
    color: #a855f7;
}
.breadcrumb-separator {
    color: #666;
}
.breadcrumb-current {
    color: #fff;
    font-weight: 500;
}

/* ============ MAIN CONTENT ============ */
.main-content-terms {
    flex: 1;

    background-color: var(--color-dark-purple);
    padding: 0;
}

/* ОБЁРТКА С ФОНОМ И ОТСТУПАМИ */
.terms-panel {
    background-color: #1a1a2a;
    padding: 2.5rem 3rem;
    border-radius: .75rem;
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
    margin: 2rem auto 4rem;
    max-width: 800px;
}

/* ============ TERMS ============ */
.terms-content {
    /* пока никаких отступов — всё задаёт .terms-panel */
}
.terms-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #a855f7;
    margin-bottom: 2.5rem;
}
.terms-section {
    margin-bottom: 2.5rem;
}
.terms-section h2 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 1rem;
}
.terms-section p {
    line-height: 1.7;
    margin-bottom: 1rem;
}
.terms-section ul {
    list-style: none;
    padding-left: 0;
}
.terms-section li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: .5rem;
    line-height: 1.7;
}
.terms-section li::before {
    content: '•';
    position: absolute;
    left: 0;
    top: 0;
    color: #a855f7;
}
.highlight {
    color: #a855f7;
    font-weight: 500;
}
.email-link {
    color: #a855f7;
    text-decoration: none;
    transition: color .3s;
}
.email-link:hover {
    color: #7c3aed;
    text-decoration: underline;
}

/* ============ FOOTER ============ */
.footer {
    background-color: #0f0f1a;
    padding: 2rem 0 3rem;
    margin-top: auto;
}
.footer .container {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 2rem;
}
.footer-brand-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.footer-brand {
    display: flex;
    align-items: center;
    gap: .5rem;
}
.footer-brand-text {
    color: #fff;
    font-weight: 700;
}
.footer-social a {
    margin-right: 1rem;
}
.footer-social img {
    width: 24px; height: 24px;
}
.footer-section h3 {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 1rem;
}
.footer-links {
    display: flex;
    flex-direction: column;
    gap: .5rem;
}
.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color .3s;
    font-size: .95rem;
}
.footer-links a:hover {
    color: #a855f7;
}

.terms-section {
    font-family: Abel-Regular;
}

.terms-section h2 {
    font-family: var(--font-family-base);
}




/* ============ RESPONSIVE ============ */
@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        gap: 1rem;
    }
    .nav {
        flex-wrap: wrap;
        justify-content: center;
    }
    .btn-browse {
        align-self: center;
    }
    .footer .container {
        grid-template-columns: 1fr 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    .terms-panel {
        padding: 1.5rem;
        margin: 1.5rem auto 3rem;
    }
    .terms-title {
        font-size: 2rem;
    }
    .nav {
        gap: .5rem;
    }
    .nav a,
    .btn-browse {
        font-size: .9rem;
    }
    .btn-browse {
        padding: .5rem 1rem;
    }
    .footer .container-terms {
        grid-template-columns: 1fr;
    }
}




/* ============ Popup styles ============ */
.popup-download-windows {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(-20px);
    background-color: #2d2d2d;
    border: 1px solid #404040;
    border-radius: 8px;
    padding: 16px 20px;
    min-width: 300px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.popup-download-windows.visible {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    visibility: visible;
}

.popup-download-windows.show {
    animation: slideInDown 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.popup-download-windows.hide {
    animation: slideOutUp 0.3s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.check-icon {
    width: 20px;
    height: 20px;
    background-color: #00d084;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.check-icon::after {
    content: '✓';
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.popup-download-windows .content {
    flex: 1;
}

.popup-download-windows .title {
    color: white;
    font-size: 14px;
    font-weight: 600;
    margin: 0 0 2px 0;
}

.popup-download-windows .message {
    color: #b0b0b0;
    font-size: 13px;
    margin: 0;
}

.close-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    background: none;
    border: none;
    color: #888;
    font-size: 18px;
    cursor: pointer;
    padding: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 2px;
    transition: all 0.2s ease;
    font-family: Abel-Regular;
}

.close-btn:hover {
    color: #fff;
    background-color: #404040;
}

.close-btn::after {
    content: '×';
}

/* Enhanced Animations */
@keyframes slideInDown {
    0% {
        transform: translateX(-50%) translateY(-30px);
        opacity: 0;
    }
    100% {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }
}

@keyframes slideOutUp {
    0% {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }
    100% {
        transform: translateX(-50%) translateY(-30px);
        opacity: 0;
    }
}

/* Additional bounce effect for show */
.popup-download-windows.bounce {
    animation: bounceIn 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes bounceIn {
    0% {
        transform: translateX(-50%) translateY(-30px) scale(0.8);
        opacity: 0;
    }
    50% {
        transform: translateX(-50%) translateY(5px) scale(1.05);
        opacity: 0.8;
    }
    100% {
        transform: translateX(-50%) translateY(0) scale(1);
        opacity: 1;
    }
}


/* CSS */
.copy-feedback {
    margin-left: 8px;
    color: #fff;
    background: #a855f7;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.875rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.copy-feedback.show {
    opacity: 1;
}


/* контейнер вокруг */
.scan-container {
    margin: 24px auto 0;
    text-align: center;
}

/* Стили для кнопки Scan */
.btn-scan {
    display: inline-flex;          /* выстраиваем иконку + текст в ряд */
    align-items: center;
    gap: 8px;                      /* расстояние между логотипом и текстом */
    margin-top: 16px;              /* отступ сверху от предыдущего элемента */
    padding: 10px 20px;
    background-color: #2563eb;     /* насыщенный синий (можно подобрать любой) */
    color: #fff;
    font-size: 0.95rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.2s, transform 0.2s;
}

.btn-scan:hover {
    background-color: #1e40af;     /* чуть более тёмный при наведении */
    transform: translateY(-2px);
}

/* Логотип VirusTotal внутри кнопки */
.btn-scan .vt-logo {
    display: block;
    width: 20px;    /* подберите оптимальный размер */
    height: auto;
    filter: brightness(0) invert(1);
}

/* Если нужен responsive */
@media (max-width: 480px) {
    .btn-scan {
        width: 100%;
        justify-content: center;
    }
}

/* бокс для сканера + результата */
.vt-scan-box {
    margin-top: 16px;
}

/* простой спиннер */
.vt-spinner {
    margin: 0 auto;
    width: 48px;
    height: 48px;
    border: 4px solid rgba(255,255,255,0.2);
    border-top-color: #48bb78;
    border-radius: 50%;
    animation: vt-spin 1s linear infinite;
}
@keyframes vt-spin {
    to { transform: rotate(360deg); }
}

/* результат скрыт по умолчанию */
.vt-result {
    max-width: 320px;
    margin: 0 auto;
    background: #1a202c;
    border: 1px solid #2d3748;
    border-radius: 8px;
    padding: 16px;
    color: #cbd5e0;
    text-align: center;
    font-family: sans-serif;
}
.vt-result-score {
    font-size: 2rem;
    font-weight: 700;
    color: #48bb78;
    margin-bottom: 8px;
}
.vt-result-message {
    font-size: 0.9rem;
}


/* VirusTotal Scanner Styles */
.scanner-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
}

.scanner-window {
    background: #1a1d29;
    border-radius: 8px;
    width: 90%;
    max-width: 1200px;
    height: 90vh;
    overflow: hidden;
    position: relative;
    border: 1px solid #2d3748;
}

.scanner-header {
    background: #2d3748;
    padding: 16px 24px;
    border-bottom: 1px solid #3d4852;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.scanner-header h2 {
    color: #e2e8f0;
    font-size: 18px;
    margin: 0;
}

.scanner-close {
    background: none;
    border: none;
    color: #e2e8f0;
    font-size: 24px;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    font-family: Abel-Regular;
    justify-content: center;
    border-radius: 4px;
}

.scanner-close:hover {
    background: #4a5568;
}

.scanner-content {
    padding: 24px;
    height: calc(100% - 80px);
    overflow-y: auto;
}

.file-info-header {
    background: #2d3748;
    padding: 16px 24px;
    border-radius: 8px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.file-icon {
    width: 48px;
    height: 48px;
    background: #4a5568;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e2e8f0;
    font-size: 24px;
}

.file-details h3 {
    color: #e2e8f0;
    margin: 0 0 8px 0;
    font-size: 16px;
}

.file-meta {
    color: #a0aec0;
    font-size: 14px;
    margin: 0;
    font-family: Abel-Regular;
}

.scan-status {
    background: #22543d;
    color: #68d391;
    padding: 12px 16px;
    border-radius: 6px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
}

.scan-status-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #68d391;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #22543d;
    font-size: 12px;
    font-weight: bold;
}

.community-score {
    background: #2d3748;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    border: 4px solid #68d391;
}

.score-number {
    font-size: 36px;
    font-weight: bold;
    color: #68d391;
    line-height: 1;
}

.score-total {
    font-size: 14px;
    color: #a0aec0;
}

.score-label {
    text-align: center;
    color: #a0aec0;
    font-size: 14px;
    margin-bottom: 32px;
}

.vendors-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: #3d4852;
    border-radius: 8px;
    overflow: hidden;
}

.vendor-row {
    background: #2d3748;
    padding: 12px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.vendor-name {
    color: #e2e8f0;
    font-size: 14px;
    font-family: Abel-Regular;
}

.vendor-status {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #68d391;
    font-size: 14px;
}

.vendor-status.disabled {
    color: #a0aec0;
}

.status-icon {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #68d391;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #22543d;
    font-size: 10px;
}

.status-icon.disabled {
    background: #4a5568;
    color: #a0aec0;
}

.btn-scan {
    background: #3182ce;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    margin-left: 12px;
    transition: background-color 0.2s;
}

.btn-scan:hover {
    background: #2c5aa0;
}

.scanning-animation {
    display: none;
    text-align: center;
    padding: 40px;
}

.scanning-animation.active {
    display: block;
}

.spinner {
    width: 60px;
    height: 60px;
    border: 4px solid #3d4852;
    border-top: 4px solid #3182ce;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.scanning-text {
    color: #e2e8f0;
    font-size: 16px;
    margin-bottom: 8px;
}

.scanning-progress {
    color: #a0aec0;
    font-size: 14px;
    font-family: Abel-Regular;
}

.results-content {
    display: none;
}

.results-content.active {
    display: block;
}

.tabs {
    display: flex;
    border-bottom: 1px solid #3d4852;
    margin-bottom: 24px;
}

.tab {
    background: none;
    border: none;
    color: #a0aec0;
    padding: 12px 24px;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    font-size: 14px;
    font-weight: 500;
}

.tab.active {
    color: #3182ce;
    border-bottom-color: #3182ce;
}

.join-community {
    background: #2d3748;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 24px;
    border: 1px solid #3d4852;
}

.join-community p {
    color: #a0aec0;
    margin: 0;
    font-size: 14px;
}

.tab-content {
    display: block;
}

.tab-content.hidden {
    display: none;
}

.details-section {
    color: #e2e8f0;
}

.property-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.property-row {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 16px;
    padding: 8px 0;
    border-bottom: 1px solid #3d4852;
}

.property-label {
    color: #a0aec0;
    font-size: 14px;
    font-weight: 500;
}

.property-value {
    color: #e2e8f0;
    font-size: 14px;
    word-break: break-all;
    font-family: Abel-Regular;
}

.file-type-badge {
    background: #3182ce;
    color: white;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 12px;
    margin-right: 6px;
    display: inline-block;
    margin-bottom: 4px;
}

.trid-items, .detect-items, .compiler-items {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.trid-item, .detect-item, .compiler-item {
    font-size: 14px;
    color: #e2e8f0;
}

.detect-item {
    display: inline-block;
    margin-right: 12px;
    margin-bottom: 4px;
}

.signature-warning {
    color: #f6ad55 !important;
    display: flex;
    align-items: center;
    gap: 8px;
}

.sections-table {
    background: #2d3748;
    border-radius: 8px;
    overflow: hidden;
}

.table-header {
    background: #4a5568;
    display: grid;
    grid-template-columns: 80px 120px 120px 120px 80px 250px 100px;
    gap: 1px;
    padding: 12px 16px;
    font-weight: 600;
    font-size: 14px;
    color: #e2e8f0;
}

.table-row {
    display: grid;
    grid-template-columns: 80px 120px 120px 120px 80px 250px 100px;
    gap: 1px;
    padding: 12px 16px;
    border-bottom: 1px solid #3d4852;
    font-size: 14px;
    color: #e2e8f0;
}

.table-row:last-child {
    border-bottom: none;
}

.table-cell {
    font-size: 13px;
    word-break: break-all;
}


/* ——— Comments Section ——— */
.comments-section {
    padding: 40px 20px;
    background-color: #11121A;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
}

.comments-title {
    display: inline-block;
    position: relative;
    font-family: var(--font-family-heading, sans-serif);
    font-size: 1.75rem;
    color: #E2E8F0;
    margin-bottom: 32px;
    padding-bottom: 8px;
}
.comments-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 40px;
    height: 2px;
    background-color: #2D3748;
    transform: translateX(-50%);
}

.comments-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
}

.comments-icon {
    color: #4A5568;
    opacity: 0.6;
    margin-bottom: 16px;
}

.comments-message {
    font-family: var(--font-family-description);
    font-size: 1rem;
    color: #A0AEC0;
}


/* Заголовок секции */
.behavior-header {
    font-size: 1rem;
    color: #cbd5e1;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
    border-bottom: 1px solid #2e344e;
    padding-bottom: 6px;
}

/* Список тактик */
.behavior-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Элемент списка */
.behavior-item {
    display: flex;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #2e344e;
}

/* Переключатель «+» */
.behavior-toggle {
    width: 24px;
    height: 24px;
    background: none;
    border: none;
    color: #88c0d0;
    font-size: 1.2rem;
    margin-right: 12px;
    cursor: pointer;
    transition: transform 0.2s;
}
.behavior-toggle:hover {
    color: #81a1c1;
}

/* Название тактики */
.behavior-name {
    flex: 1;
    color: #e5e9f0;
    font-weight: 500;
}

/* Бейдж с кодом тактики */
.tactic-badge {
    display: inline-block;
    background: #4c566a;
    color: #d8dee9;
    font-size: 0.75rem;
    padding: 2px 6px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* При открытии/закрытии (пример поворота) */
.behavior-toggle.open {
    transform: rotate(45deg);
    color: #a3be8c;
}

.join-community a {
    color: #82aaff;            /* более мягкий голубой */
    text-decoration: none;     /* убираем подчеркивание */
    transition: color 0.2s;
}

.join-community a:hover {
    color: #a3bff8;            /* чуть светлее при наведении */
    /* по желанию можно вернуть подчёркивание при ховере:
    text-decoration: underline;
    */
}

