@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;800&family=Nunito:wght@900&display=swap');

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

.toast {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: #1a1a1a;
  color: #fff;
  padding: 12px 28px;
  border-radius: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 9999;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.toast-show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.toast-hide {
  opacity: 0;
  transform: translateX(-50%) translateY(-10px);
}

.coming-soon-banner {
  position: fixed;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #f97316, #fbbf24);
  color: #000;
  padding: 14px 32px;
  border-radius: 14px;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  z-index: 99999;
  pointer-events: none;
  box-shadow: 0 8px 32px rgba(249, 115, 22, 0.3);
  transition: top 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.5s ease;
  opacity: 0;
  white-space: nowrap;
}

.coming-soon-banner.show {
  top: 30px;
  opacity: 1;
}

.coming-soon-banner.hide {
  top: -80px;
  opacity: 0;
}

body {
  font-family: 'Inter', sans-serif;
  background: #0d0d0d;
  color: #fff;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px;
}

.container {
  margin-top: 70px;
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  grid-template-rows: auto auto auto;
  gap: 30px;
  max-width: 1320px;
  width: 100%;
}

.card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.7);
}

.card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.card-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 24px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.card-label {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #fff;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* KART 1: Logo (kare) */
.card-logo {
  grid-column: 1 / 2;
  grid-row: 1 / 2;
  background: transparent;
  border: none;
  outline: none;
  aspect-ratio: 1;
  min-height: 0;
  padding: 0;
}

.logo-img {
  width: 101%;
  height: 101%;
  margin: -0.5%;
  object-fit: cover;
  display: block;
  transform: translateZ(0);
}

/* KART 2: play.rastcraftnw.com (logo altı) */
.card-domain {
  grid-column: 1 / 2;
  grid-row: 2 / 3;
  background: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.08);
  min-height: 70px;
  cursor: pointer;
  transition: background 0.3s;
}

.card-domain:hover {
  background: #2a2a2a;
}

.card-domain .card-content {
  flex-direction: row;
  gap: 10px;
  padding: 16px 20px;
}

.card-domain .copy-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.card-domain .card-content span {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 1.2rem;
  color: #fff;
  letter-spacing: 0.5px;
}

/* KART 3: Store (dikey uzatılmış) */
.card-store {
  grid-column: 2 / 3;
  grid-row: 1 / 3;
  background: #0a0a0a;
  border: none;
}

.card-store .card-bg {
  opacity: 0.7;
}

.card-store .card-content {
  justify-content: flex-start;
  align-items: flex-start;
}

/* KART 4: Discord (dikey uzatılmış) */
.card-discord {
  grid-column: 3 / 4;
  grid-row: 1 / 3;
  background: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.card-discord .card-bg {
  opacity: 0.04;
}

.card-discord .card-content {
  align-items: flex-start;
  justify-content: flex-start;
  position: relative;
}



.discord-center {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 24px;
}

.discord-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
}

#member-count {
  font-size: 3.2rem;
  font-weight: 800;
  color: #fff;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.stat-desc {
  font-size: 1.3rem;
  color: #ddd;
  letter-spacing: 0.5px;
}

.stat-online {
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
}

.stat-label {
  font-size: 1.15rem;
  color: #aaa;
  letter-spacing: 0.5px;
}

