/* Этот файл сгенерирован автоматически из SCSS. Не редактируйте его напрямую. */
@charset "UTF-8";
.post-tags,
.single-post__footer {
  margin-top: 40px
}

.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border-width: 0; }

.reviews-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 50px
}

@media (max-width:992px) {
  .reviews-layout {
    grid-template-columns: 1fr
  }

  .review-stats-card {
    position: static;
    margin-bottom: 40px
  }
}

.review-stats-card {
  background: rgba(26, 26, 30, .6);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 16px;
  padding: 30px;
  position: -webkit-sticky;
  position: sticky;
  top: 110px;
  height: -moz-fit-content;
  height: fit-content
}

.overall-rating {
  text-align: center;
  margin-bottom: 25px
}

.overall-rating h3 {
  font-size: 3.5rem;
  line-height: 1;
  background: linear-gradient(90deg, #00f2a9, #00c2f2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text
}

.overall-rating p {
  color: #88898f;
  font-size: .9rem
}

.rating-breakdown {
  list-style: none;
  padding: 0;
  margin: 0
}

.rating-breakdown li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  font-size: .9rem;
  color: #88898f;
  font-weight: 500
}

.rating-breakdown li i {
  color: #f3ca50
}

.rating-bar {
  flex: 1;
  height: 6px;
  background: #232326;
  border-radius: 3px;
  overflow: hidden
}

.rating-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #00f2a9, #00c2f2);
  border-radius: 3px;
  transition: width .5s ease-in-out
}

.overall-rating-placeholder {
  text-align: center;
  padding: 40px 0
}

.overall-rating-placeholder i {
  font-size: 4rem;
  color: #88898f
}

.overall-rating-placeholder p {
  font-family: "Clash Display", sans-serif;
  font-size: 1.5rem;
  margin-top: 10px
}

.overall-rating-placeholder span {
  color: #88898f;
  font-size: .9rem
}

// Адаптивность для блока отзывов
@media (max-width: $breakpoint-lg) {
    .reviews-layout {
        grid-template-columns: 1fr;
    }
    .review-stats-card {
        position: static; // Отключаем "прилипание" на мобильных
        margin-bottom: 40px;
    }
}

.comment-form label {
  display: block;
  margin-bottom: 10px;
  font-weight: 500
}

.comment-form input[type=email],
.comment-form input[type=text],
.comment-form input[type=url],
.comment-form textarea {
  width: 100%;
  background: rgba(26, 26, 30, .6);
  border: 1px solid rgba(255, 255, 255, .1);
  color: #eaebeb;
  padding: 12px 15px;
  margin-bottom: 10px;
  border-radius: 8px;
  font-family: Inter, sans-serif;
  font-size: 1rem;
  transition: border-color .3s ease, box-shadow .3s ease
}

.comment-form input[type=email]:focus,
.comment-form input[type=text]:focus,
.comment-form input[type=url]:focus,
.comment-form textarea:focus {
  outline: 0;
  border-color: #00f2a9;
  box-shadow: 0 0 15px rgba(0, 242, 169, .2)
}

