/* Стилі з наданого файлу, але змінені кольори на сині та жовті */

html {
  scroll-padding-top: 100px;
  scroll-behavior: smooth;
}

:root {
  --dark-blue: #0a1429;
  --medium-blue: #13203b;
  --light-blue: #1d2e4d;
  --accent-blue: #2a4a7a;
  --yellow: #ffd700;
  --light-yellow: #ffeb3b;
  --neon-yellow: #ffff00;
  --text-color: #e0e0e0;
  --highlight-color: #ff3366;
  --gradient: linear-gradient(
    135deg,
    var(--dark-blue) 0%,
    var(--medium-blue) 100%
  );
  --neon-glow:
    0 0 10px rgba(255, 215, 0, 0.7), 0 0 20px rgba(255, 215, 0, 0.5),
    0 0 30px rgba(255, 215, 0, 0.3);
}

/* Додаємо в кінець CSS файлу */

.hruk-details {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

.quantity {
  color: var(--yellow);
  font-family: Orbitron, sans-serif;
  font-weight: 600;
  font-size: 1rem;
}

/* Заміна всіх зелених кольорів на жовті */
.logo-icon,
.category-badge,
.date-info i,
.plugin-features li i,
.version-badge,
.plugin-content h3,
.feature-card h3,
.footer-column h3,
.footer-links a i,
.social-links a:hover,
.auth-btn.login:hover,
.btn,
.btn-outline:hover,
.highlight-text,
.hero h2,
.section-title:after,
.footer-column h3:after,
.feature-icon,
.plugin-detail-icon,
.price_fx,
.plugin-detail-title h2,
.plugin-features h3,
.plugin-info h3,
.plugin-purchase h3,
.requirements h4,
.requirements li i {
  color: var(--yellow) !important;
}

/* Градієнти з жовтими кольорами */
.logo h1,
.hero h2,
.highlight-text,
.price_fx,
.feature-icon,
.plugin-detail-icon {
  background: linear-gradient(
    to right,
    var(--yellow),
    var(--neon-yellow)
  ) !important;
  -webkit-background-clip: text !important;
}

nav ul li a:after,
.section-title:after,
.footer-column h3:after,
.highlight-text::after {
  background: linear-gradient(
    to right,
    var(--yellow),
    var(--neon-yellow)
  ) !important;
}

.btn,
.auth-btn.signup {
  background: linear-gradient(
    to right,
    var(--yellow),
    var(--light-yellow)
  ) !important;
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4) !important;
}

.btn:hover,
.btn-tg:hover,
.auth-btn.signup:hover {
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.6) !important;
}

.bg-circle {
  background: radial-gradient(
    circle,
    rgba(255, 215, 0, 0.1) 0,
    transparent 70%
  ) !important;
}

.plugin-card:hover,
.feature-card:hover {
  border-color: rgba(255, 215, 0, 0.4) !important;
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.5),
    0 0 30px rgba(255, 215, 0, 0.3) !important;
}

.category-badge {
  background: rgba(255, 215, 0, 0.9) !important;
  color: var(--dark-blue) !important;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3) !important;
}

/* Залишаємо решту стилів з наданого файлу без змін */
.auth-buttons,
.logo,
.hruk-card,
nav ul {
  display: flex;
}

.auth-btn,
header,
nav ul li a {
  transition: 0.3s;
}

.auth-btn,
.logo h1,
nav ul li a {
  letter-spacing: 1px;
  font-family: Orbitron, sans-serif;
}

.auth-btn,
.hero h2,
.highlight-text,
.logo h1,
nav ul li a {
  font-family: Orbitron, sans-serif;
}

.hruk-card,
.version-badge,
header {
  backdrop-filter: blur(10px);
}

.footer-links,
.plugin-features ul,
nav ul {
  list-style: none;
}

.feature-icon,
.hero h2,
.highlight-text,
.logo h1,
.plugin-detail-icon,
.price_fx {
  -webkit-text-fill-color: transparent;
}

footer,
header {
  padding: 20px 0;
}

.auth-btn,
.btn,
.footer-links a,
.social-links a,
nav ul li a {
  text-decoration: none;
}

.copyright,
.feature-card,
.hero,
.section-title {
  text-align: center;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--dark-blue);
  color: var(--text-color);
  line-height: 1.6;
  overflow-x: hidden;
  font-family: "Exo 2", sans-serif;
}

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

