/* ===== فونت و ریست ===== */
@import url('https://fonts.googleapis.com/css2?family=Vazirmatn:wght@300;400;500;700;900&display=swap');

*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Vazirmatn', Tahoma, sans-serif;
}

/* ===== متغیرها ===== */
:root{
  --primary: #00f5ff;
  --secondary: #00ff88;
  --gold: #ffd700;
  --danger: #ff3860;
  --bg1: #0a1929;
  --bg2: #001e3c;
  --glass: rgba(255, 255, 255, 0.07);
  --border: rgba(255, 255, 255, 0.18);
}

/* ===== بدنه ===== */
body{
  min-height: 100vh;
  background: radial-gradient(ellipse at top, #0f2942 0%, #0a1929 50%, #000 100%);
  color: #fff;
  overflow-x: hidden;
  position: relative;
}

/* ===== پس‌زمینه استادیوم ===== */
.stadium-bg{
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

/* آسمان و ستاره‌ها */
.sky{
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 10%, rgba(255,255,255,0.8) 1px, transparent 1px),
    radial-gradient(circle at 40% 30%, rgba(255,255,255,0.6) 1px, transparent 1px),
    radial-gradient(circle at 60% 20%, rgba(255,255,255,0.7) 1px, transparent 1px),
    radial-gradient(circle at 80% 40%, rgba(255,255,255,0.5) 1px, transparent 1px),
    radial-gradient(circle at 30% 60%, rgba(255,255,255,0.4) 1px, transparent 1px),
    radial-gradient(circle at 70% 70%, rgba(255,255,255,0.6) 1px, transparent 1px),
    radial-gradient(circle at 90% 15%, rgba(255,255,255,0.5) 1px, transparent 1px),
    radial-gradient(circle at 10% 80%, rgba(255,255,255,0.4) 1px, transparent 1px);
  background-size: 300px 300px;
  animation: starsTwinkle 4s infinite alternate;
}
@keyframes starsTwinkle{
  from{ opacity: 0.5; }
  to  { opacity: 1; }
}

/* نورافکن‌ها */
.floodlight{
  position: absolute;
  width: 400px;
  height: 600px;
  background: radial-gradient(ellipse at center, rgba(0,245,255,0.15) 0%, transparent 70%);
  filter: blur(20px);
  animation: flicker 3s infinite alternate;
}
.floodlight:nth-child(2){ top: -100px; left: 10%; }
.floodlight:nth-child(3){
  top: -100px;
  right: 10%;
  background: radial-gradient(ellipse at center, rgba(255,215,0,0.15) 0%, transparent 70%);
}
@keyframes flicker{
  from{ opacity: 0.6; transform: scale(1); }
  to  { opacity: 1;   transform: scale(1.05); }
}

/* زمین چمن */
.field{
  position: absolute;
  bottom: -20%;
  left: -10%;
  right: -10%;
  height: 50%;
  background:
    repeating-linear-gradient(90deg,
      rgba(0,100,30,0.4) 0%, rgba(0,100,30,0.4) 5%,
      rgba(0,80,25,0.4) 5%, rgba(0,80,25,0.4) 10%);
  transform: perspective(800px) rotateX(75deg);
  transform-origin: bottom;
  box-shadow: 0 -50px 100px rgba(0,0,0,0.5);
}
.field::before{
  content: '';
  position: absolute;
  top: 50%; left: 0; right: 0;
  height: 2px;
  background: rgba(255,255,255,0.3);
}
.field::after{
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 200px; height: 200px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 50%;
}

/* توپ‌های شناور */
.float-ball{
  position: absolute;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #fff 0%, #e0e0e0 20%, #888 50%, #222 80%, #000 100%);
  box-shadow:
    inset -8px -8px 20px rgba(0,0,0,0.6),
    inset 8px 8px 15px rgba(255,255,255,0.2),
    0 10px 30px rgba(0,245,255,0.3);
  animation: floatBall 15s infinite ease-in-out;
}
.float-ball::before{
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background:
    conic-gradient(from 45deg,
      transparent 0deg, #000 30deg, transparent 60deg,
      #000 90deg, transparent 120deg,
      #000 150deg, transparent 180deg,
      #000 210deg, transparent 240deg,
      #000 270deg, transparent 300deg,
      #000 330deg, transparent 360deg);
  opacity: 0.5;
}
.float-ball:nth-child(4){ top: 15%; left: 8%;  animation-delay: 0s; }
.float-ball:nth-child(5){ top: 70%; left: 85%; animation-delay: -3s; width: 80px; height: 80px; }
.float-ball:nth-child(6){ top: 80%; left: 5%;  animation-delay: -6s; width: 50px; height: 50px; }
.float-ball:nth-child(7){ top: 25%; left: 90%; animation-delay: -9s; width: 70px; height: 70px; }

@keyframes floatBall{
  0%, 100%{ transform: translateY(0)    rotate(0deg);   }
  33%     { transform: translateY(-60px) rotate(120deg); }
  66%     { transform: translateY(30px)  rotate(240deg); }
}

/* دروازه */
.goal-3d{
  position: absolute;
  bottom: 5%;
  right: 5%;
  width: 250px;
  height: 180px;
  border: 4px solid rgba(255,255,255,0.4);
  border-bottom: none;
  transform: perspective(600px) rotateY(-25deg);
  box-shadow:
    inset 0 0 50px rgba(255,255,255,0.1),
    0 0 30px rgba(0,245,255,0.3);
  background:
    repeating-linear-gradient(45deg,
      transparent 0, transparent 8px,
      rgba(255,255,255,0.1) 8px, rgba(255,255,255,0.1) 9px),
    repeating-linear-gradient(-45deg,
      transparent 0, transparent 8px,
      rgba(255,255,255,0.1) 8px, rgba(255,255,255,0.1) 9px);
  border-radius: 5px 5px 0 0;
  animation: goalPulse 4s infinite;
}
@keyframes goalPulse{
  0%, 100%{ box-shadow: inset 0 0 50px rgba(255,255,255,0.1), 0 0 30px rgba(0,245,255,0.3); }
  50%     { box-shadow: inset 0 0 50px rgba(255,255,255,0.2), 0 0 60px rgba(0,245,255,0.6); }
}

/* ===== محتوای اصلی ===== */
.container{
  position: relative;
  z-index: 10;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* ===== هدر ===== */
.header{
  text-align: center;
  margin-bottom: 30px;
  animation: slideDown 1s ease-out;
}
@keyframes slideDown{
  from{ opacity: 0; transform: translateY(-50px); }
  to  { opacity: 1; transform: translateY(0); }
}

.trophy{
  font-size: 80px;
  display: inline-block;
  filter: drop-shadow(0 10px 20px rgba(255,215,0,0.5));
  animation: trophyFloat 3s ease-in-out infinite;
}
@keyframes trophyFloat{
  0%, 100%{ transform: translateY(0)    rotate(-5deg); }
  50%     { transform: translateY(-15px) rotate(5deg);  }
}

.title{
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 900;
  background: linear-gradient(135deg, #00f5ff 0%, #00ff88 50%, #ffd700 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 30px rgba(0,245,255,0.3);
  margin: 15px 0;
  letter-spacing: -1px;
}

.subtitle{
  font-size: clamp(14px, 2.5vw, 18px);
  color: #a0c4ff;
  font-weight: 300;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

/* ===== کارت اصلی ===== */
.card-3d{
  width: 100%;
  max-width: 900px;
  background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 30px;
  padding: clamp(20px, 4vw, 40px);
  box-shadow:
    0 25px 50px rgba(0,0,0,0.5),
    inset 0 1px 0 rgba(255,255,255,0.2);
  transform-style: preserve-3d;
  animation: cardAppear 1.2s ease-out;
  position: relative;
  overflow: hidden;
}
.card-3d::before{
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.05) 50%, transparent 70%);
  animation: shine 6s infinite linear;
  pointer-events: none;
}
@keyframes shine{
  from{ transform: translateX(-100%) rotate(45deg); }
  to  { transform: translateX(100%)  rotate(45deg); }
}
@keyframes cardAppear{
  from{ opacity: 0; transform: translateY(50px) scale(0.95); }
  to  { opacity: 1; transform: translateY(0)    scale(1);    }
}

/* ===== تب‌ها ===== */
.tabs{
  display: flex;
  gap: 10px;
  margin-bottom: 30px;
  background: rgba(0,0,0,0.3);
  padding: 8px;
  border-radius: 20px;
  border: 1px solid var(--border);
}
.tab-btn{
  flex: 1;
  padding: 12px 20px;
  background: transparent;
  border: none;
  color: #a0a8c0;
  font-size: clamp(13px, 2vw, 15px);
  font-weight: 700;
  cursor: pointer;
  border-radius: 15px;
  transition: all 0.3s;
  font-family: inherit;
}
.tab-btn.active{
  background: linear-gradient(135deg, #00f5ff 0%, #00ff88 100%);
  color: #001e3c;
  box-shadow: 0 5px 20px rgba(0,245,255,0.4);
  transform: translateY(-2px);
}

/* ===== محتوای تب ===== */
.tab-content{
  display: none;
  animation: fadeIn 0.5s;
}
.tab-content.active{
  display: block;
}
@keyframes fadeIn{
  from{ opacity: 0; transform: translateY(20px); }
  to  { opacity: 1; transform: translateY(0);    }
}

/* ===== بخش راهنما ===== */
.info-section{
  background: rgba(0,0,0,0.3);
  border-radius: 20px;
  padding: clamp(15px, 3vw, 25px);
  border-right: 4px solid var(--primary);
  line-height: 2;
  font-size: clamp(14px, 2vw, 16px);
  color: #e0e8ff;
}
.info-section p{ margin-bottom: 15px; }
.info-section strong{ color: var(--gold); font-weight: 700; }

.step{
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 15px;
  background: rgba(255,255,255,0.05);
  border-radius: 15px;
  margin: 12px 0;
  transition: all 0.3s;
  border: 1px solid transparent;
}
.step:hover{
  background: rgba(0,245,255,0.1);
  border-color: var(--primary);
  transform: translateX(-5px);
}
.step-num{
  flex-shrink: 0;
  width: 45px; height: 45px;
  background: linear-gradient(135deg, #00f5ff 0%, #00ff88 100%);
  color: #001e3c;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 20px;
  box-shadow: 0 5px 15px rgba(0,245,255,0.4);
}
.step-content{ flex: 1; }
.step-content h4{
  color: var(--gold);
  margin-bottom: 5px;
  font-size: clamp(14px, 2vw, 16px);
}
.step-content p{
  font-size: clamp(13px, 1.8vw, 15px);
  color: #c0d0ff;
  line-height: 1.8;
}

.prizes-title{
  margin-top: 25px;
  color: var(--gold);
  text-align: center;
  font-size: clamp(18px, 3vw, 22px);
}

.prizes{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  margin-top: 20px;
}
.prize-card{
  background: linear-gradient(135deg, rgba(255,215,0,0.15) 0%, rgba(255,215,0,0.05) 100%);
  border: 1px solid rgba(255,215,0,0.3);
  border-radius: 15px;
  padding: 20px;
  text-align: center;
  transition: all 0.3s;
  cursor: pointer;
}
.prize-card:hover{
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 15px 30px rgba(255,215,0,0.2);
  border-color: var(--gold);
}
.prize-icon{ font-size: 40px; margin-bottom: 10px; display: block; }
.prize-amount{
  font-size: clamp(16px, 2.5vw, 22px);
  font-weight: 900;
  color: var(--gold);
  margin: 5px 0;
}
.prize-label{ font-size: 13px; color: #a0c4ff; }

/* ===== فرم ثبت نام ===== */
.form-title{
  color: var(--primary);
  margin-bottom: 20px;
  font-size: clamp(18px, 3vw, 22px);
  text-align: center;
}

.form-3d{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 20px;
}
.form-group{
  position: relative;
  transform-style: preserve-3d;
}
.form-group.full{ grid-column: 1 / -1; }
.form-group label{
  display: block;
  margin-bottom: 8px;
  color: var(--primary);
  font-size: 14px;
  font-weight: 700;
}
.form-group input{
  width: 100%;
  padding: 14px 18px;
  background: rgba(0,0,0,0.4);
  border: 2px solid var(--border);
  border-radius: 12px;
  color: #fff;
  font-size: 15px;
  font-family: inherit;
  transition: all 0.3s;
  outline: none;
}
.form-group input:focus{
  border-color: var(--primary);
  box-shadow: 0 0 20px rgba(0,245,255,0.3);
  transform: translateZ(10px);
  background: rgba(0,245,255,0.05);
}
.form-group input::placeholder{ color: #6080a0; }

.help-text{
  grid-column: 1 / -1;
  font-size: 13px;
  color: #88aacc;
  background: rgba(255,215,0,0.1);
  padding: 12px;
  border-radius: 10px;
  border-right: 3px solid var(--gold);
  line-height: 1.8;
}

.submit-btn{
  grid-column: 1 / -1;
  padding: 18px;
  background: linear-gradient(135deg, #00f5ff 0%, #00ff88 100%);
  border: none;
  border-radius: 15px;
  color: #001e3c;
  font-size: clamp(15px, 2vw, 18px);
  font-weight: 900;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.3s;
  box-shadow: 0 10px 30px rgba(0,245,255,0.4);
  margin-top: 10px;
  position: relative;
  overflow: hidden;
}
.submit-btn:hover{
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0,245,255,0.6);
}
.submit-btn:active{ transform: translateY(0); }
.submit-btn::before{
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  transition: left 0.6s;
}
.submit-btn:hover::before{ left: 100%; }

.copy-btn{
  background: linear-gradient(135deg, #ffd700 0%, #ff8800 100%) !important;
  color: #001e3c !important;
  box-shadow: 0 10px 30px rgba(255,215,0,0.4) !important;
}

/* ===== پیام خطا ===== */
.error-box{ text-align: center; padding: clamp(30px, 5vw, 50px) 20px; }
.error-icon{
  font-size: 100px;
  display: block;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 20px rgba(255,56,96,0.6));
  animation: shake 2s infinite;
}
@keyframes shake{
  0%, 100%{ transform: rotate(0deg);  }
  25%     { transform: rotate(-10deg);}
  75%     { transform: rotate(10deg); }
}
.error-title{
  font-size: clamp(22px, 4vw, 32px);
  color: var(--danger);
  margin-bottom: 15px;
  font-weight: 900;
}
.error-text{
  color: #c0d0ff;
  font-size: clamp(14px, 2vw, 17px);
  line-height: 2;
  margin-bottom: 25px;
}

/* ===== کلمات بازیابی ===== */
.recovery-title{
  color: var(--gold);
  text-align: center;
  margin: 25px 0 10px;
  font-size: clamp(18px, 3vw, 22px);
}

.recovery-words{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
  margin: 25px 0;
}
.word-item{
  background: linear-gradient(135deg, rgba(0,245,255,0.15) 0%, rgba(0,255,136,0.05) 100%);
  border: 1px solid var(--primary);
  border-radius: 12px;
  padding: 15px 10px;
  text-align: center;
  font-weight: 700;
  color: var(--primary);
  font-size: 15px;
  position: relative;
  transition: all 0.3s;
}
.word-item::before{
  content: attr(data-num);
  position: absolute;
  top: -10px; right: -10px;
  width: 28px; height: 28px;
  background: var(--gold);
  color: #001e3c;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 900;
}
.word-item:hover{
  transform: scale(1.05) rotate(2deg);
  box-shadow: 0 10px 25px rgba(0,245,255,0.3);
}

.warning-box{
  background: linear-gradient(135deg, rgba(255,56,96,0.2) 0%, rgba(255,56,96,0.05) 100%);
  border: 2px solid var(--danger);
  border-radius: 15px;
  padding: 20px;
  margin: 20px 0;
  text-align: center;
  animation: warningPulse 2s infinite;
}
@keyframes warningPulse{
  0%, 100%{ box-shadow: 0 0 20px rgba(255,56,96,0.3); }
  50%     { box-shadow: 0 0 40px rgba(255,56,96,0.6); }
}
.warning-box strong{
  color: var(--danger);
  display: block;
  margin-bottom: 8px;
  font-size: 18px;
}

.success-icon{
  font-size: 80px;
  display: block;
  margin: 0 auto 20px;
  filter: drop-shadow(0 0 30px rgba(0,255,136,0.6));
  animation: successPop 1s ease-out;
}
@keyframes successPop{
  0%  { transform: scale(0);   }
  50% { transform: scale(1.3); }
  100%{ transform: scale(1);   }
}

.success-title{
  font-size: clamp(24px, 4vw, 36px);
  color: var(--secondary);
  margin-bottom: 15px;
  font-weight: 900;
  text-align: center;
}

.info-note{
  background: rgba(0,245,255,0.1);
  border-right: 4px solid var(--primary);
  padding: 15px;
  border-radius: 10px;
  margin: 15px 0;
  font-size: 14px;
  line-height: 1.8;
  color: #d0e0ff;
}

/* ===== ریسپانسیو ===== */
@media (max-width: 768px){
  .form-3d{ grid-template-columns: 1fr; gap: 15px; }
  .prizes{ grid-template-columns: 1fr 1fr; }
  .recovery-words{ grid-template-columns: repeat(2, 1fr); }
  .tabs{ flex-direction: column; }
  .goal-3d{ width: 150px; height: 100px; bottom: 2%; right: 2%; }
  .float-ball{ width: 40px; height: 40px; }
  .float-ball:nth-child(5){ width: 50px; height: 50px; }
}

@media (max-width: 480px){
  .prizes{ grid-template-columns: 1fr; }
  .recovery-words{ grid-template-columns: 1fr 1fr; }
  .container{ padding: 10px; }
  .trophy{ font-size: 60px; }
}

/* ===== اسکرول‌بار ===== */
::-webkit-scrollbar{ width: 10px; }
::-webkit-scrollbar-track{ background: #0a1929; }
::-webkit-scrollbar-thumb{
  background: linear-gradient(180deg, #00f5ff, #00ff88);
  border-radius: 5px;
}

/* ===== فوتر ===== */
.footer{
  position: relative;
  z-index: 10;
  width: 100%;
  background: linear-gradient(180deg, rgba(0,0,0,0.6) 0%, rgba(10,25,41,0.95) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(0,245,255,0.2);
  margin-top: 50px;
  padding: clamp(30px, 5vw, 50px) 20px 20px;
  box-shadow: 0 -10px 40px rgba(0,245,255,0.1);
}

/* خط نورانی بالای فوتر */
.footer::before{
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #00f5ff, #00ff88, #ffd700, transparent);
  animation: lineGlow 3s infinite linear;
}

@keyframes lineGlow{
  0%  { background-position: -100% 0; }
  100%{ background-position: 200% 0;  }
}

.footer-content{
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 30px;
}

.footer-col h4{
  color: var(--primary);
  font-size: clamp(15px, 2vw, 17px);
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(0,245,255,0.2);
  display: inline-block;
}

/* ستون اول: لوگو */
.footer-logo{
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}
.footer-trophy{
  font-size: 40px;
  filter: drop-shadow(0 0 10px rgba(255,215,0,0.5));
  animation: trophyFloat 3s ease-in-out infinite;
}
.footer-logo h3{
  font-size: clamp(16px, 2vw, 18px);
  background: linear-gradient(135deg, #00f5ff, #00ff88);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0;
}
.footer-desc{
  color: #a0c4ff;
  font-size: clamp(13px, 1.8vw, 14px);
  line-height: 1.8;
}

/* لینک‌ها */
.footer-links, .footer-contact{
  list-style: none;
  padding: 0;
}
.footer-links li, .footer-contact li{
  margin-bottom: 10px;
  color: #c0d0ff;
  font-size: clamp(13px, 1.8vw, 14px);
  transition: all 0.3s;
}
.footer-links a{
  color: #c0d0ff;
  text-decoration: none;
  transition: all 0.3s;
  display: inline-block;
}
.footer-links a:hover{
  color: var(--primary);
  transform: translateX(-5px);
}

/* شبکه‌های اجتماعی */
.social-links{
  display: flex;
  gap: 10px;
  margin-top: 15px;
}
.social-btn{
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  text-decoration: none;
  transition: all 0.3s;
}
.social-btn:hover{
  background: linear-gradient(135deg, #00f5ff, #00ff88);
  transform: translateY(-3px) rotate(-5deg);
  box-shadow: 0 5px 15px rgba(0,245,255,0.4);
}

/* اینماد */
.enamad-col{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.enamad-wrapper{
  background: linear-gradient(135deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.03) 100%);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 15px;
  padding: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 100%;
  max-width: 160px;
  transition: all 0.3s;
  cursor: pointer;
}
.enamad-wrapper:hover{
  background: rgba(255,215,0,0.1);
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255,215,0,0.2);
}
.enamad-link{
  display: block;
  background: #fff;
  border-radius: 10px;
  padding: 5px;
  transition: transform 0.3s;
}
.enamad-link:hover{
  transform: scale(1.05);
}
.enamad-img{
  display: block;
  width: 110px;
  height: 110px;
  cursor: pointer;
  border-radius: 8px;
}
.enamad-text{
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
  margin: 0;
  text-align: center;
}
.enamad-subtext{
  color: #a0c4ff;
  font-size: 11px;
  margin: 0;
  text-align: center;
}

/* خط جداکننده */
.footer-divider{
  max-width: 1200px;
  margin: 30px auto 20px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,245,255,0.3), transparent);
}

/* کپی‌رایت */
.footer-bottom{
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  color: #88aacc;
  font-size: clamp(12px, 1.8vw, 14px);
}
.footer-bottom strong{
  color: var(--primary);
}
.footer-mini{
  margin-top: 8px;
  font-size: 12px;
  color: #6080a0;
}

/* ===== ریسپانسیو فوتر ===== */
@media (max-width: 968px){
  .footer-content{
    grid-template-columns: 1fr 1fr;
    gap: 25px;
  }
}

@media (max-width: 600px){
  .footer-content{
    grid-template-columns: 1fr;
    gap: 25px;
    text-align: center;
  }
  .footer-logo, .social-links{
    justify-content: center;
  }
  .enamad-wrapper{
    margin: 0 auto;
  }
  .footer-links a:hover{
    transform: translateX(0);
  }
}