.comment-form .form-submit .submit {
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: transform .3s ease, box-shadow .3s ease;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(90deg, #00f2a9, #00c2f2);
  color: #0d0d10
}



         .form-field {
            position: relative;
            margin-bottom: 0px;
        }

.form-input {
            width: 100%;
            background: rgba(26, 26, 30, 0.7);
            border: 1px solid rgba(255, 255, 255, 0.1);
            color: #EAEAEB;
            padding: 20px 15px 8px;
            border-radius: 8px;
            font-size: 1rem;
            outline: none;
            transition: border-color 0.3s ease;
        }
         .form-label {
            position: absolute;
            left: 15px;
            top: 15px;
            color: #88898f;
            pointer-events: none;
            transition: all 0.3s ease;
        }
         .form-input:focus,
         .form-input:not(:placeholder-shown) {
            border-color: #00F2A9;
        }
         .form-input:focus + .form-label,
         .form-input:not(:placeholder-shown) + .form-label {
            top: 5px;
            font-size: 0.8rem;
            color: #00F2A9;
        }
         .btn {
            width: 100%; padding: 15px; border-radius: 8px; font-weight: 600; font-size: 1rem; cursor: pointer; transition: transform 0.3s ease, box-shadow 0.3s ease; border: none; background: linear-gradient(90deg, #00F2A9, #00C2F2); color: #0D0D10;
        }
         .btn:hover { transform: scale(1.02); box-shadow: 0 0 20px rgba(0, 242, 169, 0.3); }
		 
		 
.comment-form .form-submit .submit:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(0, 242, 169, .3)
}


.comment-form-rating {
            display: flex;
            align-items: center;
            background: rgba(26, 26, 30, 0.7);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 8px;
            padding: 12px 20px;
            transition: all 0.3s ease;
        }
        .comment-form-rating .panel-label {
            color: #88898f;
            margin-right: 10px;
            transition: color 0.3s ease;
        }
        .comment-form-rating .rating-stars {
            display: inline-flex;
            flex-direction: row-reverse;
        }
        .comment-form-rating input[type="radio"] { display: none; }
        .comment-form-rating label { cursor: pointer; padding: 0 4px; }
        .comment-form-rating label i {
            font-size: 1.8rem;
            color: #2a2a30;
            transition: all 0.3s ease;
        }
        /* Анимация */
        .comment-form-rating:hover {
            border-color: #00F2A9;
            box-shadow: 0 0 15px rgba(0, 242, 169, 0.2);
        }
        .comment-form-rating:hover .panel-label {
            color: #EAEAEB;
        }
        .comment-form-rating .rating-stars:hover label i,
        .comment-form-rating .rating-stars label:hover ~ label i {
            color: #00F2A9;
            transform: scale(1.1);
            text-shadow: 0 0 10px rgba(0, 242, 169, 0.7);
        }
        .comment-form-rating input[type="radio"]:checked ~ label i {
            color: #00F2A9;
            transform: scale(1.1);
            text-shadow: 0 0 10px rgba(0, 242, 169, 0.7);
        }
		



.comments-title {
  font-size: 1.8rem;
  margin-bottom: 25px;
  font-family: "Clash Display", sans-serif;
}

.comment-list {
  list-style: none;
  padding: 0;
  margin: 0 0 40px 0;
}

.comment-card {
  background: #111114;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 25px;
}

.comment-card:not(:last-child) {
  margin-bottom: 20px;
}

.comment-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.comment-header .avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(90deg, #00f2a9, #00c2f2);
}

.comment-meta h5 {
  font-family: Inter, sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  margin: 0;
  color: #eaebeb;
}

.comment-rating {
  display: flex;
  margin-top: 4px;
}

.comment-rating i {
  font-size: 1rem;
  color: #f3ca50;
}

.comment-date {
  margin-left: auto;
  font-size: 0.9rem;
  color: #88898f;
}

.comment-body {
  color: #88898f;
  line-height: 1.7;
  padding-left: 63px;
}

.comment-body p {
  margin: 0;
}

.comment .children {
  list-style: none;
  margin: 20px 0 0 40px;
  padding-left: 25px;
  border-left: 2px solid rgba(255, 255, 255, 0.1);
}

.comment-rating-display {
  display: flex;
  gap: 2px;
  margin-bottom: 10px
}

.comment-rating-display i {
  font-size: 1.1rem;
  color: #f3ca50
}

.header {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  background: rgba(26, 26, 30, .6);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, .1)
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1240px
}

.logo {
  font-family: Clash Display, sans-serif;
  font-size: 1.8rem;
  font-weight: 700
}

.logo .q-letter {
  background: linear-gradient(90deg, #00f2a9, #00c2f2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text
}

.nav ul {
  display: flex;
  gap: 40px;
  font-size: 1rem;
  font-weight: 500
}

.nav ul a:hover {
  color: #00f2a9
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 25px
}

.favorite-link {
  position: relative;
  font-size: 1.5rem;
  color: #88898f;
  transition: color .3s ease
}

.favorite-link:hover {
  color: #eaebeb
}

.favorite-count {
  position: absolute;
  top: -5px;
  right: -8px;
  background: linear-gradient(90deg, #00f2a9, #00c2f2);
  color: #0d0d10;
  font-size: .7rem;
  font-weight: 600;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center
}

.footer {
  background-color: #08080a;
  padding: 60px 0;
  border-top: 1px solid rgba(255, 255, 255, .1)
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 50px
}

.footer-col h4 {
  font-size: 1.2rem;
  margin-bottom: 20px
}

.footer-col a:hover,
.footer-col li,
.footer-col p {
  color: #88898f;
  margin-bottom: 12px
}

.footer-col a:hover {
  color: #eaebeb
}

.social-links {
  display: flex;
  gap: 15px;
  font-size: 1.5rem
}

.copyright {
  text-align: center;
  margin-top: 60px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  color: #88898f;
  font-size: .9rem
}

@media (max-width:992px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr
  }
}

@media (max-width:768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center
  }
  .social-links {
    justify-content: center
  }
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px
}