.bg-animation {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

.bg-circle {
  position: absolute;
  border-radius: 50%;
  animation: 15s linear infinite float;
}

.bg-circle:first-child {
  width: 300px;
  height: 300px;
  top: 10%;
  left: 5%;
  animation-delay: 0s;
}

.bg-circle:nth-child(2) {
  width: 200px;
  height: 200px;
  top: 60%;
  left: 80%;
  animation-delay: -5s;
}

.bg-circle:nth-child(3) {
  width: 400px;
  height: 400px;
  top: 30%;
  left: 60%;
  animation-delay: -10s;
}

.btn:before,
.login:before,
.signup:before {
  content: "";
  left: -100%;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  transition: 0.5s;
}

@keyframes float {
  0% {
    transform: translate(0, 0) rotate(0);
  }

  33% {
    transform: translate(30px, -50px) rotate(120deg);
  }

  66% {
    transform: translate(-20px, 20px) rotate(240deg);
  }

  100% {
    transform: translate(0, 0) rotate(360deg);
  }
}

header {
  background-color: rgba(10, 20, 41, 0.85);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

header.scrolled {
  padding: 15px 0;
  background-color: rgba(10, 20, 41, 0.95);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.header-content,
.hruk-price {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  align-items: center;
  gap: 12px;
}

.logo-icon {
  font-size: 28px;
  text-shadow: var(--neon-glow);
  animation: 2s infinite pulse;
}

.login,
nav ul li a {
  color: var(--text-color);
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }
}

.logo h1 {
  font-size: 26px;
  font-weight: 700;
}

.hero h2,
nav ul li a:after {
  background: linear-gradient(to right, var(--yellow), var(--neon-yellow));
}

nav ul li {
  margin-left: 30px;
  position: relative;
}

nav ul li a {
  font-weight: 500;
  position: relative;
  padding: 8px 0;
  font-size: 15px;
}

nav ul li a:after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  transition: width 0.4s cubic-bezier(0.65, 0, 0.35, 1);
  box-shadow: var(--neon-glow);
}

nav ul li a:hover {
  color: var(--yellow);
  text-shadow: 0 0 8px rgba(255, 215, 0, 0.7);
}

nav ul li a:hover:after {
  width: 100%;
}

.auth-buttons {
  gap: 15px;
}

.btn,
.highlight-container,
.highlight-text {
  display: inline-block;
}

.auth-btn {
  padding: 10px 24px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 14px;
}

.login {
  border: 1px solid var(--light-blue);
  position: relative;
  overflow: hidden;
}

.btn,
.signup {
  color: var(--dark-blue);
  position: relative;
  overflow: hidden;
}

.login:before {
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 215, 0, 0.2),
    transparent
  );
}

.login:hover {
  background-color: rgba(29, 46, 77, 0.5);
  border-color: var(--yellow);
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}

.btn:hover:before,
.login:hover:before,
.signup:hover:before,
.social-links a:hover:before {
  left: 100%;
}

.signup {
  background: linear-gradient(to right, var(--yellow), var(--light-yellow));
}

.btn:before,
.signup:before {
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
}

.feature-card:before,
.hruk-card:before {
  opacity: 0;
  transition: opacity 0.5s;
  content: "";
}

.signup:hover {
  transform: translateY(-3px);
}

.hero {
  padding: 300px 0;
  position: relative;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-button {
  margin-top: 75px;
}

.hero h2 {
  font-size: 4rem;
  margin-bottom: 25px;
  font-weight: 800;
  -webkit-background-clip: text;
  text-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  letter-spacing: 2px;
  line-height: 1.2;
}

.hero p {
  font-size: 1.3rem;
  max-width: 700px;
  margin: 0 auto 40px;
  color: #ccc;
  font-weight: 300;
}

.highlight-container {
  position: relative;
  margin: 50px 0;
}

.highlight-text {
  font-size: 6rem;
  font-weight: 900;
  background: linear-gradient(
    to right,
    var(--yellow),
    var(--neon-yellow),
    var(--light-yellow)
  );
  -webkit-background-clip: text;
  text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
  letter-spacing: 4px;
  position: relative;
  animation: 2s infinite alternate textGlow;
}

.btn,
.category-badge,
.price_fx,
.section-title {
  font-weight: 700;
  font-family: Orbitron, sans-serif;
}

.highlight-text::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 6px;
  bottom: -25px;
  left: 0;
  background: linear-gradient(
    90deg,
    transparent 0,
    var(--yellow) 20%,
    var(--neon-yellow) 50%,
    var(--light-yellow) 80%,
    transparent 100%
  );
  border-radius: 3px;
  box-shadow:
    0 0 15px rgba(255, 215, 0, 0.7),
    0 0 30px rgba(255, 215, 0, 0.4);
}



