:root {
  --bg: #0a2240;
  --accent: #f7e74e;
  --text: #ffffff;
  --muted: #c7d2e1;
  --card: #102c51;
  --danger: #ff6b6b;
  --success: #32d296;
  --border: rgba(255,255,255,.12);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  min-height: 100%;
}

body {
  display: flex;
  flex-direction: column;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: none !important;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: #021a44 url('/hitpet-arkaplan.png') repeat center top;
  z-index: -1;
}

body.modal-open { overflow: hidden; }

main { flex: 1 0 auto; }

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.small { font-size: 13px; }

.center-page {
  min-height: calc(100vh - 160px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px 0;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10, 34, 64, 0.94);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0;
  position: relative;
}

.site-logo img {
  height: 54px;
  width: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.main-nav a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  padding: 12px 18px;
  border-radius: 999px;
  transition: all .25s ease;
}

.main-nav a:hover,
.main-nav a:focus {
  color: #0a2240;
  background: #f7e74e;
  box-shadow: 0 6px 18px rgba(247, 231, 78, .25);
  transform: translateY(-1px);
}

.nav-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.nav-icon svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: .2s ease;
}

.main-nav a:hover .nav-icon svg {
  transform: scale(1.08);
}

/* Hamburger */
.mobile-menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  background: rgba(255,255,255,0.04);
  cursor: pointer;
  position: relative;
  transition: .25s ease;
}

.mobile-menu-toggle span {
  position: absolute;
  left: 12px;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 10px;
  transition: .25s ease;
}

.mobile-menu-toggle span:nth-child(1) { top: 15px; }
.mobile-menu-toggle span:nth-child(2) { top: 22px; }
.mobile-menu-toggle span:nth-child(3) { top: 29px; }