.section {
  padding: 100px 0
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 50px;
  position: relative;
  padding-left: 25px
}

.section-title:before {
  content: "//";
  color: #00f2a9;
  position: absolute;
  left: 0;
  top: 5px;
  font-family: Inter, sans-serif;
  font-weight: 500
}

.mobile-nav-toggle {
  display: none;
  background: 0 0;
  border: none;
  padding: 10px;
  cursor: pointer;
  z-index: 1001
}

.mobile-nav-toggle .icon-bar {
  display: block;
  width: 24px;
  height: 3px;
  background-color: #eaebeb;
  border-radius: 3px;
  transition: all .3s ease-in-out
}

.mobile-nav-toggle .icon-bar:not(:last-child) {
  margin-bottom: 5px
}

.mobile-nav-toggle.active .icon-bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg)
}

.mobile-nav-toggle.active .icon-bar:nth-child(2) {
  opacity: 0
}

.mobile-nav-toggle.active .icon-bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg)
}

body.nav-is-open {
  overflow: hidden
}

@media (max-width:992px) {
  .mobile-nav-toggle {
    display: block
  }
  .nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    height: 100vh;
    background: #141417;
    padding: 100px 40px;
    transform: translateX(100%);
    transition: transform .4s ease-in-out;
    z-index: 1000
  }
  .nav.is-open {
    transform: translateX(0)
  }
  .nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 25px;
    font-size: 1.2rem
  }
}

.archive-container {
  padding-top: 60px;
  padding-bottom: 60px
}

.archive-header {
  text-align: center;
  margin-bottom: 60px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto
}

.archive-title {
  font-size: 3.5rem;
  margin-bottom: 15px
}

.archive-description {
  font-size: 1.1rem;
  color: #88898f
}

.archive-filters {
  background: rgba(26, 26, 30, .6);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 40px;
  color: #88898f
}

.tool-filters-form {
  display: flex;
  gap: 20px;
  align-items: center
}

.tool-filters-form select {
  background-color: rgba(26, 26, 30, .6);
  border: 1px solid rgba(255, 255, 255, .1);
  color: #eaebeb;
  padding: 10px 15px;
  border-radius: 8px;
  font-family: Inter, sans-serif;
  font-size: 1rem;
  cursor: pointer
}

.tool-filters-form select:focus {
  outline: 0;
  border-color: #00f2a9
}

#tools-archive-container {
  position: relative;
  transition: opacity .3s ease
}

#tools-archive-container.loading {
  opacity: .5;
  pointer-events: none
}

#tools-archive-container.loading:after,
#tools-archive-container.loading:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 100px;
  transform: translateX(-50%);
  width: 48px;
  height: 48px;
  border: 3px solid #88898f;
  border-radius: 50%;
  display: inline-block;
  animation: rotation 1s linear infinite;
  z-index: 10
}

#tools-archive-container.loading:after {
  width: 56px;
  height: 56px;
  border-color: #00f2a9 transparent
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 25px;
  margin-bottom: 50px
}

.tools-grid .tool-card {
  flex-basis: auto
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px
}

.pagination .page-numbers {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: rgba(26, 26, 30, .6);
  border: 1px solid rgba(255, 255, 255, .1);
  color: #88898f;
  font-weight: 600;
  transition: all .3s ease
}

.pagination .page-numbers:hover {
  border-color: #00f2a9;
  color: #eaebeb
}

