/* ─── Custom utility classes (ezek nincsenek benne a Tailwind CDN-ben) ─── */

.glass-card {
  background: rgba(29, 32, 30, 0.4);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(200, 54, 148, 0.1);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

.neon-border {
  border: 1px solid rgba(200, 54, 148, 0.2);
  box-shadow: inset 0 0 10px rgba(200, 54, 148, 0.05);
}

.neon-text {
  text-shadow: 0 0 10px rgba(200, 54, 148, 0.5);
}

/* ─── kbd tag (F8, Enter gombok) ─── */
.kbd-wrap kbd,
kbd {
  background: #27272a;
  padding: 2px 6px;
  border-radius: 4px;
  color: #c83694;
  font-weight: bold;
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-transform: uppercase;
  font-size: 10px;
  font-family: inherit;
}

/* ─── Custom scrollbar a modal belsejéhez ─── */
.custom-scrollbar::-webkit-scrollbar {
  width: 8px;
}
.custom-scrollbar::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.03);
}
.custom-scrollbar::-webkit-scrollbar-thumb {
  background: rgba(200, 54, 148, 0.4);
  border-radius: 4px;
}
.custom-scrollbar::-webkit-scrollbar-thumb:hover {
  background: rgba(200, 54, 148, 0.7);
}

/* ─── Markdown styling a guide modal-ban ─── */
#guide-modal-content h1,
#guide-modal-content h2,
#guide-modal-content h3 {
  color: #e1e3de;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  margin-top: 1.5em;
  margin-bottom: 0.75em;
}
#guide-modal-content h1 { font-size: 2rem; }
#guide-modal-content h2 { font-size: 1.5rem; color: #c83694; }
#guide-modal-content h3 { font-size: 1.25rem; }

#guide-modal-content p {
  line-height: 1.75;
  margin-bottom: 1em;
  font-size: 1.1rem;
}

#guide-modal-content ul,
#guide-modal-content ol {
  margin: 1em 0;
  padding-left: 1.5rem;
}

#guide-modal-content ul { list-style: none; }
#guide-modal-content ul li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5em;
  line-height: 1.75;
}
#guide-modal-content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: #c83694;
  box-shadow: 0 0 8px rgba(200, 54, 148, 0.8);
}

#guide-modal-content ol {
  list-style: decimal;
  color: #c4c8c2;
}
#guide-modal-content ol li {
  margin-bottom: 0.5em;
  line-height: 1.75;
  padding-left: 0.5rem;
}
#guide-modal-content ol li::marker {
  color: #43b51c;
  font-weight: bold;
}

#guide-modal-content strong {
  color: #c83694;
  font-weight: 700;
}

#guide-modal-content em {
  color: #43b51c;
  font-style: italic;
}

#guide-modal-content code {
  background: rgba(0, 0, 0, 0.4);
  padding: 2px 8px;
  border-radius: 4px;
  color: #c83694;
  font-size: 0.9em;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

#guide-modal-content blockquote {
  border-left: 4px solid #43b51c;
  padding: 0.5rem 0 0.5rem 1.25rem;
  margin: 1.5em 0;
  color: #c4c8c2;
  font-style: italic;
  background: rgba(67, 181, 28, 0.05);
  border-radius: 0 8px 8px 0;
}

#guide-modal-content a {
  color: #43b51c;
  text-decoration: underline;
  text-decoration-color: rgba(67, 181, 28, 0.4);
  transition: all 0.2s;
}
#guide-modal-content a:hover {
  color: #fff;
  text-decoration-color: #fff;
}

/* ─── FAQ accordion simulation ─── */
.faq-answer {
  transition: max-height 0.3s ease;
}

/* ─── Mobile menü ─── */
#mobile-menu.show {
  display: flex !important;
}
