:root {
  --bg: #c0c0c0;
  --panel: #121317;
  --text: #ffffff;
  --muted: #b9bec7;
  --accent: #ffffff;
  --border: rgba(255,255,255,0.14);
  --white: #ffffff;
  --btn-border: rgba(0,0,0,0.12);
  --btn-shadow: 0 1px 2px rgba(0,0,0,.15), 0 8px 24px rgba(0,0,0,.25);
}

* { box-sizing: border-box; }

html, body {
  height: 100%;
}

body {
  margin: 0;
  background-color: var(--bg);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  max-width: 580px;
  margin: 20px auto;
  padding: 20px 16px 24px;
  min-height: calc(100vh - 40px);
  display: flex;
  flex-direction: column;
  background: url(../images/orkun-bg.webp) no-repeat center center;
  background-size: cover;
  position: relative;
  border-radius: 28px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  overflow: hidden;
}

.container::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
}

.container > * {
  position: relative;
  z-index: 2;
}

.hero {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  height: 360px;
}

.hero-cover { 
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none;
}

.share-icon-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.95);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s ease;
  color: #111;
  font-size: 16px;
}

.share-icon-btn:hover {
  background: rgba(255, 255, 255, 1);
  transform: scale(1.05);
}

.share-icon-btn:active {
  transform: scale(0.95);
}

.language-selector {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 100;
}

.lang-current {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 10px 16px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: Inter, system-ui, -apple-system, sans-serif;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.lang-current:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.25);
}

.lang-current:active {
  transform: translateY(0);
}

.lang-icon {
  font-size: 16px;
  line-height: 1;
}

.lang-text {
  font-weight: 600;
  letter-spacing: 0.3px;
}

.lang-arrow {
  font-size: 12px;
  transition: transform 0.3s ease;
}

.language-selector.active .lang-arrow {
  transform: rotate(180deg);
}

.lang-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 175px;
  max-height: 280px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(0, 0, 0, 0.05);
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.5) transparent;
}

.lang-dropdown::-webkit-scrollbar {
  width: 6px;
}

.lang-dropdown::-webkit-scrollbar-track {
  background: transparent;
}

.lang-dropdown::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.5);
  border-radius: 3px;
}

.lang-dropdown::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.7);
}

.language-selector.active .lang-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-dropdown-header {
  padding: 16px 20px 12px;
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.8px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(0, 0, 0, 0.02);
  text-align: center;
}

.lang-option {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 14px 20px;
  background: transparent;
  border: none;
  border-radius: 0;
  color: var(--white);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: Inter, system-ui, -apple-system, sans-serif;
  text-align: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.lang-option:last-child {
  border-bottom: none;
}

.lang-option:hover {
  background: rgba(0, 0, 0, 0.06);
}

.lang-option:active {
  background: rgba(0, 0, 0, 0.1);
}

.lang-option .lang-name {
  width: 100%;
}

.hero-content { position: absolute; left: 16px; bottom: 24px; right: 16px; color: var(--white); text-align: center; z-index: 2; }

.title {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.2px;
  margin: 0;
}

.subtitle {
  margin: 0 0 4px 0;
  margin-top: 5px;
  font-weight: 600;
  color: #ffffff;
}

.content-wrapper {
  padding: 10px;
}

.cta-group { margin: 32px auto 18px; padding: 0; display: flex; flex-direction: column; gap: 12px; max-width: 640px; }
.cta-white {
  display: grid;
  grid-template-columns: 40px 1fr 24px;
  align-items: center;
  width: 100%;
  max-width: 680px;
  margin: 0 auto;
  padding: 18px 16px;
  background: var(--white);
  color: #111;
  text-decoration: none;
  font-weight: 600;
  border-radius: 32px;
  transition: transform .12s ease, box-shadow .12s ease;
}
.cta-white .icon { 
  width: 24px; height: 24px; 
  justify-self: center; 
  font-size: 20px;
  line-height: 24px;
  text-align: center;
}
.cta-white .label { justify-self: center; text-align: center; }
.cta-white .kebab { 
  width: 20px;
  height: 20px;
  border-radius: 50%; 
  justify-self: end;
  cursor: pointer;
  transition: opacity 0.2s ease;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cta-white .kebab::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #444;
  box-shadow: 0 -6px 0 #444, 0 6px 0 #444;
}
.cta-white .kebab:hover {
  opacity: 0.6;
}
.cta-white:hover { transform: translateY(-1px); }
.cta-white:active { transform: translateY(0); }

#cta1 {
  animation: shake 2s linear infinite;
}