.feed-wrapper {
  position: relative;
  max-width: 680px;
  margin: 0 auto;
  background: linear-gradient(145deg, rgba(19, 32, 59, 0.9), rgba(10, 20, 41, 0.95));
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 16px;
  padding: 24px 20px 16px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 215, 0, 0.05);
}

.feed-live-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: Orbitron, sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: #ff4444;
  background: rgba(255, 68, 68, 0.12);
  border: 1px solid rgba(255, 68, 68, 0.3);
  border-radius: 20px;
  padding: 4px 12px;
  margin-bottom: 16px;
}

.feed-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ff4444;
  animation: feedPulse 1.4s ease-in-out infinite;
}

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

.feed-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-height: 460px;
  overflow-y: auto;
  padding-right: 4px;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 215, 0, 0.3) transparent;
}

.feed-list::-webkit-scrollbar { width: 4px; }
.feed-list::-webkit-scrollbar-track { background: transparent; }
.feed-list::-webkit-scrollbar-thumb {
  background: rgba(255, 215, 0, 0.3);
  border-radius: 4px;
}

.feed-placeholder {
  text-align: center;
  color: #666;
  font-size: 0.9rem;
  padding: 30px 0;
}

.feed-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 215, 0, 0.1);
  border-radius: 10px;
  padding: 12px 16px;
  transition: border-color 0.3s;
}

.feed-card:hover {
  border-color: rgba(255, 215, 0, 0.35);
}

.feed-card--new {
  animation: feedSlideIn 0.4s ease forwards, feedGlow 2.5s ease forwards;
  border-color: rgba(255, 215, 0, 0.5) !important;
}

@keyframes feedSlideIn {
  from { opacity: 0; transform: translateY(-12px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes feedGlow {
  0%   { box-shadow: 0 0 0 rgba(255, 215, 0, 0); }
  20%  { box-shadow: 0 0 18px rgba(255, 215, 0, 0.35); }
  100% { box-shadow: 0 0 0 rgba(255, 215, 0, 0); }
}

.feed-card-icon {
  font-size: 1.4rem;
  color: var(--yellow);
  flex-shrink: 0;
  width: 36px;
  text-align: center;
}

.feed-card-body {
  flex: 1;
  min-width: 0;
}

.feed-card-nick {
  font-family: Orbitron, sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: #e0e0e0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.feed-card-qty {
  font-size: 0.78rem;
  color: #888;
  margin-top: 2px;
}

.feed-card-right {
  text-align: right;
  flex-shrink: 0;
}

.feed-card-sum {
  font-family: Orbitron, sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--yellow);
}

.feed-card-time {
  font-size: 0.72rem;
  color: #666;
  margin-top: 2px;
}

@keyframes textGlow {
  0% {
    text-shadow:
      0 0 10px rgba(255, 215, 0, 0.5),
      0 0 20px rgba(255, 215, 0, 0.3);
  }

  100% {
    text-shadow:
      0 0 15px rgba(255, 215, 0, 0.8),
      0 0 30px rgba(255, 215, 0, 0.5),
      0 0 40px rgba(255, 215, 0, 0.3);
  }
}

.btn {
  padding: 18px 45px;
  border-radius: 30px;
  transition: 0.4s;
  font-size: 16px;
  letter-spacing: 1px;
  border: none;
  cursor: pointer;
  color: var(--medium-blue) !important;
}

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

.btn-outline {
  background: 0 0;
  border: 2px solid var(--yellow);
  color: var(--yellow);
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}

.btn-outline:hover {
  background: rgba(255, 215, 0, 0.1);
}

.hruk {
  position: relative;
  scroll-margin-top: 100px;
}

.section-title {
  margin-bottom: 80px;
  font-size: 3.2rem;
  position: relative;
}

.section-title:after {
  content: "";
  position: absolute;
  width: 120px;
  height: 5px;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 3px;
}

.hruk-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 40px;
  position: relative;
  z-index: 1;
}

.hruk-card {
  background: linear-gradient(
    145deg,
    rgba(29, 46, 77, 0.7),
    rgba(19, 32, 59, 0.9)
  );
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
  transition: 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(255, 215, 0, 0.15);
  position: relative;
  cursor: pointer;
  flex-direction: column;
  height: 100%;
}

.date-info,
.hruk-image {
  display: flex;
  align-items: center;
}

.hruk-card:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), transparent);
}

