.auth-buttons,
.logo,
.plugin-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;
}

.plugin-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;
}

:root {
  --dark-blue: #0a1429;
  --medium-blue: #13203b;
  --light-blue: #1d2e4d;
  --accent-blue: #2a4a7a;
  --green: #00ff88;
  --light-green: #4bdb8a;
  --neon-green: #00ff95;
  --text-color: #e0e0e0;
  --highlight-color: #ff3366;
  --gradient: linear-gradient(
    135deg,
    var(--dark-blue) 0%,
    var(--medium-blue) 100%
  );
  --neon-glow: 0 0 10px rgba(0, 255, 136, 0.7), 0 0 20px rgba(0, 255, 136, 0.5),
    0 0 30px rgba(0, 255, 136, 0.3);
}

* {
  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%;
  background: radial-gradient(
    circle,
    rgba(0, 255, 136, 0.1) 0,
    transparent 70%
  );
  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(0, 255, 136, 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,
.plugin-price {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  align-items: center;
  gap: 12px;
}

.logo-icon {
  color: var(--green);
  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;
  background: linear-gradient(to right, var(--green), var(--neon-green));
  -webkit-background-clip: text;
  font-weight: 700;
}

.hero h2,
nav ul li a:after {
  background: linear-gradient(to right, var(--green), var(--neon-green));
}

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(--green);
  text-shadow: 0 0 8px rgba(0, 255, 136, 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);
  box-shadow: 0 5px 15px rgba(0, 255, 136, 0.4);
  position: relative;
  overflow: hidden;
}

.login:before {
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 255, 136, 0.2),
    transparent
  );
}

.login:hover {
  background-color: rgba(29, 46, 77, 0.5);
  border-color: var(--green);
  box-shadow: 0 0 15px rgba(0, 255, 136, 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(--green), var(--light-green));
}

.btn:before,
.signup:before {
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
}

.feature-card:before,
.plugin-card:before {
  opacity: 0;
  transition: opacity 0.5s;
  content: "";
}

.signup:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 255, 136, 0.6);
}

.hero {
  padding: 300px 0;
  position: relative;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.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(--green),
    var(--neon-green),
    var(--light-green)
  );
  -webkit-background-clip: text;
  text-shadow: 0 0 20px rgba(0, 255, 136, 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: -20px;
  left: 0;
  background: linear-gradient(
    90deg,
    transparent 0,
    var(--green) 20%,
    var(--neon-green) 50%,
    var(--light-green) 80%,
    transparent 100%
  );
  border-radius: 3px;
  box-shadow: 0 0 15px rgba(0, 255, 136, 0.7), 0 0 30px rgba(0, 255, 136, 0.4);
  animation: 2s infinite alternate linePulse;
}

@keyframes textGlow {
  0% {
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.5),
      0 0 20px rgba(0, 255, 136, 0.3);
  }

  100% {
    text-shadow: 0 0 15px rgba(0, 255, 136, 0.8),
      0 0 30px rgba(0, 255, 136, 0.5), 0 0 40px rgba(0, 255, 136, 0.3);
  }
}

@keyframes linePulse {
  0% {
    opacity: 0.7;
    width: 100%;
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.5), 0 0 20px rgba(0, 255, 136, 0.3);
  }

  100% {
    opacity: 1;
    width: 105%;
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.8), 0 0 40px rgba(0, 255, 136, 0.5),
      0 0 60px rgba(0, 255, 136, 0.3);
  }
}

.btn {
  background: linear-gradient(to right, var(--green), var(--light-green));
  padding: 18px 45px;
  border-radius: 30px;
  transition: 0.4s;
  font-size: 16px;
  letter-spacing: 1px;
  border: none;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 255, 136, 0.6);
}

.btn-outline {
  background: 0 0;
  border: 2px solid var(--green);
  color: var(--green);
  box-shadow: 0 0 15px rgba(0, 255, 136, 0.3);
}

.btn-outline:hover {
  background: rgba(0, 255, 136, 0.1);
}

.plugins {
  position: relative;
}

.section-title {
  margin-bottom: 80px;
  font-size: 3.2rem;
  position: relative;
}

.section-title:after {
  content: "";
  position: absolute;
  width: 120px;
  height: 5px;
  background: linear-gradient(to right, var(--green), var(--neon-green));
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 3px;
  box-shadow: var(--neon-glow);
}

.plugins-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 40px;
  position: relative;
  z-index: 1;
}

.plugin-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(0, 255, 136, 0.15);
  position: relative;
  cursor: pointer;
  flex-direction: column;
  height: 100%;
}

.date-info,
.plugin-image {
  display: flex;
  align-items: center;
}

.plugin-card:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 255, 136, 0.1), transparent);
}

.plugin-card:hover {
  transform: translateY(-15px) scale(1.03);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(0, 255, 136, 0.3);
  border-color: rgba(0, 255, 136, 0.4);
}

.feature-card:hover:before,
.plugin-card:hover:before {
  opacity: 1;
}

.plugin-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;
}

.plugin-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);
  }
}