@keyframes shake {
  0%, 100% { transform: scale(1); }
  5%, 15% { transform: scale(1.02) rotate(-1deg); }
  10%, 20% { transform: scale(1.02) rotate(1deg); }
  25% { transform: scale(1.02); }
}

.section-title { color: var(--white); text-align: center; font-size: 15px; letter-spacing: .6px; font-weight: 700; margin: 48px 0 12px; }

.card-carousel { 
  position: relative; 
  padding: 12px 0;
  margin: 0 -28px;
  padding-right: 28px;
}
.card-row {
  list-style: none;
  margin: 0;
  padding: 0 28px;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 200px;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: none;
  scrollbar-width: none;
}
.card-row::-webkit-scrollbar { display: none; }
.p-card { background: #fff; color: #111; padding: 0; overflow: hidden; border: none; border-radius: 18px; position: relative; box-shadow: 0 1px 3px rgba(0,0,0,0.12); }
.p-card a { text-decoration: none; }
.p-card .thumb {width: 100%;height: 240px;object-fit: cover;display: block;border-radius: 18px 18px 0 0;}
.p-card .meta { 
  padding: 12px 14px; 
  font-weight: 700; 
  font-size: 14px; 
  color: #222; 
  letter-spacing: 0.2px; 
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.p-card .meta .card-title {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.p-card .meta .card-kebab {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.2s ease;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-left: 8px;
}
.p-card .meta .card-kebab::before {
  content: '';
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #555;
  box-shadow: 0 -5px 0 #555, 0 5px 0 #555;
}
.p-card .meta .card-kebab:hover {
  background: #f0f0f0;
}

.carousel-btn { position: absolute; top: 50%; transform: translateY(-50%); width: 48px; height: 48px; border-radius: 50%; border: none; background: #fff; color: #111; cursor: pointer; z-index: 10; font-size: 26px; box-shadow: 0 2px 12px rgba(0,0,0,0.15); display: flex; align-items: center; justify-content: center; line-height: 1; transition: transform 0.2s ease, box-shadow 0.2s ease; padding: 0; }
.carousel-btn:hover { transform: translateY(-50%) scale(1.05); box-shadow: 0 4px 16px rgba(0,0,0,0.2); }
.carousel-btn.prev { left: 20px; }
.carousel-btn.next { right: 20px; }

.footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: auto;
  padding-top: 40px;
  padding-bottom: 20px;
  color: var(--muted);
}

.social { 
  display: flex; 
  gap: 16px; 
  justify-content: center;
  margin-top: 10px;
  padding: 20px 0;
}
.social a {
  color: var(--text);
  text-decoration: none;
  font-size: 24px;
}

.legal { font-size: 12px; }
.legal a { color: black; text-decoration: none; }
.legal a:hover { text-decoration: underline; }
.legal span { color: black; }

/* Share Modal */
.share-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  align-items: center;
  justify-content: center;
}

.share-modal.active {
  display: flex;
}

.share-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
}

.share-modal-content {
  position: relative;
  background: #ffffff;
  border-radius: 24px;
  width: 90%;
  max-width: 480px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.share-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid #e5e5e5;
}

.share-modal-header h2 {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  color: #111;
}

.share-modal-close {
  background: none;
  border: none;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
  color: #666;
  padding: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.2s ease;
}

.share-modal-close:hover {
  background: #f0f0f0;
  color: #111;
}

.share-modal-body {
  padding: 24px;
}

.share-link-preview {
  background: #f5f5f5;
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 24px;
  display: flex;
  gap: 16px;
  align-items: center;
}

.share-icon {
  width: 60px;
  height: 60px;
  background: #ffffff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.share-icon svg {
  width: 32px;
  height: 32px;
  color: #111;
}

.share-info {
  flex: 1;
  min-width: 0;
}

.share-info h3 {
  margin: 0 0 4px 0;
  font-size: 16px;
  font-weight: 700;
  color: #111;
}

.share-url {
  margin: 0;
  font-size: 14px;
  color: #666;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.share-buttons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.share-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: #f5f5f5;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 15px;
  font-weight: 600;
  color: #111;
  font-family: Inter, system-ui, -apple-system, sans-serif;
}

.share-btn svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.share-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.share-btn:active {
  transform: translateY(0);
}

.copy-btn {
  background: #111;
  color: #ffffff;
  grid-column: 1 / -1;
}

.copy-btn:hover {
  background: #000;
}

.copy-btn svg {
  color: #ffffff;
}

.social-btn svg {
  fill: currentColor;
}

.facebook-btn {
  color: #1877F2;
}

.whatsapp-btn {
  color: #25D366;
}

.linkedin-btn {
  color: #0A66C2;
}

.messenger-btn {
  color: #0084FF;
}

@media (max-width: 680px) {
  .card-row {grid-auto-columns: 180px;}
  .container { margin: 16px; min-height: calc(100vh - 32px); }
}

@media (max-width: 560px) {
  body { 
    background: url(../images/orkun-bg.webp) no-repeat center center;
    background-size: cover;
    background-attachment: scroll;
  }
  .container { 
    margin: 0; 
    padding: 0 0 20px; 
    min-height: 100vh;
    background: url(../images/orkun-bg.webp) no-repeat center center;
    background-size: cover;
    background-attachment: scroll;
    border-radius: 0; 
    box-shadow: none;
  }
  .hero { 
    height: 320px; 
    border-radius: 0;
  }
  .content-wrapper { padding: 28px 16px; }
  .share-icon-btn {
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    font-size: 14px;
  }
  .language-selector {
    top: 12px;
    right: 12px;
  }
  .lang-current {
    padding: 8px 12px;
    gap: 6px;
  }
  .lang-icon {
    font-size: 14px;
  }
  .lang-text {
    font-size: 12px;
  }
  .lang-arrow {
    font-size: 10px;
  }
  .lang-dropdown {
    min-width: 160px;
    max-height: 220px;
  }
  .lang-dropdown-header {
    padding: 12px 16px 10px;
    font-size: 11px;
  }
  .lang-option {
    padding: 12px 16px;
    font-size: 13px;
  }
  .carousel-btn.next { right: 12px; width: 44px; height: 44px; font-size: 24px; }
  .carousel-btn.prev { left: 12px; width: 44px; height: 44px; font-size: 24px; }
  .card-row {grid-auto-columns: 170px; padding: 0 20px;}
  .card-carousel { padding: 12px 0; margin: 0 -20px; padding-right: 20px; }
  .p-card .thumb {height: 220px;}
  .footer { padding-bottom: 16px; }
  
  .share-modal-content {
    width: 95%;
    max-width: 400px;
    border-radius: 20px;
  }
  
  .share-modal-header {
    padding: 16px 20px;
  }
  
  .share-modal-header h2 {
    font-size: 18px;
  }
  
  .share-modal-body {
    padding: 20px;
  }
  
  .share-link-preview {
    padding: 16px;
  }
  
  .share-icon {
    width: 50px;
    height: 50px;
  }
  
  .share-icon svg {
    width: 28px;
    height: 28px;
  }
  
  .share-info h3 {
    font-size: 14px;
  }
  
  .share-url {
    font-size: 13px;
  }
  
  .share-btn {
    padding: 12px 14px;
    font-size: 14px;
  }
}

/* Cookie Consent Modal */
.cookie-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1001;
  align-items: center;
  justify-content: center;
}