.hruk-card:hover {
  transform: translateY(-15px) scale(1.03);
}

.feature-card:hover:before,
.hruk-card:hover:before {
  opacity: 1;
}

.hruk-image {
  height: 180px;
  background: linear-gradient(135deg, var(--accent-blue), var(--dark-blue));
  justify-content: center;
  font-size: 4rem;
  position: relative;
  overflow: hidden;
}

.category-badge,
.version-badge {
  font-size: 0.8rem;
  position: absolute;
}

.hruk-image:after {
  content: "";
  position: absolute;
  width: 200%;
  height: 60px;
  background: rgba(255, 255, 255, 0.1);
  transform: rotate(-45deg) translateY(-150px);
  animation: 4s infinite shine;
}

@keyframes shine {
  0% {
    transform: rotate(-45deg) translateY(-150px);
  }

  100%,
  20% {
    transform: rotate(-45deg) translateY(350px);
  }
}

.hruk-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.hruk-image i {
  transition: transform 0.5s;
}

.hruk-card:hover .hruk-image i {
  transform: scale(1.1) rotate(5deg);
}

.category-badge {
  top: 15px;
  left: 15px;
  padding: 6px 14px;
  border-radius: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.date-info i,
.hruk-content h3,
.plugin-features li i,
.version-badge {
  color: var(--yellow);
}

.version-badge {
  bottom: 15px;
  right: 15px;
  background: rgba(10, 20, 41, 0.8);
  padding: 5px 12px;
  border-radius: 12px;
  font-family: Orbitron, sans-serif;
  border: 1px solid var(--yellow);
}

.date-info {
  gap: 8px;
  color: #aaa;
  font-size: 0.85rem;
  margin-bottom: 15px;
}

.hruk-content h3 {
  margin-bottom: 10px;
  font-size: 1.5rem;
  font-family: Orbitron, sans-serif;
  font-weight: 600;
  line-height: 1.3;
}

.hruk-content p {
  margin-bottom: 25px;
  font-size: 1rem;
  color: #ccc;
  line-height: 1.7;
}

.price_fx {
  font-size: 1.1rem;
}

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 2000;
  overflow-y: hidden;
  backdrop-filter: blur(5px);
  align-items: center;
  justify-content: center;
}