.pagination .page-numbers.current {
  background: linear-gradient(90deg, #00f2a9, #00c2f2);
  border-color: transparent;
  color: #0d0d10
}

.pagination .page-numbers.next,
.pagination .page-numbers.prev {
  font-size: 1.5rem
}

.loader-container {
  grid-column: 1/-1;
  text-align: center;
  padding: 80px 0;
  color: #88898f
}

.loader {
  width: 48px;
  height: 48px;
  border: 3px solid #88898f;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  box-sizing: border-box;
  animation: rotation 1s linear infinite
}

.loader:after {
  content: "";
  box-sizing: border-box;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 3px solid;
  border-color: #00f2a9 transparent
}

@keyframes rotation {
  0% {
    transform: rotate(0deg)
  }
  to {
    transform: rotate(360deg)
  }
}

.favorites-empty-message {
  background: rgba(26, 26, 30, .6);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 16px;
  padding: 50px 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px
}

.favorites-empty-message i {
  font-size: 3rem;
  color: #00f2a9
}

.favorites-empty-message h3 {
  font-size: 1.8rem
}

.favorites-empty-message p {
  color: #88898f;
  max-width: 400px
}

.favorites-empty-message .btn {
  margin-top: 20px
}

.posts-list {
  display: grid;
  gap: 50px;
  margin-bottom: 50px
}

.post-card {
  background: rgba(26, 26, 30, .6);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 16px;
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 30px;
  overflow: hidden
}

.post-card__thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
  transition: transform .4s ease
}

.post-card__thumbnail:hover img {
  transform: scale(1.05)
}

.post-card__content {
  padding: 30px 30px 30px 0;
  display: flex;
  flex-direction: column
}

.post-card__meta {
  display: flex;
  gap: 20px;
  font-size: .9rem;
  color: #88898f;
  margin-bottom: 15px
}

.post-card__category a {
  color: #00f2a9;
  font-weight: 500
}

.post-card__category a:hover {
  text-decoration: underline
}

.post-card__title {
  font-size: 1.8rem;
  margin-bottom: 15px;
  line-height: 1.3
}

.post-card__title a:hover {
  color: #00f2a9
}

.post-card__excerpt {
  color: #88898f;
  line-height: 1.6;
  margin-bottom: 20px
}

.post-card__read-more {
  margin-top: auto;
  font-weight: 600;
  color: #eaebeb;
  display: inline-flex;
  align-items: center;
  gap: 5px
}

.post-card__read-more i {
  transition: transform .3s ease
}

.post-card__read-more:hover {
  color: #00f2a9
}

.post-card__read-more:hover i {
  transform: translateX(5px)
}

.single-post-container {
  max-width: 800px;
  padding-top: 60px;
  padding-bottom: 60px
}

.single-post__header {
  text-align: center;
  margin-bottom: 40px
}

.single-post__meta {
  display: flex;
  justify-content: center;
  gap: 20px;
  font-size: .9rem;
  color: #88898f;
  margin-bottom: 15px
}

.single-post__category a {
  color: #00f2a9;
  font-weight: 500
}

.single-post__title {
  font-size: 3.2rem;
  line-height: 1.2
}

.single-post__thumbnail {
  margin-bottom: 40px
}

.single-post__thumbnail img {
  width: 100%;
  height: auto;
  border-radius: 16px
}

.single-post__content {
  line-height: 1.8;
  font-size: 1.1rem;
  color: #88898f
}

.single-post__content h2,
.single-post__content h3,
.single-post__content h4 {
  color: #eaebeb;
  margin-top: 2em;
  margin-bottom: 1em
}

.single-post__content a {
  color: #00f2a9;
  text-decoration: underline
}

.single-post__content a:hover {
  color: #00c2f2
}

.single-post__content blockquote,
.single-post__content ol,
.single-post__content p,
.single-post__content ul {
  margin-bottom: 1.5em
}

.single-post__content ol,
.single-post__content ul {
  padding-left: 20px
}

.single-post__content blockquote {
  border-left: 3px solid #00f2a9;
  padding-left: 20px;
  font-style: italic;
  color: #eaebeb
}

.hero {
  min-height: calc(80vh - 85px);
  display: flex;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1
}

.hero-background .shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(150px);
  opacity: .3
}

.hero-background .shape1 {
  width: 400px;
  height: 400px;
  background: #00f2a9;
  top: 10%;
  left: 15%;
  animation: move1 20s infinite alternate
}

.hero-background .shape2 {
  width: 500px;
  height: 500px;
  background: #00c2f2;
  bottom: 5%;
  right: 10%;
  animation: move2 25s infinite alternate
}