.cookie-modal.active {
  display: flex;
}

.cookie-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(4px);
}

.cookie-modal-content {
  position: relative;
  background: #ffffff;
  border-radius: 24px;
  width: 90%;
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: modalSlideIn 0.3s ease-out;
}

.cookie-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px;
  border-bottom: 1px solid #e5e5e5;
}

.cookie-modal-header h2 {
  margin: 0;
  font-size: 22px;
  font-weight: 700;
  color: #111;
}

.cookie-modal-close {
  background: none;
  border: none;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
  color: #666;
  padding: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.2s ease;
}

.cookie-modal-close:hover {
  background: #f0f0f0;
  color: #111;
}

.cookie-modal-body {
  padding: 24px;
}

.cookie-description {
  margin: 0 0 24px 0;
  font-size: 15px;
  line-height: 1.6;
  color: #555;
}

.cookie-options {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}

.cookie-option {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 16px;
  transition: background 0.2s ease;
}

.cookie-option:hover {
  background: #f0f1f3;
}

.cookie-option-header {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.cookie-option-info {
  flex: 1;
}

.cookie-option-info h3 {
  margin: 0 0 6px 0;
  font-size: 16px;
  font-weight: 600;
  color: #111;
}

.cookie-option-info p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: #666;
}

/* Toggle Switch */
.cookie-switch {
  position: relative;
  display: inline-block;
  width: 52px;
  height: 28px;
  flex-shrink: 0;
}

.cookie-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.3s;
  border-radius: 28px;
}

.cookie-slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: 0.3s;
  border-radius: 50%;
}

.cookie-switch input:checked + .cookie-slider {
  background-color: #111;
}

.cookie-switch input:checked + .cookie-slider:before {
  transform: translateX(24px);
}

.cookie-switch input:disabled + .cookie-slider {
  background-color: #111;
  opacity: 0.6;
  cursor: not-allowed;
}

.cookie-buttons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
  margin-bottom: 20px;
}

