/* Стилі з наданого файлу, але змінені кольори на сині та жовті */

: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,
.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,
.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,
.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 {
  -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,
.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);
}

@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;
}

.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 {
  font-size: 2rem;
}

.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: auto;
  backdrop-filter: blur(5px);
}

.modal-content {
  background: linear-gradient(145deg, var(--dark-blue), var(--medium-blue));
  margin: 50px auto;
  padding: 0;
  border-radius: 20px;
  width: 90%;
  max-width: 1000px;
  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 {
  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);
  }
}

@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);
}