.modal-content {
  background: linear-gradient(145deg, var(--dark-blue), var(--medium-blue));
  margin: 0 auto;
  padding: 0;
  border-radius: 20px;
  width: 90%;
  max-width: 1000px;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 0 50px rgba(255, 215, 0, 0.3);
  border: 1px solid rgba(255, 215, 0, 0.3);
  position: relative;
  animation: 0.5s modalFadeIn;
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.close-modal {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 2rem;
  color: var(--text-color);
  cursor: pointer;
  z-index: 10;
  transition: 0.3s;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}

.feature-card,
.features,
.features-grid,
.footer-column h3,
.social-links a,
footer {
  position: relative;
}

.close-modal:hover {
  color: var(--highlight-color);
  transform: rotate(90deg);
  background: rgba(255, 255, 255, 0.2);
}

.plugin-detail-header {
  padding: 40px 40px 20px;
  border-bottom: 1px solid rgba(255, 215, 0, 0.2);
  display: flex;
  align-items: center;
  gap: 30px;
}

.plugin-detail-icon {
  font-size: 5rem;
}

.plugin-detail-title h2 {
  font-size: 2.5rem;
  font-family: Orbitron, sans-serif;
  margin-bottom: 10px;
}

.plugin-detail-title p {
  color: #ccc;
  font-size: 1.1rem;
}

.plugin-detail-body {
  padding: 30px 0;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
}

.plugin-features h3,
.plugin-info h3,
.plugin-purchase h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  font-family: Orbitron, sans-serif;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.plugin-info p {
  margin-bottom: 20px;
  line-height: 1.7;
  color: #ccc;
}

.plugin-features li {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ccc;
}

.plugin-purchase {
  background: rgba(19, 32, 59, 0.7);
  padding: 25px;
  border-radius: 15px;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.plugin-purchase .price_fx {
  font-size: 2.5rem;
  margin-bottom: 20px;
  text-align: center;
}

.purchase-options {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

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

.requirements h4 {
  margin-bottom: 10px;
  font-family: Orbitron, sans-serif;
}

.requirements ul {
  list-style: none;
  color: #ccc;
}

.requirements li {
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.requirements li i {
  font-size: 0.8rem;
}

.features {
  padding: 120px 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 40px;
  z-index: 1;
}

.feature-card {
  padding: 50px 30px;
  background: linear-gradient(
    145deg,
    rgba(29, 46, 77, 0.7),
    rgba(19, 32, 59, 0.9)
  );
  border-radius: 20px;
  transition: 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(255, 215, 0, 0.15);
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.feature-icon,
.footer-column h3:after {
  background: linear-gradient(to right, var(--yellow), var(--neon-yellow));
}

.feature-card:before {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 215, 0, 0.1) 0,
    transparent 70%
  );
}

.feature-card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow:
    0 15px 30px rgba(0, 0, 0, 0.4),
    0 0 20px rgba(255, 215, 0, 0.2);
}

.feature-icon {
  font-size: 4rem;
  margin-bottom: 30px;
  -webkit-background-clip: text;
  display: inline-block;
  transition: transform 0.5s;
}

.feature-card:hover .feature-icon {
  transform: scale(1.2) rotate(10deg);
}

.feature-card h3 {
  margin-bottom: 20px;
  font-size: 1.5rem;
  font-family: Orbitron, sans-serif;
  font-weight: 600;
}

.feature-card p {
  color: #ccc;
  font-size: 1rem;
  line-height: 1.7;
}

footer {
  background: linear-gradient(to bottom, var(--medium-blue), var(--dark-blue));
}

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

.footer-column h3 {
  margin-bottom: 30px;
  font-size: 1.4rem;
  padding-bottom: 15px;
  font-family: Orbitron, sans-serif;
  font-weight: 600;
}

.footer-column h3:after {
  content: "";
  position: absolute;
  width: 50px;
  height: 3px;
  bottom: 0;
  left: 0;
  border-radius: 2px;
}

.footer-links li {
  margin-bottom: 15px;
}

.footer-links a {
  color: #ccc;
  transition: 0.3s;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
}

.footer-links a i {
  font-size: 0.9rem;
  transition: transform 0.3s;
}

.footer-links a:hover {
  transform: translateX(8px);
}

.footer-links a:hover i {
  transform: scale(1.2);
}

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

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: var(--light-blue);
  border-radius: 50%;
  color: var(--text-color);
  transition: 0.3s;
  overflow: hidden;
}

.social-links a:before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 215, 0, 0.3),
    transparent
  );
  transition: 0.5s;
}

.social-links a:hover {
  transform: translateY(-5px);
}

.copyright {
  color: #888;
  font-size: 0.9rem;
}

.copyright span {
  font-weight: 600;
}

.particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
}

.particle {
  position: absolute;
  background: var(--yellow);
  border-radius: 50%;
  opacity: 0.3;
  animation: 15s linear infinite particleFloat;
}

@keyframes particleFloat {
  0% {
    transform: translateY(100vh) rotate(0);
  }

  100% {
    transform: translateY(-100px) rotate(360deg);
  }
}

/* ── Live Feed ───────────────────────────────────────────────────────────── */

.feed-section {
  scroll-margin-top: 100px;
  padding: 140px 0 80px;
  text-align: center;
}

.feed-wrapper {
  position: relative;
  max-width: 680px;
  margin: 0 auto;
  background: linear-gradient(145deg, rgba(19, 32, 59, 0.9), rgba(10, 20, 41, 0.95));
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 16px;
  padding: 24px 20px 16px;
  text-align: left;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 215, 0, 0.05);
}

.feed-live-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: Orbitron, sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: #ff4444;
  background: rgba(255, 68, 68, 0.12);
  border: 1px solid rgba(255, 68, 68, 0.3);
  border-radius: 20px;
  padding: 4px 12px;
  margin-bottom: 16px;
}

.feed-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ff4444;
  animation: feedPulse 1.4s ease-in-out infinite;
}

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

