/* === login.css === */
body.login-page {
  background: linear-gradient(120deg, #0e0e11, #1a1a1f);
  background-image: url('file:///E|/Bekir 11A AMP 22163/IMG/login-bg.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: #fff;
}

.form-section {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 90vh;
  padding: 2rem;
}

.form-container {
  background: rgba(20, 20, 20, 0.85);
  border-radius: 20px;
  padding: 3rem;
  max-width: 420px;
  width: 100%;
  box-shadow: 0 0 30px #00f7ff33;
  animation: fadeInUp 1.2s ease forwards;
}

.form-container h1 {
  font-size: 2.4rem;
  margin-bottom: 1rem;
  color: #00e7ff;
  text-align: center;
  text-shadow: 0 0 8px #00e7ff55;
}

.form-container p {
  font-size: 1rem;
  color: #ccc;
  margin-bottom: 2rem;
  text-align: center;
}

form label {
  display: block;
  font-weight: bold;
  margin-bottom: 0.5rem;
  color: #ff9efc;
}

form input {
  display: block;
  width: 100%;
  padding: 0.9rem 1rem;
  margin-bottom: 1.5rem;
  border-radius: 10px;
  border: none;
  font-size: 1rem;
  background-color: #2a2a2a;
  color: #f2f2f2;
  box-shadow: inset 0 0 5px #000000aa;
  transition: all 0.3s ease;
}

form input:focus {
  background-color: #1e1e1e;
  box-shadow: 0 0 12px #00f7ff99;
  outline: none;
}

form button.btn {
  background: linear-gradient(90deg, #00f7ff, #ff00cc);
  color: #fff;
  font-weight: bold;
  border: none;
  padding: 0.9rem 2rem;
  border-radius: 12px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

form button.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 18px #ff00cc88;
}

form button.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.6s ease;
}

form button.btn:hover::before {
  left: 100%;
}

.small-text {
  font-size: 0.9rem;
  text-align: center;
  margin-top: 1rem;
  color: #aaa;
}

.small-text a {
  color: #00e7ff;
  text-decoration: none;
  font-weight: bold;
}

.small-text a:hover {
  text-shadow: 0 0 5px #00e7ff88;
}

/* Animasyonlar */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* === register.css === */
body.register-page {
  background: linear-gradient(135deg, #0e0e11, #1c1f24);
  background-image: url('file:///E|/Bekir 11A AMP 22163/IMG/register-bg.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: #f1f1f1;
}

.register {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 90vh;
  padding: 2rem;
}

.register .container {
  background: rgba(25, 25, 25, 0.9);
  padding: 3rem;
  border-radius: 18px;
  box-shadow: 0 0 30px #00f7ff55;
  max-width: 460px;
  width: 100%;
  animation: fadeInUp 1.2s ease both;
}

.register h1 {
  font-size: 2.3rem;
  margin-bottom: 1rem;
  text-align: center;
  color: #00e7ff;
  text-shadow: 0 0 10px #00e7ff66;
}

.register p {
  text-align: center;
  color: #ccc;
  margin-bottom: 2rem;
  font-size: 1rem;
}

.register form label {
  font-weight: bold;
  display: block;
  margin-bottom: 0.5rem;
  color: #ff9efc;
}

.register form input {
  width: 100%;
  padding: 0.9rem 1rem;
  border-radius: 10px;
  border: none;
  background-color: #2a2a2a;
  color: #fff;
  margin-bottom: 1.5rem;
  font-size: 1rem;
  box-shadow: inset 0 0 6px #00000088;
  transition: all 0.3s ease;
}

.register form input:focus {
  background-color: #1e1e1e;
  box-shadow: 0 0 12px #00f7ff99;
  outline: none;
}

.register form .btn {
  background: linear-gradient(90deg, #00f7ff, #ff00cc);
  border: none;
  color: #fff;
  padding: 1rem;
  width: 100%;
  font-weight: bold;
  font-size: 1.1rem;
  border-radius: 12px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.register form .btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 20px #ff00cc99;
}

.register form .btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.6s ease;
}

.register form .btn:hover::before {
  left: 100%;
}

.register a {
  color: #00e7ff;
  text-decoration: none;
  font-weight: bold;
}

.register a:hover {
  text-shadow: 0 0 5px #00e7ff99;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* === iletisim.css === */
body.contact-page {
  background: linear-gradient(120deg, #0e0e11, #1b1f24);
  background-image: url('file:///E|/Bekir 11A AMP 22163/IMG/contact-bg.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: #f1f1f1;
}

.contact {
  padding: 4rem 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 90vh;
}

.contact .container {
  background: rgba(28, 28, 30, 0.95);
  padding: 3rem;
  border-radius: 20px;
  max-width: 650px;
  width: 100%;
  box-shadow: 0 0 30px #00f7ff44;
  animation: fadeInUp 1s ease both;
}

.contact h1 {
  font-size: 2.3rem;
  margin-bottom: 1rem;
  text-align: center;
  color: #00e7ff;
  text-shadow: 0 0 8px #00e7ff55;
}

.contact p {
  font-size: 1.1rem;
  text-align: center;
  margin-bottom: 2rem;
  color: #ccc;
}

.contact-form label {
  font-weight: bold;
  color: #ff9efc;
  display: block;
  margin-bottom: 0.5rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  margin-bottom: 1.5rem;
  border: none;
  border-radius: 10px;
  background-color: #2a2a2a;
  color: #fff;
  font-size: 1rem;
  box-shadow: inset 0 0 6px #00000088;
  transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  background-color: #1e1e1e;
  box-shadow: 0 0 12px #00f7ff99;
  outline: none;
}

.contact-form button {
  background: linear-gradient(90deg, #00f7ff, #ff00cc);
  border: none;
  color: #fff;
  padding: 1rem;
  width: 100%;
  font-weight: bold;
  font-size: 1.1rem;
  border-radius: 12px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-form button:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 20px #ff00cc88;
}

.contact-form button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.6s ease;
}

.contact-form button:hover::before {
  left: 100%;
}

.response-message {
  margin-top: 2rem;
  padding: 1rem;
  border-radius: 10px;
  background-color: #203040;
  text-align: center;
  color: #80faff;
  font-weight: bold;
  display: none;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@500&family=Poppins:wght@400;600&display=swap');

body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #0e0e11;
  color: #f1f1f1;
  overflow-x: hidden;
}

header {
  background: linear-gradient(90deg, #141e30, #243b55);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  box-shadow: 0 2px 10px rgba(0, 255, 200, 0.15);
  position: sticky;
  top: 0;
  z-index: 10;
}

.logo img {
  height: 60px;
  transition: transform 0.3s ease;
}

.logo img:hover {
  transform: scale(1.1);
}


.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  padding: 0;
  margin: 0;
}

.nav-links a {
  color: #ddd;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.nav-links a.active,
.nav-links a:hover {
  color: #00f7ff;
  text-shadow: 0 0 10px #00f7ff88;
}

.hero {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('file:///E|/Bekir 11A AMP 22163/IMG/hero-bg.jpg') no-repeat center/cover;
  text-align: center;
  padding: 8rem 2rem;
  color: #ffffff;
  box-shadow: inset 0 -10px 30px rgba(0, 255, 200, 0.1);
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 10px #000;
  font-family: 'Orbitron', sans-serif;
}

.hero p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  text-shadow: 1px 1px 3px #000;
  max-width: 800px;
  margin-inline: auto;
}

.hero .btn {
  padding: 1rem 2.5rem;
  background: linear-gradient(90deg, #ff6ec4, #7873f5);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-weight: bold;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 15px #ff6ec4aa;
}

.features {
  background: linear-gradient(to bottom, #1c1c1c, #0e0e11);
  padding: 4rem 2rem;
  text-align: center;
}

.features h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  color: #00e7ff;
  text-shadow: 0 0 8px #00e7ff33;
  font-family: 'Orbitron', sans-serif;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.feature-card {
  background: linear-gradient(135deg, #252525, #1a1a1a);
  border-radius: 15px;
  padding: 30px 20px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.5);
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
}

.feature-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 20px;
}

.feature-card h3 {
  color: #ff9efc;
  margin-bottom: 10px;
  font-size: 1.4em;
}

footer {
  background-color: #141414;
  padding: 30px;
  text-align: center;
  font-size: 0.9em;
  color: #aaa;
  margin-top: 60px;
  border-top: 1px solid #333;
}

/* Animasyonlar */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}

.fadeIn {
  animation-name: fadeIn;
}

.fadeInUp {
  animation-name: fadeInUp;
}

.delay {
  animation-delay: 0.4s;
}/* Ödül Butonu */
.reward-btn {
  background: linear-gradient(90deg, #00f7ff, #00c3ff);
  color: #111;
  border: none;
  border-radius: 30px;
  padding: 0.5rem 1.3rem;
  font-size: 0.95em;
  font-weight: bold;
  font-family: 'Segoe UI', sans-serif;
  cursor: pointer;
  box-shadow: 0 0 12px #00f7ff88;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.reward-btn:hover {
  background: linear-gradient(90deg, #00f7ff, #7873f5);
  color: #fff;
  transform: scale(1.05);
  box-shadow: 0 0 18px #00f7ff, 0 0 8px #7873f5;
}

.reward-btn:active {
  transform: scale(0.95);
  box-shadow: 0 0 8px #00c3ff;
}

/* === styles.css (GeliÅŸtirilmiÅŸ) === */
body.homepage {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #0e0e11;
  color: #f1f1f1;
  overflow-x: hidden;
}

header {
  background: linear-gradient(90deg, #141e30, #243b55);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  box-shadow: 0 2px 10px rgba(0, 255, 200, 0.15);
  position: sticky;
  top: 0;
  z-index: 10;
}

.logo img {
  height: 60px;
}

nav ul.nav-links,
nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  padding: 0;
  margin: 0;
}

nav a {
  color: #ddd;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

nav a.active,
nav a:hover {
  color: #00f7ff;
  text-shadow: 0 0 10px #00f7ff88;
}

.hero {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('file:///E|/Bekir 11A AMP 22163/IMG/hero-bg.jpg') no-repeat center/cover;
  text-align: center;
  padding: 8rem 2rem;
  color: #ffffff;
  box-shadow: inset 0 -10px 30px rgba(0, 255, 200, 0.1);
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 10px #000;
}

.hero p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  text-shadow: 1px 1px 3px #000;
  max-width: 800px;
  margin-inline: auto;
}

.hero .btn {
  padding: 1rem 2.5rem;
  background: linear-gradient(90deg, #ff6ec4, #7873f5);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-weight: bold;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 15px #ff6ec4aa;
}

.intro, .contact, .register {
  max-width: 1000px;
  margin: 4rem auto;
  text-align: center;
  padding: 0 1.5rem;
}

.intro h2, .contact h1, .register h1, .features h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  color: #00e7ff;
  text-shadow: 0 0 8px #00e7ff33;
}

.intro p, .contact p, .register p {
  font-size: 1.15rem;
  line-height: 1.8;
  margin-bottom: 1rem;
  color: #e0e0e0;
}

.features {
  background: linear-gradient(to bottom, #1c1c1c, #0e0e11);
  padding: 4rem 2rem;
  text-align: center;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  padding: 0 1rem;
}

.feature-card {
  background: linear-gradient(135deg, #252525, #1a1a1a);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 0 20px #00f7ff44;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 25px #00f7ff88;
}

.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #ff9efc;
}

.feature-card p {
  font-size: 1.05rem;
  color: #cfcfcf;
}

.contact-form input,
.contact-form textarea,
.register form input,
.register form button {
  display: block;
  width: 100%;
  margin-bottom: 1.2rem;
  padding: 0.8rem 1rem;
  border-radius: 10px;
  border: none;
  font-size: 1rem;
  background-color: #2a2a2a;
  color: #f2f2f2;
  box-shadow: inset 0 0 5px #000000aa;
}

.contact-form button,
.register form button {
  background: linear-gradient(90deg, #ff6ec4, #7873f5);
  color: #fff;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

.contact-form button:hover,
.register form button:hover {
  background: linear-gradient(90deg, #7873f5, #ff6ec4);
  transform: scale(1.03);
}

footer {
  background-color: #141414;
  padding: 1rem;
  text-align: center;
  font-size: 0.9rem;
  color: #777;
  border-top: 1px solid #333;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}

.fadeIn {
  animation-name: fadeIn;
}

.fadeInUp {
  animation-name: fadeInUp;
}

.delay {
  animation-delay: 0.4s;
}

/* === SÄ±ralama SayfasÄ± Stil ve Animasyonlar === */
.ranking {
  padding: 80px 20px;
  background: linear-gradient(to bottom, #1b1b2f, #0f0f1f);
  text-align: center;
  animation: fadeIn 1.5s ease;
}

.ranking h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 3rem;
  color: #00f7ff;
  margin-bottom: 10px;
  animation: pulseText 2s infinite alternate;
}

.ranking p {
  font-size: 1.3em;
  color: #aaa;
  margin-bottom: 40px;
  animation: fadeInUp 1.2s ease;
}

.ranking-table-wrapper {
  overflow-x: auto;
  animation: fadeInUp 1.3s ease;
}

.ranking-table {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  border-collapse: collapse;
  border-radius: 20px;
  overflow: hidden;
  background: #1a1a2f;
  box-shadow: 0 0 30px rgba(0, 255, 255, 0.2);
  animation: glowIn 1.5s ease;
}

.ranking-table thead {
  background: linear-gradient(90deg, #ff6ec4, #7873f5);
  color: #fff;
  text-shadow: 0 0 5px #000;
}

.ranking-table th,
.ranking-table td {
  padding: 18px;
  font-size: 1.1em;
  text-align: center;
  border-bottom: 1px solid #2a2a3a;
}

.ranking-table tbody tr {
  transition: background 0.3s ease, transform 0.3s ease;
}

.ranking-table tbody tr:nth-child(even) {
  background-color: #2a2a44;
}

.ranking-table tbody tr:nth-child(odd) {
  background-color: #1f1f3a;
}

.ranking-table tbody tr:hover {
  background-color: #39396d;
  transform: scale(1.015);
  box-shadow: 0 0 12px #00f7ff44;
}

.rank {
  font-weight: bold;
  font-size: 1.4em;
  color: gold;
  animation: rankBounce 2s infinite ease-in-out;
}

.ranking-table tr:nth-child(1) .rank::after { content: " ðŸ¥‡"; }
.ranking-table tr:nth-child(2) .rank::after { content: " ðŸ¥ˆ"; }
.ranking-table tr:nth-child(3) .rank::after { content: " ðŸ¥‰"; }

.reward-btn {
  background: linear-gradient(90deg, #00f7ff, #00c3ff);
  color: #111;
  border: none;
  border-radius: 30px;
  padding: 0.6rem 1.5rem;
  font-size: 1em;
  font-weight: bold;
  font-family: 'Segoe UI', sans-serif;
  cursor: pointer;
  box-shadow: 0 0 12px #00f7ff88;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.reward-btn:hover {
  background: linear-gradient(90deg, #00f7ff, #7873f5);
  color: #fff;
  transform: scale(1.07);
  box-shadow: 0 0 20px #00f7ff, 0 0 10px #7873f5;
}

.reward-btn:active {
  transform: scale(0.95);
  box-shadow: 0 0 8px #00c3ff;
}

/* RESPONSIVE */
@media screen and (max-width: 768px) {
  .ranking h2 {
    font-size: 2rem;
  }

  .ranking-table th,
  .ranking-table td {
    font-size: 0.95em;
    padding: 12px;
  }
}

/* Ekstra Animasyonlar */
@keyframes glowIn {
  from { box-shadow: 0 0 0 rgba(0, 255, 255, 0); }
  to { box-shadow: 0 0 30px rgba(0, 255, 255, 0.3); }
}

@keyframes rankBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

@keyframes pulseText {
  from { text-shadow: 0 0 5px #00f7ff; }
  to { text-shadow: 0 0 15px #00f7ff, 0 0 25px #00f7ff; }
}

/* === Market SayfasÄ± Stil ve Animasyonlar === */
.market-page .hero {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(5, 5, 30, 0.8)), url('file:///E|/Bekir 11A AMP 22163/IMG/market-bg.jpg') center/cover no-repeat;
  color: #fff;
  padding: 7rem 2rem;
  text-align: center;
  box-shadow: inset 0 -10px 30px rgba(0, 255, 200, 0.1);
  animation: fadeIn 1.2s ease;
}

.market-page .hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  color: #00f7ff;
  text-shadow: 0 0 12px #00f7ff88;
  animation: pulseText 2s infinite;
}

.market-page .hero p {
  font-size: 1.3rem;
  color: #e0e0e0;
  text-shadow: 0 0 5px #000;
  max-width: 800px;
  margin: auto;
}

.market-page .btn {
  margin-top: 1.5rem;
  padding: 0.8rem 2rem;
  font-size: 1.1rem;
  background: linear-gradient(90deg, #ff6ec4, #7873f5);
  color: #fff;
  border: none;
  border-radius: 30px;
  font-weight: bold;
  text-transform: uppercase;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px #ff6ec4aa;
}

.market-page .btn:hover {
  background: linear-gradient(90deg, #7873f5, #ff6ec4);
  transform: scale(1.05);
  box-shadow: 0 0 20px #ff6ec4, 0 0 10px #7873f5;
}

.shop, .new-products {
  padding: 4rem 2rem;
  background: #0f0f1a;
  text-align: center;
  animation: fadeInUp 1s ease;
}

.shop h2, .new-products h2 {
  font-size: 2.5rem;
  color: #00f7ff;
  margin-bottom: 2rem;
  text-shadow: 0 0 10px #00f7ff55;
}

.product-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;

  max-width: 1200px;
  margin: auto;
}

.product-card {
  background: linear-gradient(135deg, #1b1b2f, #292940);
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: glowIn 1s ease;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 25px #00f7ff88;
}

.product-card img {
  width: 100%;
  height: 180px;
  object-fit: contain;
  margin-bottom: 1rem;
  filter: drop-shadow(0 0 10px #00f7ff44);
}

.product-card h3 {
  color: #fff;
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.product-card p {
  color: #ccc;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.product-card .price {
  font-size: 1.2rem;
  color: #00ffcc;
  margin-bottom: 1rem;
}

.product-card .buy-btn {
  display: inline-block;
  padding: 0.6rem 1.5rem;
  background: linear-gradient(90deg, #00f7ff, #00c3ff);
  color: #111;
  font-weight: bold;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  text-transform: uppercase;
  transition: all 0.3s ease;
  box-shadow: 0 0 12px #00f7ff88;
}

.product-card .buy-btn:hover {
  background: linear-gradient(90deg, #00c3ff, #7873f5);
  color: #fff;
  transform: scale(1.07);
}

/* Responsive */
@media (max-width: 768px) {
  .product-card img {
    height: 140px;
  }
}

/* Animasyonlar */
@keyframes pulseText {
  0% { text-shadow: 0 0 5px #00f7ff; }
  100% { text-shadow: 0 0 15px #00f7ff, 0 0 25px #00f7ff; }
}
.filter-buttons {
  margin-bottom: 2rem;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.filter-btn {
  padding: 0.6rem 1.2rem;
  background: linear-gradient(90deg, #333, #444);
  color: #eee;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px rgba(0,255,255,0.1);
}

.filter-btn:hover,
.filter-btn.active {
  background: linear-gradient(90deg, #00f7ff, #00c3ff);
  color: #111;
  box-shadow: 0 0 15px #00f7ff88;
}
.product-list {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  padding: 2rem 1rem;
}

.product-card {
  background: linear-gradient(135deg, #1f1f1f, #292929);
  border-radius: 16px;
  padding: 1.5rem;
  width: 260px;
  text-align: center;
  box-shadow: 0 0 15px #00f7ff33;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px #00f7ff88;
}

.product-card img {
  width: 100px;
  margin-bottom: 1rem;
  filter: drop-shadow(0 0 5px #000);
}

.product-card h3 {
  color: #ff9efc;
  margin-bottom: 0.5rem;
}

.product-card p {
  color: #ddd;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.product-card .price {
  display: block;
  font-weight: bold;
  color: #00e7ff;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.product-card .btn {
  background: linear-gradient(90deg, #ff6ec4, #7873f5);
  padding: 0.7rem 1.5rem;
  border: none;
  color: white;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.product-card .btn:hover {
  background: linear-gradient(90deg, #7873f5, #ff6ec4);
}

