.policy,
.success {
  padding-block: 110px 60px !important;
  min-height: 92vh;
}

@media (max-width: 768px) {
  .policy {
    padding-block: 130px 60px !important;
  }
}

.success__text {
  margin-bottom: 27px;
}

.success__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 600px;
  margin: 0 auto;
}

.success__btns {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.policy__title,
.success__title {
  font-weight: 700;
  font-size: 35px;
  line-height: 110%;
  letter-spacing: 0%;
  vertical-align: middle;
  margin-bottom: 28px;
  color: #ffffff;
}

.policy__text {
  font-weight: 400;
  font-size: 18px;
  line-height: 130%;
  letter-spacing: 0%;
  color: #ffffff;
}

.policy__title {
  color: #ffffff;
}

.policy__text h2 {
  text-align: left;
  font-size: 21px;
}

.policy__text ul {
  padding-left: 20px;
}

.policy__text h2,
.policy__text p,
.policy__text ul {
  margin-bottom: 22px;
}

.policy__link {
  color: #fff;
}

h1,
h2,
h3,
h4 {
  word-break: break-word;
}

html {
  scroll-behavior: smooth;
}

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

/* Import Fonts */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap");

@font-face {
  font-family: "NFC DRAKKEN";
  src: url(/wp-content/themes/blenorith.com/fonts/NFC-DRAKKEN-Regular.ttf) format("truetype");
  font-weight: 700;
}

@font-face {
  font-family: "TT Firs Neue";
  src: url(/wp-content/themes/blenorith.com/fonts/TT-Firs-Neue-Trial-Regular.ttf) format("truetype");
  font-weight: 400;
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "TT Firs Neue", sans-serif;
  background: #010101;
  color: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* Typography */
h1,
h2,
h3,
h4 {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.highlight {
  background: linear-gradient(180deg, #fef102 0%, #ffa108 100%);
  -webkit-background-clip: text; /* для Chrome, Safari */
  -webkit-text-fill-color: transparent; /* чтобы текст стал прозрачным */
  background-clip: text; /* для Firefox */
  color: transparent; /* запасной вариант */
  position: relative;
}

.highlight::after {
  content: "";
  position: absolute;
  width: 84px;
  height: 58px;
  top: -18px;
  right: -25px;
  background-image: url(/wp-content/themes/blenorith.com/img/decor-title.png);
  background-size: contain;
  animation: sparkle 2s infinite;
}

@media (max-width: 768px) {
  .highlight::after {
    top: -28px;
  }
}

@keyframes sparkle {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.1);
  }
}

/* Cookie Popup */
.cookie-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  visibility: visible;
  transition: all 0.3s ease;
}

.cookie-popup.hidden {
  opacity: 0;
  visibility: hidden;
}

.cookie-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
}

.cookie-content {
  background: #1a1a1a;
  border: 2px solid #ffd700;
  border-radius: 15px;
  padding: 40px;
  max-width: 500px;
  width: 90%;
  position: relative;
  z-index: 10001;
}

.cookie-content h2 {
  color: #ffd700;
  font-size: 2rem;
  margin-bottom: 20px;
}

.cookie-content p {
  color: #cccccc;
  margin-bottom: 30px;
  line-height: 1.6;
}

.cookie-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.cookie-accept,
.cookie-refuse {
  padding: 12px 30px;
  border: none;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  flex: 1;
  min-width: 150px;
}

.cookie-accept {
  background: #ffd700;
  color: #000;
}

.cookie-accept:hover {
  background: #ffed4a;
  transform: translateY(-2px);
}

.cookie-refuse {
  background: transparent;
  color: #fff;
  border: 2px solid #666;
}

.cookie-refuse:hover {
  border-color: #ffd700;
  color: #ffd700;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #010101;
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 1rem 0;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffd700;
  text-decoration: none;
}