.feed-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-height: 460px;
  overflow-y: auto;
  padding-right: 4px;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 215, 0, 0.3) transparent;
}

.feed-list::-webkit-scrollbar { width: 4px; }
.feed-list::-webkit-scrollbar-track { background: transparent; }
.feed-list::-webkit-scrollbar-thumb {
  background: rgba(255, 215, 0, 0.3);
  border-radius: 4px;
}

.feed-placeholder {
  text-align: center;
  color: #666;
  font-size: 0.9rem;
  padding: 30px 0;
}

.feed-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 215, 0, 0.1);
  border-radius: 10px;
  padding: 12px 16px;
  transition: border-color 0.3s;
}

.feed-card:hover {
  border-color: rgba(255, 215, 0, 0.35);
}

.feed-card--new {
  animation: feedSlideIn 0.4s ease forwards, feedGlow 2.5s ease forwards;
  border-color: rgba(255, 215, 0, 0.5) !important;
}

@keyframes feedSlideIn {
  from { opacity: 0; transform: translateY(-12px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes feedGlow {
  0%   { box-shadow: 0 0 0 rgba(255, 215, 0, 0); }
  20%  { box-shadow: 0 0 18px rgba(255, 215, 0, 0.35); }
  100% { box-shadow: 0 0 0 rgba(255, 215, 0, 0); }
}

.feed-card-icon {
  font-size: 1.4rem;
  color: var(--yellow);
  flex-shrink: 0;
  width: 36px;
  text-align: center;
}

.feed-card-body {
  flex: 1;
  min-width: 0;
}

.feed-card-nick {
  font-family: Orbitron, sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: #e0e0e0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.feed-card-qty {
  font-size: 0.78rem;
  color: #888;
  margin-top: 2px;
}

.feed-card-right {
  text-align: right;
  flex-shrink: 0;
}

.feed-card-sum {
  font-family: Orbitron, sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--yellow);
}

.feed-card-time {
  font-size: 0.72rem;
  color: #666;
  margin-top: 2px;
}

/* ── end Live Feed ───────────────────────────────────────────────────────── */

/* ── Feed Ticker ─────────────────────────────────────────────────────────── */

.feed-ticker-outer {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(19,32,59,.9), rgba(10,20,41,.95));
  border: 1px solid rgba(255,215,0,.2);
  border-radius: 14px;
  box-shadow: 0 8px 40px rgba(0,0,0,.4);
}

.feed-ticker-outer::before,
.feed-ticker-outer::after {
  content: '';
  position: absolute;
  top: 0;
  width: 80px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.feed-ticker-outer::before {
  left: 0;
  background: linear-gradient(to right, rgba(10,20,41,1), transparent);
}

.feed-ticker-outer::after {
  right: 0;
  background: linear-gradient(to left, rgba(10,20,41,1), transparent);
}

.feed-ticker-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px 10px;
}

.feed-ticker-track-wrap {
  overflow: hidden;
  padding: 0 0 16px;
}

.feed-ticker-track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: tickerScroll 40s linear infinite;
}

.feed-ticker-track:hover {
  animation-play-state: paused;
}

@keyframes tickerScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.feed-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,215,0,.15);
  border-radius: 30px;
  padding: 9px 18px;
  margin: 0 10px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: border-color .3s;
}

.feed-chip:hover     { border-color: rgba(255,215,0,.45); }
.feed-chip-icon      { color: #ffd700; font-size: 1rem; }
.feed-chip-nick      { font-family: Orbitron,sans-serif; font-size: .78rem; font-weight: 600; color: #e0e0e0; }
.feed-chip-sep       { color: rgba(255,215,0,.3); margin: 0 2px; }
.feed-chip-sum       { font-family: Orbitron,sans-serif; font-size: .82rem; font-weight: 700; color: #ffd700; }
.feed-chip-qty       { font-size: .72rem; color: #888; }
.feed-chip-time      { font-size: .68rem; color: #555; margin-left: 4px; }

.feed-chip--new {
  border-color: rgba(255,215,0,.6) !important;
  box-shadow: 0 0 14px rgba(255,215,0,.25);
}

/* ── Server Status Block ─────────────────────────────────────────────────── */

.server-section {
  scroll-margin-top: 100px;
  padding: 140px 0 60px;
}

.server-card {
  background: linear-gradient(145deg, rgba(19,32,59,.95), rgba(10,20,41,.98));
  border: 1px solid rgba(255,215,0,.2);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,.5);
}

.server-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding: 24px 28px;
  border-bottom: 1px solid rgba(255,215,0,.1);
}

.server-name {
  font-family: Orbitron, sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 6px;
}

.server-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: .82rem;
  color: #aaa;
}

.server-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.server-meta i {
  color: #ffd700;
  font-size: .8rem;
}

.server-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: Orbitron, sans-serif;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 1px;
  border-radius: 20px;
  padding: 6px 16px;
  flex-shrink: 0;
}

.server-status-badge.online {
  color: #4cff91;
  background: rgba(76,255,145,.1);
  border: 1px solid rgba(76,255,145,.3);
}

.server-status-badge.offline {
  color: #ff4444;
  background: rgba(255,68,68,.1);
  border: 1px solid rgba(255,68,68,.3);
}

.server-status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  animation: feedPulse 1.4s ease-in-out infinite;
}