.hero-background .shape3 {
  width: 300px;
  height: 300px;
  background: #5d50f3;
  top: 40%;
  right: 30%;
  animation: move3 15s infinite alternate
}

@keyframes move1 {
  0% {
    transform: translate(0, 0) scale(1)
  }
  to {
    transform: translate(50px, 100px) scale(1.2)
  }
}

@keyframes move2 {
  0% {
    transform: translate(0, 0) scale(1.2)
  }
  to {
    transform: translate(-100px, -50px) scale(1)
  }
}

@keyframes move3 {
  0% {
    transform: translate(0, 0)
  }
  to {
    transform: translate(50px, -50px)
  }
}

.hero-content {
  z-index: 1
}

.hero h1 {
  font-size: 5rem;
  line-height: 1.1;
  max-width: 800px;
  margin: 0 auto 20px
}

.hero .subtitle {
  font-size: 1.25rem;
  color: #88898f;
  max-width: 600px;
  margin: 0 auto 40px
}

.search-container {
  position: relative;
  max-width: 700px;
  margin: 0 auto
}

.search-input {
  width: 100%;
  padding: 20px 20px 20px 60px;
  font-size: 1.1rem;
  background: rgba(26, 26, 30, .6);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 12px;
  color: #eaebeb;
  outline: 0;
  transition: border-color .3s ease, box-shadow .3s ease
}

.search-input:focus {
  border-color: #00f2a9;
  box-shadow: 0 0 25px rgba(0, 242, 169, .2)
}

.search-icon {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: #88898f
}

#ajax-search-results {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  right: 0;
  background: #1a1a1e;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 12px;
  padding: 15px;
  text-align: left;
  display: none;
  z-index: 10
}

.search-results-list {
  list-style: none;
  margin: 0;
  padding: 0
}

.search-results-list li a {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 12px 15px;
  border-radius: 8px;
  transition: background-color .2s ease
}

.search-results-list li a:hover {
  background-color: rgba(255, 255, 255, .05)
}

.search-results-list li a i {
  font-size: 1.5rem;
  color: #00f2a9
}

.search-results-list li a span {
  font-weight: 500
}

.search-error,
.search-loading,
.search-no-results {
  padding: 20px;
  color: #88898f
}

.tool-page-container {
  max-width: 1100px
}

.page-header {
  padding-top: 60px
}

.breadcrumbs {
  color: #88898f;
  margin-bottom: 20px;
  font-size: .9rem
}

.breadcrumbs a:hover {
  color: #eaebeb
}

.breadcrumbs span {
  margin: 0 8px
}

.title-block {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  margin-bottom: 40px;
}

.title-block h1 {
  font-size: 3.2rem;
  line-height: 1.2;
}