.cookie-btn {
  padding: 14px 20px;
  border: none;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: Inter, system-ui, -apple-system, sans-serif;
  white-space: nowrap;
}

.cookie-btn-primary {
  background: #111;
  color: #ffffff;
}

.cookie-btn-primary:hover {
  background: #000;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.cookie-btn-secondary {
  background: #f5f5f5;
  color: #111;
}

.cookie-btn-secondary:hover {
  background: #e5e5e5;
  transform: translateY(-2px);
}

.cookie-btn:active {
  transform: translateY(0);
}

.cookie-privacy-link {
  display: block;
  text-align: center;
  font-size: 14px;
  color: #666;
  text-decoration: underline;
  transition: color 0.2s ease;
}

.cookie-privacy-link:hover {
  color: #111;
}

@media (max-width: 560px) {
  .cookie-modal-content {
    width: 95%;
    max-width: 100%;
    border-radius: 20px;
  }
  
  .cookie-modal-header {
    padding: 20px;
  }
  
  .cookie-modal-header h2 {
    font-size: 18px;
  }
  
  .cookie-modal-body {
    padding: 20px;
  }
  
  .cookie-description {
    font-size: 14px;
  }
  
  .cookie-option {
    padding: 14px;
  }
  
  .cookie-option-info h3 {
    font-size: 15px;
  }
  
  .cookie-option-info p {
    font-size: 13px;
  }
  
  .cookie-buttons {
    grid-template-columns: 1fr;
  }
  
  .cookie-btn {
    padding: 12px 16px;
    font-size: 14px;
  }
  
  .cookie-privacy-link {
    font-size: 13px;
  }
}

/* Report Modal */
.report-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1002;
  align-items: center;
  justify-content: center;
}

.report-modal.active {
  display: flex;
}

.report-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(4px);
}

.report-modal-content {
  position: relative;
  background: #ffffff;
  border-radius: 24px;
  width: 90%;
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: modalSlideIn 0.3s ease-out;
}

.report-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px;
  border-bottom: 1px solid #e5e5e5;
}

.report-modal-header h2 {
  margin: 0;
  font-size: 22px;
  font-weight: 700;
  color: #111;
}

.report-modal-close {
  background: none;
  border: none;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
  color: #666;
  padding: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.2s ease;
}

.report-modal-close:hover {
  background: #f0f0f0;
  color: #111;
}

.report-modal-body {
  padding: 24px;
}

.report-description {
  margin: 0 0 24px 0;
  font-size: 15px;
  line-height: 1.6;
  color: #555;
}

.report-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 14px;
  font-weight: 600;
  color: #111;
}

.form-group input,
.form-group textarea {
  padding: 12px 16px;
  border: 1px solid #d1d5db;
  border-radius: 12px;
  font-size: 15px;
  font-family: Inter, system-ui, -apple-system, sans-serif;
  transition: all 0.2s ease;
  background: #ffffff;
  color: #111;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #111;
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.05);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.report-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 8px;
}

.report-btn {
  padding: 14px 20px;
  border: none;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: Inter, system-ui, -apple-system, sans-serif;
}

.report-btn-primary {
  background: #111;
  color: #ffffff;
}

.report-btn-primary:hover {
  background: #000;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.report-btn-secondary {
  background: #f5f5f5;
  color: #111;
}

.report-btn-secondary:hover {
  background: #e5e5e5;
  transform: translateY(-2px);
}

.report-btn:active {
  transform: translateY(0);
}

.report-success {
  text-align: center;
  padding: 40px 20px;
}

.success-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: #10b981;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  font-weight: bold;
  animation: successPop 0.5s ease-out;
}

@keyframes successPop {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.report-success h3 {
  margin: 0 0 12px 0;
  font-size: 24px;
  font-weight: 700;
  color: #111;
}

.report-success p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: #555;
}

@media (max-width: 560px) {
  .report-modal-content {
    width: 95%;
    max-width: 100%;
    border-radius: 20px;
  }
  
  .report-modal-header {
    padding: 20px;
  }
  
  .report-modal-header h2 {
    font-size: 18px;
  }
  
  .report-modal-body {
    padding: 20px;
  }
  
  .report-description {
    font-size: 14px;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .form-group label {
    font-size: 13px;
  }
  
  .form-group input,
  .form-group textarea {
    padding: 10px 14px;
    font-size: 14px;
  }
  
  .report-buttons {
    grid-template-columns: 1fr;
  }
  
  .report-btn {
    padding: 12px 16px;
    font-size: 14px;
  }
  
  .success-icon {
    width: 60px;
    height: 60px;
    font-size: 36px;
  }
  
  .report-success h3 {
    font-size: 20px;
  }
  
  .report-success p {
    font-size: 14px;
  }
}