.online .server-status-dot  { background: #4cff91; }
.offline .server-status-dot { background: #ff4444; }

.server-body {
  padding: 0 28px 24px;
}

.server-players-title {
  font-family: Orbitron, sans-serif;
  font-size: .75rem;
  font-weight: 600;
  color: #555;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 20px 0 12px;
}

.server-players-empty {
  color: #555;
  font-size: .85rem;
  padding: 16px 0;
}

.server-player-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255,255,255,.04);
}

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

.server-player-rank {
  font-family: Orbitron, sans-serif;
  font-size: .7rem;
  color: #555;
  width: 22px;
  flex-shrink: 0;
  text-align: right;
}

.server-player-name {
  flex: 1;
  font-size: .88rem;
  color: #ddd;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.server-player-score {
  font-family: Orbitron, sans-serif;
  font-size: .82rem;
  font-weight: 700;
  color: #ffd700;
  flex-shrink: 0;
}

.server-player-time {
  font-size: .72rem;
  color: #555;
  flex-shrink: 0;
  min-width: 54px;
  text-align: right;
}

.server-offline-msg {
  text-align: center;
  padding: 30px 0;
  color: #555;
  font-size: .9rem;
}

.server-offline-msg i {
  font-size: 2rem;
  display: block;
  margin-bottom: 10px;
  color: #333;
}

.server_ip {
  color: white;
  text-decoration: none;
}

/* ── Product description modal ───────────────────────────────────────────── */

.product-description {
  color: #ccc;
  line-height: 1.75;
  font-size: 14px;
  overflow-y: auto;
  flex: 1 1 auto;
  min-height: 0;
}

.product-description::-webkit-scrollbar {
  width: 4px;
}

.product-description::-webkit-scrollbar-track {
  background: transparent;
}

.product-description::-webkit-scrollbar-thumb {
  background: rgba(255, 215, 0, 0.25);
  border-radius: 4px;
}

.product-description::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 215, 0, 0.5);
}

.product-description h2,
.product-description h3,
.product-description h4 {
  font-family: Orbitron, sans-serif;
  color: #ffd700;
  margin: 1.2em 0 .5em;
}

.product-description ul,
.product-description ol {
  padding-left: 1.6em;
  margin: .5em 0;
}