.plugin-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.plugin-image i {
  transition: transform 0.5s;
}

.plugin-card:hover .plugin-image i {
  transform: scale(1.1) rotate(5deg);
}

.category-badge {
  top: 15px;
  left: 15px;
  background: rgba(0, 255, 136, 0.9);
  color: var(--dark-blue);
  padding: 6px 14px;
  border-radius: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(0, 255, 136, 0.3);
}

.date-info i,
.plugin-content h3,
.plugin-features li i,
.version-badge {
  color: var(--green);
}

.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(--green);
}

.date-info {
  gap: 8px;
  color: #aaa;
  font-size: 0.85rem;
  margin-bottom: 15px;
}

.plugin-content h3 {
  margin-bottom: 10px;
  font-size: 1.5rem;
  font-family: Orbitron, sans-serif;
  font-weight: 600;
  line-height: 1.3;
}

.plugin-content p {
  margin-bottom: 25px;
  font-size: 1rem;
  color: #ccc;
  line-height: 1.7;
}

.price {
  font-size: 2rem;
  background: linear-gradient(to right, var(--green), var(--neon-green));
  -webkit-background-clip: text;
}

.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(0, 255, 136, 0.3);
  border: 1px solid rgba(0, 255, 136, 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(0, 255, 136, 0.2);
  display: flex;
  align-items: center;
  gap: 30px;
}

.plugin-detail-icon {
  font-size: 5rem;
  background: linear-gradient(to right, var(--green), var(--neon-green));
  -webkit-background-clip: text;
}

.plugin-detail-title h2 {
  font-size: 2.5rem;
  font-family: Orbitron, sans-serif;
  margin-bottom: 10px;
  color: var(--green);
}

.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;
  color: var(--green);
  font-family: Orbitron, sans-serif;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(0, 255, 136, 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(0, 255, 136, 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(0, 255, 136, 0.2);
}

.requirements h4 {
  color: var(--green);
  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 {
  color: var(--green);
  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(0, 255, 136, 0.15);
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.feature-icon,
.footer-column h3:after {
  background: linear-gradient(to right, var(--green), var(--neon-green));
}

.feature-card:before {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(0, 255, 136, 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(0, 255, 136, 0.2);
  border-color: rgba(0, 255, 136, 0.4);
}

.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 {
  color: var(--green);
  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;
  box-shadow: var(--neon-glow);
}

.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 {
  color: var(--green);
  font-size: 0.9rem;
  transition: transform 0.3s;
}

.footer-links a:hover {
  color: var(--green);
  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(0, 255, 136, 0.3),
    transparent
  );
  transition: 0.5s;
}

.social-links a:hover {
  background: var(--green);
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 255, 136, 0.4);
}

.copyright {
  color: #888;
  font-size: 0.9rem;
}

.copyright span {
  color: var(--green);
  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(--green);
  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,
  .plugins-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(0, 255, 136, 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(0, 255, 136, 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(0, 255, 136, 0.5);
    margin-bottom: 15px;
    font-family: Orbitron, sans-serif;
  }

  .price-value {
    font-size: 3.5rem;
    background: linear-gradient(to right, var(--green), var(--neon-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .free-badge {
    font-size: 2.5rem;
    color: var(--green);
  }
}

/* Стилі для галереї */
.gallery-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.gallery-item {
  background: rgba(10, 20, 41, 0.6);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(0, 255, 136, 0.2);
  transition: all 0.3s ease;
  cursor: pointer;
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 255, 136, 0.2);
  border-color: rgba(0, 255, 136, 0.4);
}

.gallery-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-image {
  transform: scale(1.05);
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 255, 136, 0.2);
  border-color: rgba(0, 255, 136, 0.4);
}

.gallery-item:hover .gallery-image {
  transform: scale(1.05);
}

.nav-btn:hover {
  background: rgba(0, 255, 136, 0.6) !important;
  transform: translateY(-50%) scale(1.1);
}

.close-modal:hover {
  background: rgba(255, 255, 255, 0.2) !important;
  transform: scale(1.1);
}

/* Адаптивність */
@media (max-width: 768px) {
  .gallery-container {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }

  .nav-btn {
    width: 45px !important;
    height: 45px !important;
    font-size: 1.5rem !important;
  }

  .prev-btn {
    left: 10px !important;
  }

  .next-btn {
    right: 10px !important;
  }
}

@media (max-width: 480px) {
  .gallery-container {
    grid-template-columns: 1fr;
  }

  .nav-btn {
    width: 40px !important;
    height: 40px !important;
    font-size: 1.2rem !important;
  }
}

/* Стилі для модального вікна зображень */
#imageModal .modal-content {
  background: transparent;
  box-shadow: none;
  border: none;
}

.gallery-item {
  position: relative;
  transition: all 0.3s ease;
}

.gallery-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 255, 136, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
  border-radius: 12px;
}

.gallery-item:hover::before {
  opacity: 1;
}

/* Анімації */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

#imageModal img {
  animation: fadeIn 0.3s ease;
}