@media (max-width: 768px) {
  .title-block {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}

.title-block h1 {
  font-size: 3.2rem;
  line-height: 1.2
}

.meta-actions {
  display: flex;
  align-items: center;
  gap: 20px
}

.rating-summary {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600
}

.rating-summary i {
  font-size: 1.2rem;
  color: #f3ca50
}

.rating-summary .reviews-count {
  color: #88898f;
  font-weight: 400;
  font-size: .9rem
}

.btn-favorite {
  background: rgba(26, 26, 30, .6);
  border: 1px solid rgba(255, 255, 255, .1);
  color: #eaebeb;
  padding: 10px 20px
}

.btn-favorite:hover {
  border-color: #00f2a9
}

.btn-favorite.active {
  background: #00f2a9;
  color: #0d0d10;
  border-color: #00f2a9
}

.btn-favorite.active i {
  color: #0d0d10
}

.tool-area-wrapper {
  position: relative;
  padding: 2px;
  border-radius: 20px;
  background: linear-gradient(90deg, #00f2a9, #00c2f2);
  margin-bottom: 80px
}

.tool-area {
  background: #111114;
  padding: 40px;
  border-radius: 18px
}

.instructions-content p,
.instructions-content ul,
.instructions-content h3 {
  margin-bottom: 1.2em;
}

.instructions-content ol {
  list-style: none;
  counter-reset: step-counter;
  padding-left: 0;
}

.instructions-content ol li {
  counter-increment: step-counter;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  font-size: 1.1rem;
  line-height: 1.7;
  color: #88898f;
}

.instructions-content ol li:not(:last-child) {
  margin-bottom: 20px;
}

.instructions-content ol li::before {
  content: counter(step-counter);
  min-width: 36px;
  height: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background: linear-gradient(90deg, #00f2a9, #00c2f2);
  color: #0d0d10;
  font-weight: 700;
  font-size: 1.1rem;
  font-family: "Clash Display", sans-serif;
  flex-shrink: 0;
}

.related-tools-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px
}

.related-tools-grid .tool-card {
  flex-basis: auto
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  background-color: #0d0d10;
  color: #eaebeb;
  font-family: Inter, sans-serif;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale
}

a {
  text-decoration: none;
  color: inherit;
  transition: color .3s ease
}

ul {
  list-style: none
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: Clash Display, sans-serif;
  font-weight: 600
}

@media (max-width:768px) {
  .hero h1 {
    font-size: 3rem
  }
  .archive-title {
    font-size: 2.5rem
  }
  .single-post__title {
    font-size: 2.2rem
  }
  .section-title {
    font-size: 2rem
  }
}

@media (max-width:576px) {
  .hero h1 {
    font-size: 2.5rem
  }
  .header .header-actions .btn {
    font-size: 0;
    padding: 10px;
    width: 44px;
    height: 44px
  }
  .header .header-actions .btn i {
    margin-right: 0;
    font-size: 1.5rem
  }
}

.btn {
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: .9rem;
  cursor: pointer;
  transition: transform .3s ease, box-shadow .3s ease;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 8px
}

.btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(0, 242, 169, .3)
}

.btn-gradient {
  background: linear-gradient(90deg, #00f2a9, #00c2f2);
  color: #0d0d10
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px
}

.category-card {
  background: rgba(26, 26, 30, .6);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 16px;
  padding: 30px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform .3s ease, border-color .3s ease
}

.category-card:hover {
  transform: translateY(-10px);
  border-color: #00f2a9
}

.category-card .card-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  background: linear-gradient(90deg, #00f2a9, #00c2f2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: transform .3s ease
}

.category-card:hover .card-icon {
  transform: scale(1.1)
}

.category-card h3 {
  font-size: 1.5rem;
  margin-bottom: 10px
}

.category-card .tool-count {
  color: #88898f;
  font-size: .9rem
}

.tools-carousel {
  display: flex;
  gap: 25px;
  padding-bottom: 20px;
  overflow-x: auto
}

.tools-carousel::-webkit-scrollbar {
  height: 8px
}

.tools-carousel::-webkit-scrollbar-track {
  background: rgba(26, 26, 30, .6);
  border-radius: 4px
}

.tools-carousel::-webkit-scrollbar-thumb {
  background: linear-gradient(90deg, #00f2a9, #00c2f2);
  border-radius: 4px
}

.tool-card {
  flex: 0 0 340px;
  background: rgba(26, 26, 30, .6);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 16px;
  padding: 25px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  transition: transform .3s ease, box-shadow .3s ease
}

.tool-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, .3)
}

.tool-card .card-header {
  display: flex;
  justify-content: space-between;
  align-items: center
}

.tool-card .card-type-icon {
  font-size: 1.5rem;
  color: #00f2a9
}

.tool-card .card-favorite-btn {
  font-size: 1.3rem;
  color: #88898f;
  cursor: pointer;
  transition: color .3s ease, transform .3s ease
}

.tool-card .card-favorite-btn:hover {
  color: #00f2a9;
  transform: scale(1.2)
}

.tool-card .card-favorite-btn.active {
  color: #00f2a9
}

.tool-card .card-body h4 {
  font-size: 1.25rem
}

.tool-card .card-body p {
  color: #88898f;
  font-size: .95rem;
  line-height: 1.5
}

.tool-card .card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto
}

.tool-card .card-rating {
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 600
}

.tool-card .card-rating i {
  color: #f3ca50
}

.tool-card .card-rating .no-rating {
  font-size: .9em;
  font-weight: 400;
  color: #88898f
}

.tool-card .card-tags {
  display: flex;
  gap: 8px
}

.tool-card .tag {
  background-color: rgba(255, 255, 255, .05);
  padding: 4px 10px;
  border-radius: 20px;
  font-size: .75rem;
  color: #88898f
}