.product-description li { margin: .25em 0; }
.product-description a  { color: #ffd700; }

.product-description img {
  max-width: 100%;
  border-radius: 8px;
  margin: .5em 0;
}

.product-description table {
  width: 100%;
  border-collapse: collapse;
  margin: .8em 0;
  font-size: .9rem;
}

.product-description td,
.product-description th {
  padding: 8px 12px;
  border: 1px solid rgba(255,215,0,.2);
}

.product-description th {
  background: rgba(255,215,0,.08);
  color: #ffd700;
}

@media (max-width: 1200px) {
  .highlight-text {
    font-size: 5rem;
  }

  .hero h2 {
    font-size: 3.5rem;
  }
}

@media (max-width: 992px) {
  .highlight-text {
    font-size: 4rem;
  }

  .hero h2 {
    font-size: 3rem;
  }

  .section-title {
    font-size: 2.8rem;
  }

  .plugin-detail-body {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .header-content {
    flex-direction: column;
    gap: 20px;
  }

  nav ul {
    margin-top: 15px;
    justify-content: center;
    flex-wrap: wrap;
  }

  nav ul li {
    margin: 0 15px 10px;
  }

  .highlight-text {
    font-size: 3rem;
  }

  .hero h2 {
    font-size: 2.5rem;
  }

  .hero {
    padding: 180px 0 100px;
  }

  .features-grid,
  .hruk-grid {
    grid-template-columns: 1fr;
  }

  .plugin-detail-header {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
}

@media (max-width: 576px) {
  .auth-btn,
  .price-block {
    text-align: center;
  }

  .highlight-text {
    font-size: 2.5rem;
  }

  .hero h2 {
    font-size: 2rem;
  }

  .section-title {
    font-size: 2.2rem;
  }

  .auth-buttons {
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }

  .plugin-detail-body,
  .plugin-detail-header {
    padding: 20px;
  }

  .full-width-block {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding: 25px;
    background: rgba(19, 32, 59, 0.7);
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.2);
  }

  .price-block {
    background: linear-gradient(
      135deg,
      rgba(29, 46, 77, 0.8),
      rgba(19, 32, 59, 0.9)
    );
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    padding: 25px;
    margin-bottom: 25px;
  }

  .price-label {
    font-size: 0.9rem;
    color: #ccc;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  .free-badge,
  .price-value {
    font-weight: 900;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
    margin-bottom: 15px;
    font-family: Orbitron, sans-serif;
  }

  .price-value {
    font-size: 3.5rem;
    background: linear-gradient(to right, var(--yellow), var(--neon-yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .free-badge {
    font-size: 2.5rem;
  }
}

/* Стилі для форм */
.form-input {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--light-blue);
  background: rgba(29, 46, 77, 0.9);
  color: var(--text-color);
  border-radius: 8px;
  font-family: "Exo 2", sans-serif;
  font-size: 16px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.form-input:focus {
  outline: none;
  border-color: var(--yellow);
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
  background: rgba(29, 46, 77, 1);
}

.form-label {
  display: block;
  margin-bottom: 8px;
  color: var(--yellow);
  font-weight: 500;
  font-family: "Orbitron", sans-serif;
}

.error-message {
  background: rgba(255, 51, 102, 0.1);
  border: 1px solid #ff3366;
  color: #ff3366;
  padding: 15px;
  border-radius: 10px;
  margin-bottom: 20px;
  text-align: center;
}

.success-message {
  background: rgba(255, 215, 0, 0.1);
  border: 1px solid var(--yellow);
  color: var(--yellow);
  padding: 15px;
  border-radius: 10px;
  margin-bottom: 20px;
  text-align: center;
}

.login-container {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.login-card {
  max-width: 400px;
  width: 100%;
  background: linear-gradient(
    145deg,
    rgba(29, 46, 77, 0.8),
    rgba(19, 32, 59, 0.9)
  );
  border-radius: 20px;
  padding: 40px 30px;
  border: 1px solid rgba(255, 215, 0, 0.2);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
}

/* Стилі для адмін форми */
.admin-form-container {
  padding: 150px 0 50px;
}

.admin-form-card {
  max-width: 600px;
  margin: 0 auto;
  background: linear-gradient(
    145deg,
    rgba(29, 46, 77, 0.8),
    rgba(19, 32, 59, 0.9)
  );
  border-radius: 20px;
  padding: 40px;
  border: 1px solid rgba(255, 215, 0, 0.2);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.admin-form-title {
  text-align: center;
  margin-bottom: 30px;
  color: var(--yellow);
  font-family: "Orbitron", sans-serif;
}

.admin-actions {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

.admin-actions .btn {
  flex: 1;
}

.image-preview {
  text-align: center;
  margin-bottom: 20px;
}

.image-preview img {
  max-width: 200px;
  border-radius: 10px;
  border: 2px solid var(--yellow);
}

/* Видаліть старі стилі для input, які заважають */
input[type="text"],
input[type="password"],
input[type="number"],
input[type="file"],
textarea,
select {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--light-blue);
  background: rgba(29, 46, 77, 0.9);
  color: var(--text-color);
  border-radius: 8px;
  font-family: "Exo 2", sans-serif;
  font-size: 16px;
  margin-bottom: 15px;
  transition: all 0.3s ease;
}

input[type="text"]:focus,
input[type="password"]:focus,
input[type="number"]:focus,
input[type="file"]:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--yellow);
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
  background: rgba(29, 46, 77, 1);
}