.nav-icon {
  font-size: 1.8rem;
  color: #ffd700;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-link {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: #ffd700;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #ffd700;
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.btn-play {
  background: linear-gradient(180deg, #fef102 0%, #ffa108 100%);
  -webkit-background-clip: text; /* для Chrome, Safari */
  -webkit-text-fill-color: transparent; /* чтобы текст стал прозрачным */
  background-clip: text; /* для Firefox */
  color: transparent; /* запасной вариант */
  text-decoration: none;
  padding: 12px 45px;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid #ffd700;
}

.btn-play:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #ffd700;
  transition: all 0.3s ease;
}

/* Hero Section */
.hero {
  padding: 140px 0 80px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-text h1 {
  font-size: 4rem;
  margin-bottom: 2rem;
  line-height: 1.1;
  text-align: left;
}

.btn-explore {
  font-family: "NFC DRAKKEN";
  display: inline-block;
  background: linear-gradient(135.73deg, #fef102 0%, #ffa108 98.76%);
  color: #ffffff;
  text-decoration: none;
  padding: 15px 35px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: 2px solid #ffd700;
  margin-top: 1rem;
  box-shadow: 0px 16px 36px 0px #ffe50040;
  box-shadow: 0px 4px 8px 0px #ffffff40 inset;
  position: relative;
}

.btn-explore:hover {
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.5);
}

.btn-explore::after {
  content: "";
  position: absolute;
  top: 6px; /* зсув вниз */
  left: 6px; /* зсув вправо */
  width: 100%;
  height: 100%;
  border-radius: 8px;
  border: 2px solid #ffa108;
  z-index: -100; /* щоб було позаду кнопки */
}

.hero-character {
  display: flex;
  justify-content: center;
}

.character-card {
  display: flex;
  justify-content: flex-end;
  position: relative;
  padding: 30px;
  border-radius: 20px;
  transform: perspective(1000px) rotateY(-10deg) rotateX(5deg);
  transition: all 0.3s ease;
}

@media (max-width: 768px) {
  .character-card {
    justify-content: center;
  }
}

.character-card:hover {
  transform: perspective(1000px) rotateY(-5deg) rotateX(2deg) translateY(-10px);
}

.character-img {
  object-fit: contain;
  border-radius: 15px;
}

/* Stats Section */
.stats {
  padding: 80px 0;
  position: relative;
}

.stats::before {
  top: -25px;
}

.stats::after {
  bottom: -25px;
  transform: scaleY(-1);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  align-items: center;
}

.stat-item {
  text-align: center;
  background: linear-gradient(180deg, #fef102 0%, #ffa108 100%);
  -webkit-background-clip: text; /* для Chrome, Safari */
  -webkit-text-fill-color: transparent; /* чтобы текст стал прозрачным */
  background-clip: text; /* для Firefox */
  color: transparent; /* запасной вариант */
}

.stat-icon {
  width: 80px;
  height: 80px;
  background: #000;
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat-icon img {
  width: 40px;
  height: 40px;
  filter: invert(1);
}

.stat-number {
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 1.2rem;
  font-weight: 500;
}

/* About Section */
.about {
  padding: 100px 0;
  text-align: center;
}

.about h2 {
  margin-bottom: 60px;
}

.about-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 20px;
  padding: 50px;
  backdrop-filter: blur(10px);
  max-width: 800px;
  margin: 0 auto;
}

.about-card h3 {
  color: #fff;
  font-family: "NFC DRAKKEN";
  margin-bottom: 30px;
  font-size: 2rem;
}

.about-card p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #cccccc;
}

/* Worlds Section */
.worlds {
  padding: 100px 0;
}

.worlds h2 {
  text-align: center;
  margin-bottom: 40px;
}

.worlds-description {
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);

  padding: 50px;
  text-align: center;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #cccccc;
  max-width: 900px;
  margin: 0 auto 80px;
}

.worlds-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(480px, 1fr));
  gap: 40px;
}

.world-card {
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.world-card:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 215, 0, 0.5);
  box-shadow: 0 20px 40px rgba(255, 215, 0, 0.1);
}

.world-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.world-card h3 {
  color: #ffd700;
  margin-bottom: 20px;
}

.world-card p {
  color: #cccccc;
  line-height: 1.7;
}

/* Community Section */
.community {
  padding: 100px 0;
}

.community-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.community h2 {
  margin-bottom: 30px;
  text-align: left;
}

.community p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #cccccc;
  margin-bottom: 40px;
}