.discord-stats {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.stat-number {
  font-size: 2.2rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.stat-row {
  display: flex;
  align-items: center;
  gap: 6px;
}

.online-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  display: inline-block;
  flex-shrink: 0;
}

/* ALT: Stats + HowToJoin */
.card-bottom {
  grid-column: 1 / 4;
  grid-row: 3 / 4;
  display: flex;
  gap: 30px;
}

.card-bottom .card {
  flex: 1;
  min-height: 260px;
  border: 1px solid rgba(255, 107, 53, 0.15);
}

.card-bottom .card-join,
.card-bottom .card-support,
.card-bottom .card-apply {
  background: #0a0a0a;
  border: none;
}

.card-join .card-bg,
.card-support .card-bg,
.card-apply .card-bg {
  opacity: 0.55;
}

.card-join .card-content,
.card-support .card-content,
.card-apply .card-content {
  align-items: flex-start;
  justify-content: flex-start;
}

/* RESPONSIVE TABLET */
@media (max-width: 960px) {
  .container {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .card-logo {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
  }

  .card-domain {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
  }

  .card-store {
    grid-column: 2 / 3;
    grid-row: 1 / 3;
  }

  .card-discord {
    grid-column: 1 / 3;
    grid-row: 3 / 4;
    min-height: 180px;
  }

  .card-bottom {
    grid-column: 1 / 3;
    grid-row: 4 / 5;
  }
}

/* RESPONSIVE MOBIL */
@media (max-width: 640px) {
  .container {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .card-logo,
  .card-domain,
  .card-store,
  .card-discord,
  .card-bottom {
    grid-column: 1 / 2;
  }

  .card-logo { grid-row: auto; }
  .card-domain { grid-row: auto; }
  .card-store { grid-row: auto; }
  .card-discord { grid-row: auto; }
  .card-bottom {
    grid-row: auto;
    flex-direction: column;
  }

  .card {
    min-height: 170px;
  }

  .card-domain {
    min-height: 60px;
  }

  .logo-img {
    width: 100%;
  }

  .discord-icon {
    width: 44px;
    height: 44px;
  }

  .stat-number {
    font-size: 1.7rem;
  }

}

/* SCROLLBAR */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #0d0d0d;
  border: 1px solid rgba(255, 107, 53, 0.05);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #ff6b35, #cc5500);
  border-radius: 5px;
  border: 2px solid #0d0d0d;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #ff8533, #ff6b35);
}

/* Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: #ff6b35 #0d0d0d;
}

/* MODAL */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.modal-box {
  background: #1a120e;
  border: 1px solid rgba(255, 107, 53, 0.2);
  border-radius: 24px;
  padding: 50px 40px 40px;
  max-width: 480px;
  width: 90%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  color: #888;
  font-size: 1.4rem;
  cursor: pointer;
  transition: color 0.3s;
}

.modal-close:hover {
  color: #ff6b35;
}

.modal-body p {
  color: #ccc;
  font-size: 1rem;
  line-height: 1.8;
  text-align: center;
}

.modal-warn {
  color: #ff6b35 !important;
  font-size: 0.9rem !important;
  font-weight: 600;
  background: rgba(255, 107, 53, 0.08);
  padding: 12px 16px;
  border-radius: 10px;
  margin-top: 4px;
}

.modal-warn.blue {
  color: #60a5fa !important;
  background: rgba(96, 165, 250, 0.1);
}

.modal-btn {
  display: inline-block;
  background: linear-gradient(135deg, #ff6b35, #e65c00);
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 16px 40px;
  border-radius: 14px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.modal-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(255, 107, 53, 0.35);
}

/* ADMIN LOGIN MODAL */
.admin-modal-box {
  max-width: 380px;
  padding: 40px 30px 30px;
}
.admin-login-title {
  color: #fbbf24;
  font-size: 1.3rem;
  text-align: center;
  margin-bottom: 8px;
  font-weight: 800;
}
.admin-login-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}
.admin-login-form input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  background: #2a2a2a;
  color: #fff;
  font-size: 0.95rem;
  outline: none;
  transition: border 0.2s;
  box-sizing: border-box;
}
.admin-login-form input:focus {
  border-color: #fbbf24;
}
.admin-login-form button {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 8px;
  background: linear-gradient(135deg, #ff6b35, #fbbf24);
  color: #000;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: opacity 0.2s;
}
.admin-login-form button:hover { opacity: 0.9; }
.admin-login-form button:disabled { opacity: 0.5; cursor: not-allowed; }
.admin-error {
  color: #ff4444;
  text-align: center;
  font-size: 0.85rem;
  min-height: 20px;
}

/* BAŞVURU MODAL - Orange/Yellow Theme */
.app-modal-box {
  max-width: 560px;
  padding: 40px 36px 36px;
  gap: 20px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.app-heading {
  color: #fbbf24;
  font-size: 1.3rem;
  font-weight: 800;
  text-align: center;
  width: 100%;
}

.app-desc {
  color: #aaa;
  font-size: 0.9rem;
  text-align: left;
  width: 100%;
  line-height: 1.6;
}

/* Info box (like modal-warn) */
.app-info {
  width: 100%;
  color: #60a5fa;
  font-size: 0.85rem;
  font-weight: 600;
  background: rgba(96, 165, 250, 0.1);
  padding: 12px 16px;
  border-radius: 10px;
  margin-top: 16px;
  line-height: 1.6;
  text-align: center;
}

/* Prereq list */
.app-prereq-list { width: 100%; margin-top: 4px; }
.prereq-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: rgba(255,107,53,0.06);
  border: 1px solid rgba(255,107,53,0.12);
  border-radius: 8px;
  margin-bottom: 6px;
  color: #ccc;
  font-size: 0.85rem;
}
.prereq-item::before {
  content: '→';
  color: #fbbf24;
  font-weight: 700;
  flex-shrink: 0;
}

/* Steps */
.app-steps {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-bottom: 20px;
  padding: 12px 16px;
  background: rgba(255,107,53,0.04);
  border: 1px solid rgba(255,107,53,0.1);
  border-radius: 10px;
  flex-wrap: wrap;
}
.app-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  cursor: default;
}
.app-step-circle {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 700;
  transition: all 0.2s ease;
  color: rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.06);
  border: 2px solid rgba(255,255,255,0.08);
}
.app-step.done .app-step-circle {
  background: #22c55e;
  border-color: #22c55e;
  color: #fff;
}
.app-step.active .app-step-circle {
  background: linear-gradient(135deg, #ff6b35, #fbbf24);
  border-color: #fbbf24;
  color: #000;
  box-shadow: 0 0 14px rgba(251,191,36,0.4);
}
.app-step-label {
  font-size: 0.55rem;
  color: rgba(255,255,255,0.3);
  white-space: nowrap;
}
.app-step.active .app-step-label { color: #fbbf24; }
.app-step.done .app-step-label { color: #22c55e; }

/* Warning */
.app-warning {
  width: 100%;
  padding: 10px 14px;
  background: rgba(255,68,68,0.12);
  border: 1px solid rgba(255,68,68,0.25);
  border-radius: 8px;
  color: #ff4444;
  font-size: 0.82rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 10px;
  box-sizing: border-box;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.app-warning-show {
  opacity: 1;
  transform: translateY(0);
}
.app-warning-hide {
  opacity: 0;
  transform: translateY(-8px);
}

/* Shake */
@keyframes appShake {
  0%, 100% { transform: translateX(0); }
  10%, 30%, 50%, 70%, 90% { transform: translateX(-6px); }
  20%, 40%, 60%, 80% { transform: translateX(6px); }
}
.app-shake {
  animation: appShake 0.5s ease-in-out;
}

/* Questions container */
.app-questions-container {
  width: 100%;
  min-height: 120px;
}

.app-question {
  width: 100%;
  text-align: left;
}
.app-question label {
  display: block;
  color: #e0e0e0;
  font-size: 0.92rem;
  font-weight: 600;
  margin-bottom: 10px;
}
.app-question input[type="text"],
.app-question textarea,
.app-question select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  background: #2a2a2a;
  color: #fff;
  font-size: 0.92rem;
  outline: none;
  transition: border 0.2s;
  box-sizing: border-box;
  font-family: inherit;
}
.app-question input[type="text"]:focus,
.app-question textarea:focus,
.app-question select:focus {
  border-color: #fbbf24;
}
.app-question input[type="text"]::placeholder,
.app-question textarea::placeholder {
  color: rgba(255,255,255,0.3);
}
.app-question textarea {
  resize: vertical;
  min-height: 80px;
}
.app-question .char-count {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.3);
  text-align: right;
  margin-top: 4px;
}
.app-question .choice-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  margin-bottom: 4px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px;
  transition: background 0.2s;
  cursor: pointer;
}
.app-question .choice-option:hover { background: rgba(255,107,53,0.06); }
.app-question .choice-option.selected { background: rgba(251,191,36,0.1); border-color: rgba(251,191,36,0.25); }
.app-question .choice-option input[type="radio"] {
  accent-color: #fbbf24;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  cursor: pointer;
}
.app-question .choice-option label {
  margin: 0;
  font-weight: 400;
  font-size: 0.85rem;
  cursor: pointer;
  color: #ccc;
}

/* Navigation */
.app-nav {
  display: flex;
  gap: 10px;
  margin-top: 20px;
  width: 100%;
}

.app-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 8px;
  height: 44px;
  padding: 0 24px;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  transition: opacity 0.2s;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.app-btn:disabled { opacity: 0.5; cursor: not-allowed; }
.app-btn-primary {
  background: linear-gradient(135deg, #ff6b35, #fbbf24);
  color: #000;
}
.app-btn-primary:hover:not(:disabled) { opacity: 0.85; }
.app-btn-secondary {
  background: #2a2a2a;
  color: #aaa;
  border: 1px solid rgba(255,255,255,0.08);
}
.app-btn-secondary:hover:not(:disabled) { color: #fff; border-color: rgba(255,255,255,0.2); }
.app-btn-full { flex: 1; }

/* Success */
.app-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 30px 10px;
  gap: 16px;
}
.app-success-title {
  color: #22c55e;
  font-size: 1.15rem;
  font-weight: 800;
}
.app-success-desc {
  color: #aaa;
  font-size: 0.88rem;
  line-height: 1.7;
}

/* BIZE BILDIR MODAL - Orange Theme */
.support-modal-box {
  max-width: 520px;
  padding: 40px 36px 36px;
  gap: 20px;
  background: #1a120e;
  border: 1px solid rgba(255, 107, 53, 0.2);
  border-radius: 24px;
  width: 90%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.sup-category-list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 8px;
}

.sup-cat-item {
  display: flex;
  align-items: center;
  padding: 14px 18px;
  background: rgba(255,107,53,0.06);
  border: 1px solid rgba(255,107,53,0.12);
  border-radius: 10px;
  color: #e0e0e0;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.sup-cat-item:hover {
  background: rgba(255,107,53,0.12);
  border-color: rgba(255,107,53,0.25);
  transform: translateX(4px);
}

.sup-cat-item.sup-cat-highlight {
  padding: 18px 22px;
  font-size: 1rem;
  background: rgba(255,107,53,0.1);
  border-color: rgba(255,107,53,0.25);
  margin-bottom: 4px;
}

.sup-cat-item.sup-cat-highlight:hover {
  background: rgba(255,107,53,0.18);
  border-color: rgba(255,107,53,0.35);
}

.sup-cat-title {
  flex: 1;
}

/* Info banner */
.sup-info-banner {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  width: 100%;
  padding: 12px 16px;
  background: rgba(251,191,36,0.08);
  border: 1px solid rgba(251,191,36,0.2);
  border-radius: 10px;
  color: #fbbf24;
  font-size: 0.82rem;
  line-height: 1.6;
  margin-bottom: 18px;
}

/* File upload */
.sup-upload-area { width: 100%; }
.sup-drop-zone {
  width: 100%;
  padding: 20px;
  border: 2px dashed rgba(255,107,53,0.25);
  border-radius: 10px;
  text-align: center;
  color: #888;
  font-size: 0.85rem;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  box-sizing: border-box;
}
.sup-drop-zone:hover {
  border-color: rgba(255,107,53,0.5);
  background: rgba(255,107,53,0.04);
}
.sup-preview-container {
  display: flex;
  gap: 8px;
  margin-top: 10px;
  flex-wrap: wrap;
}
.sup-thumb {
  position: relative;
  width: 80px;
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
}
.sup-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sup-thumb-del {
  position: absolute;
  top: 2px;
  right: 2px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: none;
  background: rgba(0,0,0,0.6);
  color: #fff;
  font-size: 0.7rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* App type list */
.app-type-list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 8px;
}
.app-type-item {
  display: flex;
  align-items: center;
  padding: 16px 20px;
  background: rgba(255,107,53,0.06);
  border: 1px solid rgba(255,107,53,0.15);
  border-radius: 10px;
  color: #e0e0e0;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}
.app-type-item:hover {
  background: rgba(255,107,53,0.12);
  border-color: rgba(255,107,53,0.3);
  transform: translateX(4px);
}

/* Steps reuse from başvuru */
.sup-steps {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-bottom: 20px;
  padding: 12px 16px;
  background: rgba(255,107,53,0.04);
  border: 1px solid rgba(255,107,53,0.1);
  border-radius: 10px;
  flex-wrap: wrap;
  width: 100%;
}

/* Responsive */
@media (max-width: 768px) {
  .app-modal-box { padding: 30px 20px 24px; }
  .support-modal-box { padding: 30px 20px 24px; }
  .app-nav { flex-direction: column; }
  .app-btn { height: 48px; }
}

/* FOOTER */
.footer {
  margin-top: 20px;
  padding: 60px 30px 30px;
  max-width: 1320px;
  width: 100%;
  align-self: center;
}

.footer-container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
}

.footer-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #ff6b35;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.footer-text {
  font-size: 0.9rem;
  color: #999;
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-icon.faint {
  width: 28px;
  height: 28px;
  color: #ff6b35;
  opacity: 0.35;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-links li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #999;
  font-size: 0.9rem;
  cursor: pointer;
  transition: color 0.3s;
}

.footer-links li:hover {
  color: #ff6b35;
}

.footer-links li svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: #999;
  transition: color 0.3s;
}

.footer-links li:hover svg {
  color: #ff6b35;
}

.footer-links.plain li {
  padding-left: 0;
}

.footer-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin: 40px 0 30px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-bottom-left {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-bottom-left .brand {
  font-weight: 700;
  color: #ff6b35;
}

.footer-bottom-left .copy {
  color: #999;
  font-size: 0.85rem;
}

.powered {
  display: flex;
  gap: 4px;
  font-size: 0.85rem;
  margin-top: 4px;
}

.powered .dim {
  color: #999;
}

.lang-selector {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #ff6b35;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 8px 14px;
  border: 1px solid rgba(255, 107, 53, 0.25);
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s;
}

.lang-selector:hover {
  background: rgba(255, 107, 53, 0.08);
}

.lang-selector svg {
  width: 16px;
  height: 16px;
}

/* RESPONSIVE FOOTER */
@media (max-width: 960px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .footer {
    padding: 40px 20px 20px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
