/*
BU SİTENİN TÜM KODLAMASI VE TASARIMI MOVYRA EKİBİ TARAFINDAN ÖZENLE YAZILMIŞ VE TASARLANMIŞTIR.
*/
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  background: #0b0b0b;
  background-image:
    radial-gradient(at 20% 30%, rgba(229, 9, 20, 0.08) 0px, transparent 50%),
    radial-gradient(at 80% 70%, rgba(20, 20, 30, 0.5) 0px, transparent 50%);
  font-family: "Segoe UI", Arial, sans-serif;
  color: #fff;
  padding: 40px 20px;
}


.admin-back-btn {
  position: fixed;
  top: 20px;
  right: 20px;
  padding: 12px 20px;
  background: rgba(30, 30, 30, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 14px;
  backdrop-filter: blur(10px);
  z-index: 999;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.admin-back-btn:hover {
  background: rgba(229, 9, 20, 0.2);
  border-color: rgba(229, 9, 20, 0.4);
  transform: translateY(-2px);
}


.admin-wrapper {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}


.admin-card {
  background: rgba(30, 30, 30, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 40px;
  backdrop-filter: blur(10px);
}


.card-header {
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.card-header h1 {
  font-size: 32px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.card-header h1 i {
  color: #e50914;
}

.subtitle {
  font-size: 15px;
  opacity: 0.6;
  margin: 0;
}


.form-section {
  margin-bottom: 24px;
}

.form-section label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #fff;
}

.form-section small {
  display: block;
  font-size: 12px;
  opacity: 0.5;
  margin-bottom: 8px;
}


input,
textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  font-size: 14px;
  font-family: inherit;
  transition: all 0.3s ease;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: #e50914;
  background: rgba(255, 255, 255, 0.08);
}

input::placeholder,
textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

input[readonly] {
  opacity: 0.6;
  cursor: not-allowed;
}

textarea {
  resize: vertical;
  min-height: 100px;
}


.row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
}


button {
  padding: 14px 20px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  background: #e50914;
  color: #fff;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
}

button:hover {
  background: #f40612;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(229, 9, 20, 0.3);
}

button:active {
  transform: translateY(0);
}

.save-btn {
  width: 100%;
  margin-top: 16px;
  padding: 16px;
  font-size: 16px;
}


.preview {
  margin-top: 12px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  max-width: 100%;
}

.preview.hidden {
  display: none;
}

.preview:not(.wide):not(.logo):not(.video) {
  max-width: 200px;
  height: auto;
}

.preview.wide {
  width: 100%;
  height: auto;
}

.preview.logo {
  max-width: 300px;
  height: auto;
  background: rgba(255, 255, 255, 0.05);
  padding: 20px;
}

.preview.video {
  width: 100%;
  height: 315px;
  border: none;
}


.status {
  margin-top: 16px;
  padding: 12px;
  border-radius: 8px;
  font-size: 14px;
  text-align: center;
  background: rgba(76, 175, 80, 0.1);
  border: 1px solid rgba(76, 175, 80, 0.3);
  color: #4caf50;
}

.status:empty {
  display: none;
}


.back-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
  padding: 12px;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.back-link:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
}


@media (max-width: 768px) {
  body {
    padding: 20px 15px;
  }

  .admin-card {
    padding: 24px;
  }

  .card-header h1 {
    font-size: 24px;
  }

  .row {
    grid-template-columns: 1fr;
  }

  .admin-back-btn {
    top: 10px;
    right: 10px;
    padding: 10px 16px;
    font-size: 13px;
  }
}


input[type="checkbox"],
input[type="radio"] {
  width: 18px;
  height: 18px;
  padding: 0;
  margin: 0;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.25);
  cursor: pointer;
  flex: 0 0 auto;
  accent-color: #e50914;
}



.ghost-btn{background:#1f2937;border:1px solid rgba(255,255,255,.12);color:#fff;padding:0 16px;border-radius:10px;cursor:pointer;white-space:nowrap}
.option-card{padding:16px 18px;border-radius:12px;margin:14px 0;border-left:3px solid transparent;background:rgba(255,255,255,.03)}
.option-card small{display:block;margin-top:6px;color:#b7bfd1}
.option-blue{background:rgba(59,130,246,.08);border-left-color:#3b82f6}
.option-green{background:rgba(16,185,129,.08);border-left-color:#10b981}
.option-purple{background:rgba(168,85,247,.08);border-left-color:#c084fc}
.option-orange{background:rgba(245,158,11,.08);border-left-color:#f59e0b}