.btn-join {
  display: inline-block;
  background: linear-gradient(45deg, #ffd700, #ffed4a);
  color: #000;
  text-decoration: none;
  padding: 15px 35px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: 2px solid #ffd700;
}

.btn-join:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.5);
}

.community-character {
  display: flex;
  justify-content: center;
}

/* Form Section */
.form-section {
  padding: 80px 0;
  background: rgba(255, 215, 0, 0.1);
}

.form-section h2 {
  text-align: center;
  margin-bottom: 40px;
}

.join-form {
  max-width: 400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group input {
  width: 100%;
  padding: 15px 20px;
  border: 2px solid rgba(255, 215, 0, 0.3);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input:focus {
  outline: none;
  border-color: #ffd700;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.form-group input::placeholder {
  color: #999;
}

.btn-submit {
  padding: 15px 30px;
  background: linear-gradient(45deg, #ffd700, #ffed4a);
  color: #000;
  border: none;
  border-radius: 10px;
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

/* Footer */
.footer {
  padding: 60px 0 20px;
  border-top: 1px solid rgba(255, 215, 0, 0.2);
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 40px;
}

.footer-brand .brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 20px;
}

.footer-brand p {
  color: #cccccc;
  line-height: 1.7;
  margin-bottom: 30px;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-link {
  width: 40px;
  height: 40px;

  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.social-link:hover {
  transform: translateY(-2px);
}

.social-link img {
  width: 32px;
  height: 32px;
}

.footer-menu h4,
.footer-contact h4 {
  color: #ffd700;
  margin-bottom: 20px;
  font-size: 1.2rem;
}

.footer-menu ul {
  list-style: none;
}

.footer-menu li {
  margin-bottom: 10px;
}

.footer-menu a {
  color: #cccccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-menu a:hover {
  color: #ffd700;
}

.footer-contact address {
  color: #cccccc;
  font-style: normal;
  line-height: 1.7;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 215, 0, 0.2);
  padding-top: 20px;
}

.footer-links {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.legal-links {
  display: flex;
  gap: 30px;
}

.legal-links a {
  color: #cccccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.legal-links a:hover {
  color: #ffd700;
}

/* Games Page Styles */
.games-section {
  padding: 140px 0 80px;
  min-height: 100vh;
}

.page-title {
  text-align: center;
  font-size: 4rem;
  margin-bottom: 80px;
  color: #ffd700;
  position: relative;
}

.page-title::after {
  content: "✦";
  position: absolute;
  top: -10px;
  right: 50%;
  transform: translateX(50%);
  font-size: 2rem;
  color: #ffd700;
  animation: sparkle 2s infinite;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.game-card {
  transition: all 0.3s ease;
}

.game-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(255, 215, 0, 0.1);
}

.game-image {
  position: relative;
  padding: 20px;
  transform: perspective(800px) rotateX(5deg);
}

.game-image img {
  width: 100%;

  object-fit: cover;
  border-radius: 15px;
}

.game-label {
  position: absolute;
  top: 30px;
  right: 30px;
  background: rgba(0, 0, 0, 0.8);
  color: #ffd700;
  padding: 5px 15px;
  border-radius: 15px;
  font-weight: 600;
  font-size: 0.9rem;
}

.game-link {
  display: block;
  padding: 20px;
  text-align: center;
  color: #ffd700;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.game-link:hover {
  background: rgba(255, 215, 0, 0.1);
  color: #ffed4a;
}

/* Game Page Styles */
.game-hero {
  padding: 140px 0 80px;
  min-height: 80vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.game-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    ellipse at center,
    rgba(255, 215, 0, 0.1) 0%,
    transparent 70%
  );
}

.game-hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.game-info h1 {
  font-size: 4rem;
  margin-bottom: 2rem;
  color: #ffd700;
}

.game-info p {
  border: 1px solid rgba(203, 254, 0, 0.5);
  border-radius: 12px;
  padding: 20px;
  font-size: 1.2rem;
  line-height: 1.8;
  color: #cccccc;
  margin-bottom: 40px;
}

.game-stats {
  padding: 40px 0;
  background: linear-gradient(90deg, #ffd700 0%, #ffed4a 100%);
}

.game-stats .stats-grid {
  grid-template-columns: repeat(2, 1fr);
  max-width: 600px;
  margin: 0 auto;
}

.game-advantages {
  padding: 100px 0;
}

.game-advantages h2 {
  text-align: center;
  margin-bottom: 80px;
  font-size: 3rem;
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.advantage-item {
  text-align: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 20px;
  padding: 40px 30px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.advantage-item:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 215, 0, 0.5);
  box-shadow: 0 20px 40px rgba(255, 215, 0, 0.1);
}

.advantage-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(45deg, #ffd700, #ffed4a);
  border-radius: 20px;
  margin: 0 auto 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.advantage-icon img {
  width: 40px;
  height: 40px;
  filter: brightness(0);
}

.advantage-item h3 {
  background: linear-gradient(180deg, #fef102 0%, #ffa108 100%);
  -webkit-background-clip: text; /* для Chrome, Safari */
  -webkit-text-fill-color: transparent; /* чтобы текст стал прозрачным */
  background-clip: text; /* для Firefox */
  color: transparent; /* запасной вариант */
  margin-bottom: 20px;
}

.advantage-item p {
  color: #cccccc;
  line-height: 1.7;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 2rem;
    transition: left 0.3s ease;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-menu li {
    margin: 1rem 0;
  }

  .hero-content,
  .community-content,
  .game-hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero-text h1,
  .game-info h1 {
    font-size: 2.5rem;
  }

  .character-card {
    transform: none;
  }

  .character-img {
    width: 150px;
    height: 200px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .worlds-grid,
  .advantages-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .footer-links {
    flex-direction: column;
    text-align: center;
  }

  .legal-links {
    flex-direction: column;
    gap: 15px;
  }

  .games-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .page-title {
    font-size: 2.5rem;
  }

  .cookie-buttons {
    flex-direction: column;
  }

  .cookie-content {
    padding: 30px 20px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.8rem;
  }

  .hero {
    padding: 120px 0 60px;
  }

  .about-card,
  .world-card,
  .advantage-item {
    padding: 30px 20px;
  }

  .stat-number {
    font-size: 2rem;
  }

  .game-stats .stats-grid {
    grid-template-columns: 1fr;
  }
}

/* Utility Classes */
.hidden {
  display: none;
}

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

.mt-1 {
  margin-top: 1rem;
}
.mt-2 {
  margin-top: 2rem;
}
.mb-1 {
  margin-bottom: 1rem;
}
.mb-2 {
  margin-bottom: 2rem;
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Loading Animation */
.loading {
  position: relative;
  overflow: hidden;
}

.loading::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 215, 0, 0.1),
    transparent
  );
  animation: loading 1.5s infinite;
}

@keyframes loading {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

.section-title {
  font-family: "NFC DRAKKEN";
  font-weight: 700;
  font-style: Bold;
  font-size: 60px;
  line-height: 130%;
  letter-spacing: 0%;
  text-align: center;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 32px;
    line-height: 100%;
  }
}

.line {
  min-height: 250px;
  background-image: url(/wp-content/themes/blenorith.com/img/bg-line.png);
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  position: relative;
  padding-top: 75px;
}

.line__bottom {
  display: flex;
  justify-content: space-evenly;
}

.line__decor {
  width: 156px;
  height: auto;
  object-fit: contain;
}

@media (max-width: 768px) {
  .line__decor {
    width: 48px;
  }
}

.line__content {
  padding-block: 18px;
  display: flex;
  align-items: center;
  gap: 40px;
  background: linear-gradient(180deg, #fef102 0%, #ffa108 100%);
}

.line__content span {
  font-family: "NFC DRAKKEN";
  font-weight: 400;
  font-style: Regular;
  font-size: 11.7px;
  line-height: 151%;
  letter-spacing: 0%;
  text-align: center;
  color: #fff;
}

@media (max-width: 768px) {
  .line {
    padding-top: 30px;
  }

  .line__decor {
    width: 48px;
  }

  .line__content span {
    font-size: 8px;
  }

  .line__content {
    padding-block: 8px;
  }
}