.mobile-menu-toggle:hover { border-color: #f7e74e; }
.mobile-menu-toggle:hover span { background: #f7e74e; }

.mobile-menu-toggle.open span:nth-child(1) {
  top: 22px;
  transform: rotate(45deg);
}

.mobile-menu-toggle.open span:nth-child(2) { opacity: 0; }

.mobile-menu-toggle.open span:nth-child(3) {
  top: 22px;
  transform: rotate(-45deg);
}

/* Generic forms */
.form-card {
  padding: 26px;
  max-width: 780px;
  margin: 32px auto;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 22px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

label {
  display: block;
  font-weight: 700;
  margin-bottom: 8px;
}

input,
textarea,
select {
  width: 100%;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: #0d2747;
  color: #fff;
  padding: 14px;
}

textarea {
  min-height: 130px;
  resize: vertical;
}

.notice-success,
.notice-error {
  padding: 14px 16px;
  border-radius: 14px;
  margin-bottom: 16px;
}

.notice-success {
  background: rgba(50,210,150,.16);
  color: #8df0c4;
}

.notice-error {
  background: rgba(255,107,107,.16);
  color: #ffd0d0;
}

.help {
  background: rgba(255,255,255,.05);
  border: 1px solid var(--border);
  padding: 14px;
  border-radius: 14px;
  color: var(--muted);
}

/* Banner */
.home-banner-wrap { padding: 28px 0 18px; }

.home-banner-box {
  overflow: hidden;
  border: 1px solid rgba(87, 187, 255, 0.18);
  box-shadow: 0 0 25px rgba(0, 174, 255, 0.12);
  background: rgba(1, 10, 40, .35);
}

.home-banner-img { width: 100%; }

/* Stories */
.stories-section { padding: 8px 0 30px; }

.stories-track {
  overflow: hidden;
  position: relative;
}

.stories-row {
  display: flex;
  align-items: flex-start;
  gap: 28px;
  width: max-content;
  animation: storiesMove 38s linear infinite;
}

.stories-track:hover .stories-row { animation-play-state: paused; }

.story-item {
  width: 118px;
  min-width: 118px;
  text-align: center;
  color: #cfd8e7;
}

.story-ring {
  width: 98px;
  height: 98px;
  margin: 0 auto 10px;
  padding: 3px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff7a00, #ff00b8, #f7e74e);
  display: flex;
  align-items: center;
  justify-content: center;
}

.story-ring img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #fff;
  background: #fff;
}

.story-name {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #cfd6e3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@keyframes storiesMove {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Posts */
.posts-section { padding: 10px 0 40px; }

.posts-grid-modern {
  display: grid;
  grid-template-columns: repeat(3, minmax(280px, 1fr));
  gap: 28px;
}

.post-modern-card {
  background: #f4f4f4;
  border-radius: 6px;
  overflow: visible;
  box-shadow: 0 2px 10px rgba(0,0,0,.18);
}

.post-open-btn {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;
}

.post-modern-image-wrap {
  background: #ddd;
  overflow: hidden;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
}

.post-modern-image-wrap img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.post-modern-body {
  background: #fff;
  padding: 18px 18px 14px;
}

.post-modern-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}

.post-modern-user {
  color: #10284a;
  font-size: 17px;
  font-weight: 800;
}

.post-modern-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.icon-btn {
  border: 0;
  background: transparent;
  color: #58677a;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  font-size: 15px;
  text-decoration: none;
  transition: .2s ease;
}

.icon-btn:hover { color: #e64b72; }
.like-btn.liked { color: #e64b72; }

.icon-btn .icon {
  font-size: 24px;
  line-height: 1;
}

.post-modern-note {
  color: #576577;
  font-size: 14px;
  line-height: 1.6;
}

/* Share */
.share-menu { position: relative; }
.share-toggle { padding: 0; }

.share-dropdown {
  position: absolute;
  right: 0;
  bottom: calc(100% + 10px);
  min-width: 170px;
  background: #ffffff;
  border: 1px solid rgba(16, 40, 74, 0.08);
  box-shadow: 0 12px 32px rgba(0,0,0,.16);
  border-radius: 12px;
  padding: 8px;
  display: none;
  z-index: 999;
}

.share-menu.open .share-dropdown { display: block; }

.share-link {
  display: block;
  width: 100%;
  border: 0;
  background: transparent;
  text-align: left;
  padding: 10px 12px;
  border-radius: 8px;
  color: #10284a;
  font-size: 14px;
  cursor: pointer;
  transition: .2s ease;
}

.share-link:hover {
  background: #f4f7fb;
  color: #0a2240;
}

/* Modal */
.post-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: none;
}

.post-modal.open { display: block; }

.post-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
}

.post-modal-dialog {
  position: relative;
  width: min(92vw, 860px);
  max-height: 90vh;
  margin: 5vh auto;
  background: #f3f3f3;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.35);
}

.post-modal-close {
  position: absolute;
  top: 12px;
  right: 14px;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: rgba(0,0,0,.55);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  z-index: 10;
}

.post-modal-content {
  max-height: 90vh;
  overflow-y: auto;
  background: #f3f3f3;
}

.post-modal-image-wrap {
  background: #fff;
  text-align: center;
}

.post-modal-image-wrap img {
  width: auto;
  max-width: 100%;
  max-height: 72vh;
  display: inline-block;
}

.post-modal-body {
  background: #f3f3f3;
  padding: 20px 22px 24px;
  text-align: center;
}

.post-modal-username {
  font-size: 20px;
  font-weight: 800;
  color: #10284a;
  margin-bottom: 18px;
}

.post-modal-note {
  font-size: 15px;
  line-height: 1.7;
  color: #5f6c7f;
  margin-bottom: 22px;
}

.post-modal-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

/* Single post */
.single-post-page { padding: 30px 0 10px; }

.single-post-card {
  width: min(860px, 100%);
  margin: 0 auto;
  background: #f3f3f3;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.22);
}

.single-post-image {
  background: #fff;
  text-align: center;
}

.single-post-image img {
  max-width: 100%;
  max-height: 75vh;
  width: auto;
  display: inline-block;
}

.single-post-body {
  padding: 24px;
  text-align: center;
  background: #f3f3f3;
}

.single-post-username {
  color: #10284a;
  font-size: 30px;
  font-weight: 800;
  margin-bottom: 18px;
}

.single-post-note {
  color: #5e6b7c;
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 24px;
}

.single-post-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

/* Submit page */
.submit-page-modern { padding: 34px 0 36px; }

.submit-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(1, 10, 40, 0.18);
}

.submit-rules-box,
.submit-form-box {
  padding: 18px 20px 22px;
  min-height: 720px;
}

.submit-rules-box {
  border-right: 1px solid rgba(255,255,255,0.18);
}

.submit-rules-box h2 {
  margin: 0 0 18px;
  color: #f7e74e;
  font-size: 28px;
  font-weight: 800;
}

.rule-item { margin-bottom: 18px; }

.rule-item h3 {
  margin: 0 0 4px;
  color: #ffffff;
  font-size: 15px;
  font-weight: 800;
}

.rule-item p {
  margin: 0;
  color: #e1e8f4;
  font-size: 14px;
  line-height: 1.45;
}

.submit-form-box h1 {
  margin: 0 0 6px;
  color: #f7e74e;
  font-size: 20px;
  font-weight: 800;
}

.submit-form-box h2 {
  margin: 0 0 8px;
  color: #ffffff;
  font-size: 17px;
  font-weight: 800;
}

.submit-intro {
  margin: 0 0 28px;
  color: #dce5f3;
  font-size: 15px;
  line-height: 1.55;
  max-width: 620px;
}

.submit-modern-form { max-width: 560px; }
.submit-field { margin-bottom: 20px; }

.submit-field label {
  display: block;
  margin-bottom: 10px;
  font-size: 15px;
  font-weight: 800;
  color: #ffffff;
}

.submit-field input[type="text"],
.submit-field input[type="email"],
.submit-field textarea {
  width: 100%;
  background: rgba(20, 37, 63, 0.92);
  border: 1px solid rgba(255,255,255,0.08);
  color: #ffffff;
  border-radius: 4px;
  padding: 14px 16px;
  font-size: 15px;
  outline: none;
}

.submit-field input[type="text"]::placeholder,
.submit-field textarea::placeholder {
  color: rgba(255,255,255,0.18);
}

.submit-field textarea {
  min-height: 86px;
}

.submit-help {
  margin-top: 6px;
  color: #c8d4e4;
  font-size: 14px;
  line-height: 1.45;
}

.upload-box {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.upload-box input[type="file"] {
  display: none;
}

.upload-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 220px;
  height: 52px;
  padding: 0 18px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.12);
  background: linear-gradient(180deg, #1a355d 0%, #10284a 100%);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: .25s ease;
  box-shadow: 0 8px 20px rgba(0,0,0,.18);
  line-height: 1.2;
}

.upload-btn:hover {
  border-color: #f7e74e;
  color: #f7e74e;
  transform: translateY(-1px);
}

.upload-file-name {
  color: #d9e3f2;
  font-size: 14px;
  line-height: 1.4;
}

.submit-btn-modern {
  min-width: 112px;
  height: 50px;
  border: 2px solid #f7e74e;
  background: transparent;
  color: #f7e74e;
  font-size: 24px;
  font-weight: 800;
  border-radius: 4px;
  cursor: pointer;
  transition: .25s ease;
}

.submit-btn-modern:hover {
  background: #f7e74e;
  color: #0a2240;
}

.submit-btn-premium {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  height: 56px;
  padding: 0 26px;
  border: 0;
  border-radius: 10px;
  background: linear-gradient(135deg, #f7e74e 0%, #ffd400 100%);
  color: #0a2240;
  font-size: 20px;
  font-weight: 900;
  box-shadow: 0 14px 30px rgba(247, 231, 78, 0.24);
  transition: .25s ease;
}

.submit-btn-premium:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(247, 231, 78, 0.32);
  background: linear-gradient(135deg, #fff17a 0%, #f7e74e 100%);
}

.submit-btn-premium span { position: relative; top: -1px; }

/* Footer */
.site-footer,
.footer-modern {
  margin-top: auto;
}

.site-footer {
  background: #0a2240;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-modern {
  background: #0a2240;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 44px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 18px 0;
  color: #d5dceb;
  font-size: 15px;
}

.footer-modern-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1.1fr 1fr;
  gap: 48px;
  align-items: start;
}

.footer-brand-logo img {
  height: 56px;
  width: auto;
  margin-bottom: 18px;
}

.footer-brand-text {
  color: #e6e8f1;
  font-size: 16px;
  line-height: 1.7;
  max-width: 320px;
}

.footer-modern-col h4 {
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  margin: 0 0 22px;
}

.footer-modern-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-modern-col li {
  margin-bottom: 14px;
}

.footer-modern-col a,
.footer-modern-col li {
  color: #f1f3fa;
  font-size: 16px;
  line-height: 1.6;
}

.footer-modern-col a:hover { color: #f7e74e; }

.footer-socials {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.footer-socials a {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: .25s ease;
  background: rgba(255,255,255,0.02);
}

.footer-socials a svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.footer-socials a:hover {
  background: #f7e74e;
  color: #1e2448;
  border-color: #f7e74e;
  transform: translateY(-1px);
}

/* Scroll top */
.scroll-top-btn {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 46px;
  height: 46px;
  border: 2px solid #f7e74e;
  background: rgba(7, 21, 42, 0.95);
  color: #f7e74e;
  border-radius: 10px;
  font-size: 22px;
  font-weight: 700;
  cursor: pointer;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all .25s ease;
  box-shadow: 0 8px 20px rgba(0,0,0,.25);
}

.scroll-top-btn.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top-btn:hover {
  background: #f7e74e;
  color: #0a2240;
}

/* Responsive */
@media (max-width: 1200px) {
  .posts-grid-modern {
    grid-template-columns: repeat(2, minmax(280px, 1fr));
  }
}

@media (max-width: 1100px) {
  .footer-modern-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

@media (max-width: 980px) {
  .form-row {
    grid-template-columns: 1fr;
  }

  .submit-layout {
    display: flex;
    flex-direction: column;
  }

  .submit-form-box {
    order: 1;
  }

  .submit-rules-box {
    order: 2;
    border-right: 0;
    border-top: 1px solid rgba(255,255,255,0.18);
    border-bottom: 0;
  }

  .submit-rules-box,
  .submit-form-box {
    min-height: auto;
  }
}

@media (max-width: 900px) {
  .mobile-menu-toggle {
    display: block;
    margin-left: auto;
  }

  .main-nav {
    display: none;
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    width: min(280px, calc(100vw - 24px));
    background: rgba(10, 34, 64, 0.98);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 10px;
    box-shadow: 0 18px 40px rgba(0,0,0,.30);
    z-index: 1200;
  }

  .main-nav.open {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }

  .main-nav a {
    width: 100%;
    padding: 12px 14px;
    border-radius: 10px;
  }

  .footer-modern-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-brand-logo img { height: 50px; }

  .footer-brand-text,
  .footer-modern-col a,
  .footer-modern-col li {
    font-size: 15px;
  }

  .footer-modern-col h4 { font-size: 17px; }
}

@media (max-width: 768px) {
  .posts-grid-modern {
    grid-template-columns: 1fr;
  }

  .post-modern-image-wrap img {
    height: 360px;
  }

  .story-item {
    width: 94px;
    min-width: 94px;
  }

  .story-ring {
    width: 82px;
    height: 82px;
  }

  .story-name {
    font-size: 13px;
  }

  .post-modal-dialog {
    width: min(94vw, 860px);
    margin: 3vh auto;
    max-height: 94vh;
  }

  .post-modal-image-wrap img {
    max-height: 58vh;
  }

  .post-modal-username,
  .single-post-username {
    font-size: 18px;
  }

  .post-modal-actions,
  .single-post-actions {
    gap: 16px;
  }
}
/* =========================
/* ===== Admin Dashboard Modern ===== */
.admin-page {
  padding: 28px 0 46px;
}

.admin-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 22px;
}

.admin-header h1 {
  margin: 0 0 8px;
  font-size: 32px;
  font-weight: 900;
  color: #fff;
}

.admin-subtitle {
  margin: 0;
  color: #d4deec;
  font-size: 16px;
}

.admin-filter-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.admin-tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  transition: .2s ease;
}

.admin-tab:hover,
.admin-tab.active {
  background: #f7e74e;
  color: #0a2240;
  border-color: #f7e74e;
}

.admin-tab.danger:hover {
  background: #ff6b6b;
  color: #fff;
  border-color: #ff6b6b;
}

.admin-summary {
  display: grid;
  grid-template-columns: repeat(4, minmax(160px, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

.admin-summary-card {
  background: rgba(16, 44, 81, 0.96);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 10px 24px rgba(0,0,0,.18);
}

.admin-summary-card span {
  display: block;
  color: #c7d2e1;
  font-size: 14px;
  margin-bottom: 8px;
}

.admin-summary-card strong {
  display: block;
  color: #f7e74e;
  font-size: 34px;
  line-height: 1;
  font-weight: 900;
}

.admin-table-wrap,
.admin-blog-form-card,
.admin-blog-list-card {
  background: rgba(16, 44, 81, 0.96);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 14px 30px rgba(0,0,0,.18);
}

.admin-table-scroll {
  overflow-x: auto;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 980px;
}

.admin-table thead th {
  background: rgba(255,255,255,.03);
  color: #f7e74e;
  font-size: 15px;
  font-weight: 900;
  text-align: left;
  padding: 18px 16px;
}

.admin-table tbody td {
  padding: 18px 16px;
  border-top: 1px solid rgba(255,255,255,.07);
  color: #eef3fb;
  vertical-align: middle;
}

.admin-table tbody tr:hover td {
  background: rgba(255,255,255,.02);
}

.admin-post-thumb {
  width: 90px;
  height: 64px;
  border-radius: 12px;
  object-fit: cover;
  background: #17355b;
  display: block;
}

.admin-user-block {
  max-width: 260px;
}

.admin-user-name {
  color: #fff;
  font-size: 15px;
  font-weight: 900;
  margin-bottom: 6px;
}

.admin-user-note {
  color: #c7d2e1;
  font-size: 13px;
  line-height: 1.45;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.status-badge.approved {
  background: rgba(50,210,150,.16);
  color: #8df0c4;
}

.status-badge.pending {
  background: rgba(247,231,78,.16);
  color: #f7e74e;
}

.status-badge.rejected {
  background: rgba(255,107,107,.16);
  color: #ffb2b2;
}

.admin-action-group {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.admin-action-group form {
  margin: 0;
}

.admin-action-btn {
  min-height: 36px;
  padding: 0 14px;
  border: 0;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
  transition: .2s ease;
}

.admin-action-btn.approve {
  background: rgba(50,210,150,.16);
  color: #8df0c4;
}

.admin-action-btn.pending {
  background: rgba(247,231,78,.16);
  color: #f7e74e;
}

.admin-action-btn.reject {
  background: rgba(255,107,107,.16);
  color: #ffb2b2;
}

.admin-action-btn:hover:not(:disabled) {
  transform: translateY(-1px);
  filter: brightness(1.08);
}

.admin-action-btn:disabled {
  opacity: .35;
  cursor: not-allowed;
  filter: none;
  transform: none;
}

/* Blog management */
.admin-blog-layout {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 20px;
}

.admin-blog-form-card,
.admin-blog-list-card {
  padding: 22px;
}

.admin-blog-form-card h2,
.admin-blog-list-card h2 {
  margin: 0 0 18px;
  font-size: 24px;
  color: #fff;
}

.admin-blog-field {
  margin-bottom: 16px;
}

.admin-blog-field label {
  display: block;
  margin-bottom: 8px;
  color: #fff;
  font-weight: 800;
}

.admin-blog-field input,
.admin-blog-field textarea {
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.12);
  background: #0d2747;
  color: #fff;
  padding: 14px;
}

.admin-blog-submit {
  min-height: 48px;
  padding: 0 18px;
  border: 0;
  border-radius: 12px;
  background: linear-gradient(135deg, #f7e74e 0%, #ffd400 100%);
  color: #0a2240;
  font-size: 15px;
  font-weight: 900;
  cursor: pointer;
  transition: .2s ease;
}

.admin-blog-submit:hover {
  transform: translateY(-1px);
  filter: brightness(1.03);
}

.admin-blog-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.admin-blog-item {
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
  padding: 16px;
  background: rgba(255,255,255,.02);
}

.admin-blog-item h3 {
  margin: 0 0 8px;
  font-size: 18px;
  color: #fff;
}

.admin-blog-item p,
.admin-blog-meta,
.admin-empty {
  margin: 0;
  color: #c7d2e1;
  line-height: 1.6;
  font-size: 14px;
}

.admin-blog-meta {
  margin-bottom: 8px;
}

@media (max-width: 980px) {
  .admin-header {
    flex-direction: column;
    align-items: stretch;
  }

  .admin-filter-tabs {
    justify-content: flex-start;
  }

  .admin-summary {
    grid-template-columns: 1fr 1fr;
  }

  .admin-blog-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .admin-summary {
    grid-template-columns: 1fr;
  }
}
.login-btn {
    width: 100%;
    padding: 16px; /* artırdık */
    margin-top: 24px; /* BURASI ÖNEMLİ */
    border-radius: 12px;
    border: none;
    background: linear-gradient(135deg, #f7e74e, #ffd700);
    color: #0a2240;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 4px 15px rgba(247, 231, 78, 0.3);
}

.login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(247, 231, 78, 0.5);
}

.login-btn:active {
    transform: scale(0.98);
}
.form-card input {
    margin-bottom: 14px;
}

/* ===== Blog Modern ===== */
.blog-page-modern {
  padding: 34px 0 42px;
}

.blog-page-head {
  margin-bottom: 24px;
}

.blog-page-head h1 {
  margin: 0 0 8px;
  font-size: 38px;
  font-weight: 900;
  color: #fff;
}

.blog-page-head p {
  margin: 0;
  color: #c7d2e1;
  font-size: 16px;
}

.blog-empty-card {
  background: rgba(16, 44, 81, 0.96);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 22px;
  padding: 24px;
  color: #dce5f3;
}

.blog-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(280px, 1fr));
  gap: 22px;
}

.blog-card-item {
  background: rgba(16, 44, 81, 0.96);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 14px 30px rgba(0,0,0,.18);
  transition: .25s ease;
}

.blog-card-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(0,0,0,.22);
  border-color: rgba(247,231,78,.30);
}

.blog-card-link {
  display: block;
  padding: 22px;
}

.blog-card-top {
  margin-bottom: 14px;
}

.blog-card-date {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(247,231,78,.12);
  color: #f7e74e;
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 14px;
}

.blog-card-top h2 {
  margin: 0;
  color: #fff;
  font-size: 22px;
  line-height: 1.35;
  font-weight: 900;
}

.blog-card-excerpt {
  margin: 0 0 18px;
  color: #dbe3ef;
  font-size: 15px;
  line-height: 1.7;
}

.blog-card-readmore {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 12px;
  background: linear-gradient(135deg, #f7e74e 0%, #ffd400 100%);
  color: #0a2240;
  font-size: 14px;
  font-weight: 900;
}

/* Blog detail */
.blog-detail-page {
  padding: 34px 0 42px;
}

.blog-detail-card {
  background: rgba(16, 44, 81, 0.96);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 14px 30px rgba(0,0,0,.18);
}

.blog-back-link {
  display: inline-flex;
  align-items: center;
  margin-bottom: 20px;
  color: #f7e74e;
  font-weight: 800;
  font-size: 14px;
}

.blog-detail-head {
  margin-bottom: 16px;
}

.blog-detail-head h1 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 38px;
  line-height: 1.2;
  font-weight: 900;
}

.blog-detail-date {
  color: #c7d2e1;
  font-size: 14px;
}

.blog-detail-excerpt {
  margin: 0 0 20px;
  color: #f7e74e;
  font-size: 18px;
  line-height: 1.7;
  font-weight: 700;
}

.blog-detail-content {
  color: #eef3fb;
  font-size: 17px;
  line-height: 1.9;
}

@media (max-width: 1100px) {
  .blog-card-grid {
    grid-template-columns: repeat(2, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .blog-card-grid {
    grid-template-columns: 1fr;
  }

  .blog-page-head h1,
  .blog-detail-head h1 {
    font-size: 30px;
  }

  .blog-detail-card {
    padding: 22px 18px;
  }

  .blog-detail-content {
    font-size: 16px;
  }
}