/* === RESET === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html, body {
  font-family: 'Poppins', sans-serif;
  background: #0f0f14;
  color: #E5E7EB;
  line-height: 1.6;
  scroll-behavior: smooth;
  overflow-x: hidden;
  padding: 0;
  margin: 0;
  height: 100%;
}

/* === LINKS === */
a {
  color: inherit;
  text-decoration: none;
  transition: 0.3s ease;
}

/* === HERO === */
.hero {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5rem 2rem 4rem;
  text-align: center;
  overflow: hidden;
  background: #0f0f14;
  z-index: 1;
}

.hero-video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
  z-index: -1;
  filter: blur(4px);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}

.hero-label {
  display: inline-block;
  font-size: 0.9rem;
  color: #9CA3AF;
  background: rgba(255,255,255,0.05);
  padding: 0.4rem 1rem;
  border-radius: 30px;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(4px);
  animation: fadeIn 1s ease-out forwards;
}

.hero h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.1;
  color: #ffffff;
  margin-bottom: 1rem;
  opacity: 0;
  animation: fadeInUp 0.8s ease-out forwards;
}

.hero-subtitle {
  font-size: 1.3rem;
  color: #9CA3AF;
  max-width: 700px;
  margin: 1rem auto 2rem auto;
  opacity: 0;
  animation: fadeIn 1.2s ease-out forwards;
  animation-delay: 0.3s;
}

.hero-subtitle.highlight {
  color: #00D1FF;
  font-weight: 500;
  margin-top: 1rem;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  animation: fadeIn 1.5s ease-out forwards;
  animation-delay: 0.6s;
  opacity: 0;
}

/* === HERO SHAPES === */
.hero-shapes {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}
.hero-shapes .circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.08;
  filter: blur(100px);
  animation: float 12s ease-in-out infinite;
}
.circle-1 {
  width: 400px; height: 400px;
  background: #00D1FF;
  top: 10%; left: 10%;
}
.circle-2 {
  width: 300px; height: 300px;
  background: #FF007A;
  bottom: 10%; right: 15%;
}
.circle-3 {
  width: 200px; height: 200px;
  background: #FFA500;
  top: 50%; left: 70%;
}

@keyframes float {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(5deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}

/* === MOCKUP IMAGE === */
.hero-mockup-container {
  position: absolute;
  top: 3rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 0;
  pointer-events: none;
}

.hero-mockup {
  max-width: 240px;
  opacity: 0.07;
  filter: grayscale(100%) blur(1px);
}

/* === GOMBOK === */
.btn, .btn-secondary, .btn-large {
  display: inline-block;
  padding: 0.9rem 2.2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  transform: translateY(0);
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;          /* Törhető, ha túl hosszú */
  overflow-wrap: break-word;   /* Törd meg, ha kell */
  text-align: center;
}

.btn {
  background: linear-gradient(90deg, #FF007A, #00D1FF);
  color: white;
  box-shadow: 0 10px 20px rgba(0, 209, 255, 0.3);
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 25px rgba(0, 209, 255, 0.5);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  color: #E5E7EB;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
}

.btn-large {
  font-size: 1.2rem;
  padding: 1rem 3rem;
}

/* 🔻 EXTRA: Mobilnézeti finomhangolás */
@media (max-width: 480px) {
  .btn, .btn-secondary, .btn-large {
    font-size: 0.95rem;
    padding: 0.8rem 1.5rem;
  }
}


/* === ANIMÁCIÓK === */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes slideInLeft {
  from { transform: translateX(-60px); opacity: 0; }
  to   { transform: translateX(0); opacity: 1; }
}
@keyframes slideInRight {
  from { transform: translateX(60px); opacity: 0; }
  to   { transform: translateX(0); opacity: 1; }
}
@keyframes slideInUp {
  from { transform: translateY(60px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.anim-left.visible { animation: slideInLeft 0.8s ease forwards; }
.anim-right.visible { animation: slideInRight 0.8s ease forwards; }
.anim-up.visible { animation: slideInUp 0.8s ease forwards; }

/* === SHOWCASE === */
.showcase {
  padding: 6rem 2rem;
  background: linear-gradient(to bottom, #0f0f14, #1a1a25);
}
.showcase-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}
.showcase-item {
  background: rgba(255,255,255,0.04);
  padding: 2rem;
  border-radius: 1rem;
  text-align: center;
  width: 280px;
  min-height: 280px;
  box-shadow: 0 0 20px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  opacity: 0;
}
.showcase-item.visible {
  opacity: 1;
}
.showcase-item h3 {
  margin: 1rem 0 0.5rem;
  color: #ffffff;
}
.showcase-item p {
  font-size: 0.95rem;
  color: #9CA3AF;
}
.showcase-item .icon {
  font-size: 2.8rem;
  margin-bottom: 0.5rem;
  transition: transform 0.3s ease;
  color: #00D1FF;
}
.showcase-item:hover {
  transform: translateY(-5px) scale(1.02);
  background: rgba(0,209,255,0.05);
  box-shadow: 0 10px 20px rgba(0,209,255,0.2);
}
.showcase-item:hover .icon {
  transform: scale(1.1);
}

/* === TOGGLE DETAILS === */
.showcase-item .details {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0;
  font-size: 0.9rem;
  color: #FFA500;
}
.showcase-item.open .details {
  max-height: 500px;
  padding-top: 1rem;
}
.showcase-item ul {
  list-style: disc;
  margin: 0.5rem 0 0 1.2rem;
}
.showcase-item ul li {
  margin-bottom: 0.3rem;
}

/* === CTA === */
.cta {
  text-align: center;
  padding: 5rem 2rem;
  background: linear-gradient(to right, #FF007A, #00D1FF);
  color: white;
}
.cta h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.cta p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

/* === FOOTER === */
.site-footer {
  background: #0f0f14;
  color: #9CA3AF;
  text-align: center;
  padding: 2rem 1rem;
  font-size: 0.9rem;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-links {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.footer-links a {
  color: #6B7280;
}
.footer-links a:hover {
  color: #00D1FF;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .hero h1 { font-size: 2.4rem; }
  .hero p { font-size: 1rem; }
  .hero-buttons { flex-direction: column; }
  .showcase-item { width: 100%; }
}
/* === HAMBURGER GOMB === */
.menu-toggle {
  position: fixed;
  top: 1.2rem;
  left: 1.2rem;
  z-index: 1001;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 22px;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  height: 3px;
  background: #fff;
  border-radius: 2px;
}

/* === OLDALSÓ MENÜ === */
.side-menu {
  position: fixed;
  top: 0;
  left: -280px;
  width: 250px;
  height: 100%;
  background: #1f2937;
  padding: 4rem 1.5rem;
  box-shadow: 5px 0 15px rgba(0,0,0,0.3);
  transition: left 0.3s ease;
  z-index: 1000;
}
.side-menu ul {
  list-style: none;
  padding: 0;
}
.side-menu li {
  margin-bottom: 1.2rem;
}
.side-menu a {
  color: #e5e7eb;
  font-size: 1.1rem;
  text-decoration: none;
  transition: color 0.3s;
}
.side-menu a:hover {
  color: #00D1FF;
}

/* === OVERLAY === */
.menu-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  visibility: hidden;
  z-index: 999;
  transition: all 0.3s ease;
}

/* === AKTÍV ÁLLAPOT === */
.side-menu.active {
  left: 0;
}
.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}
/* === GYIK (FAQ) === */
.faq {
  padding: 6rem 2rem;
  background: #0f0f14;
  color: #e5e7eb;
}
.faq .container {
  max-width: 800px;
  margin: 0 auto;
}
.faq .section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 3rem;
  color: #00D1FF;
}

.faq-list .faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding: 1rem 0;
}
.faq-question {
  background: none;
  border: none;
  outline: none;
  color: #e5e7eb;
  font-size: 1.1rem;
  font-weight: 600;
  width: 100%;
  text-align: left;
  cursor: pointer;
  transition: color 0.3s ease;
}
.faq-question:hover {
  color: #00D1FF;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 0;
  font-size: 0.95rem;
  color: #94a3b8;
}
.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0.7rem 0 0.7rem 0;
}
/* === KAPCSOLAT === */
.contact {
  padding: 6rem 2rem;
  background: #0f0f14;
  color: #e5e7eb;
}
.contact .container {
  max-width: 1000px;
  margin: 0 auto;
}
.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  margin-top: 2rem;
}
.contact-form,
.contact-info {
  flex: 1 1 400px;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: #9ca3af;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border-radius: 8px;
  border: none;
  background: #1f2937;
  color: #fff;
  font-size: 1rem;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: 2px solid #00d1ff;
  background: #111827;
}

.contact-info h3 {
  margin-bottom: 1rem;
  font-size: 1.3rem;
  color: #00d1ff;
}
.contact-info p {
  margin-bottom: 0.7rem;
  color: #9ca3af;
}
.map-placeholder {
  background: #1f2937;
  padding: 2rem;
  margin-top: 2rem;
  text-align: center;
  border-radius: 8px;
  color: #64748b;
  font-size: 0.9rem;
}

/* Mobil */
@media (max-width: 768px) {
  .contact-grid {
    flex-direction: column;
  }
}
.map-embed {
  margin-top: 1.5rem;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
}

/* Opcionálisan külön stílus, ha még kisebb térképet szeretnél */
.map-embed iframe {
  width: 100%;
  height: 200px;
  border: none;
  display: block;
}
/* === HOGYAN MŰKÖDIK === */
.how-it-works {
  background: #111827;
  padding: 5rem 2rem;
  color: #e5e7eb;
}
.how-steps {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 3rem;
}
.step {
  background: #1f2937;
  padding: 2rem;
  border-radius: 1rem;
  text-align: center;
  max-width: 300px;
  flex: 1 1 250px;
  transition: transform 0.3s ease;
}
.step:hover {
  transform: translateY(-5px);
  background: #00d1ff22;
}
.step-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}
.step h3 {
  margin-bottom: 0.5rem;
  color: #00d1ff;
}

/* === VÉLEMÉNYEK === */
.testimonials {
  background: #0f172a;
  padding: 5rem 2rem;
  color: #e5e7eb;
}
.testimonial-grid {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 2rem;
}
.testimonial {
  background: #1e293b;
  padding: 2rem;
  border-radius: 1rem;
  max-width: 300px;
  flex: 1 1 250px;
  font-style: italic;
  position: relative;
  border-left: 4px solid #00d1ff;
}
.testimonial span {
  display: block;
  margin-top: 1rem;
  color: #9ca3af;
  font-style: normal;
  font-weight: 500;
}
/* === REGISTER PAGE === */
.register-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to bottom, #0f0f14, #1a1a25);
  padding: 4rem 2rem;
}
.register-container {
  background: rgba(255,255,255,0.03);
  padding: 2.5rem 2rem;
  border-radius: 1rem;
  width: 100%;
  max-width: 450px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.register-form .form-group {
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
}
.register-form label {
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: #E5E7EB;
}
.register-form input[type="text"],
.register-form input[type="email"],
.register-form input[type="password"] {
  padding: 0.8rem 1rem;
  border-radius: 8px;
  border: none;
  background: rgba(255,255,255,0.06);
  color: #fff;
  font-size: 1rem;
  transition: 0.3s ease;
}
.register-form input:focus {
  outline: none;
  background: rgba(255,255,255,0.1);
}
.register-form .checkbox {
  font-size: 0.9rem;
  color: #9CA3AF;
}
.register-form .checkbox a {
  color: #00D1FF;
}
.register-form .form-footer {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.9rem;
  color: #9CA3AF;
}
.register-form .form-footer a {
  color: #00D1FF;
}
/* Gomb középen */
.form-group.center {
  text-align: center;
}

/* ÁSZF checkbox igazítás */
.form-terms {
  display: flex;
  align-items: center;
  font-size: 0.9rem;
  color: #9CA3AF;
  line-height: 1.4;
}
.form-terms input[type="checkbox"] {
  margin-right: 0.5rem;
  transform: scale(1.2);
  accent-color: #00D1FF;
}
.form-terms a {
  color: #00D1FF;
  text-decoration: underline;
}
.form-terms-animated {
  display: flex;
  justify-content: flex-start; /* balra igazítás */
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: #9CA3AF;
  cursor: pointer;
  user-select: none;
  margin-top: 1rem;
}

.form-terms-animated input[type="checkbox"] {
  display: none;
}

.form-terms-animated label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Egyedi checkbox stílus */
.form-terms-animated .checkmark {
  width: 22px;
  height: 22px;
  border: 2px solid #9CA3AF;
  border-radius: 6px;
  display: inline-block;
  position: relative;
  transition: all 0.3s ease;
  background: transparent;
}

/* Bepipálva */
.form-terms-animated input:checked + label .checkmark {
  background: #10b981;
  border-color: #10b981;
}

.form-terms-animated input:checked + label .checkmark::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 2px;
  width: 6px;
  height: 12px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  animation: check 0.3s ease forwards;
}

@keyframes check {
  from {
    opacity: 0;
    transform: scale(0.5) rotate(45deg);
  }
  to {
    opacity: 1;
    transform: scale(1) rotate(45deg);
  }
}

.form-terms-animated a {
  color: #00D1FF;
  text-decoration: underline;
}
.auth-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 6rem 1rem;
  background: linear-gradient(to bottom, #0f0f14, #1a1a25);
  min-height: 100vh;
}

.auth-container {
  background: rgba(255, 255, 255, 0.02);
  padding: 3rem 2rem;
  border-radius: 12px;
  max-width: 420px;
  width: 100%;
  box-shadow: 0 0 30px rgba(0, 209, 255, 0.05);
  color: #E5E7EB;
}

.auth-container h1 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.auth-sub {
  text-align: center;
  font-size: 0.95rem;
  color: #9CA3AF;
  margin-bottom: 2rem;
}

.auth-form .form-group {
  margin-bottom: 1.5rem;
}

.auth-form label {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.95rem;
  color: #CBD5E1;
}

.auth-form input[type="email"],
.auth-form input[type="password"] {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  border: none;
  background: rgba(255, 255, 255, 0.04);
  color: white;
  font-size: 1rem;
}

.auth-form input:focus {
  outline: none;
  box-shadow: 0 0 0 2px #00D1FF66;
}

.align-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: #94A3B8;
}

.align-between .small-link {
  color: #00D1FF;
  text-decoration: none;
}

.align-between .small-link:hover {
  text-decoration: underline;
}

.form-footer {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.85rem;
  color: #94A3B8;
}

.form-footer a {
  color: #00D1FF;
  text-decoration: underline;
}
.custom-switch {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  cursor: pointer;
  user-select: none;
}

.custom-switch-input {
  display: none;
}

.custom-switch-track {
  position: relative;
  width: 42px;
  height: 22px;
  background: #374151;
  border-radius: 999px;
  transition: background 0.3s ease;
}

.custom-switch-track::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.custom-switch-input:checked + .custom-switch-track {
  background: linear-gradient(90deg, #00D1FF, #FF007A);
}

.custom-switch-input:checked + .custom-switch-track::before {
  transform: translateX(20px);
}

.custom-switch-label {
  font-size: 0.9rem;
  color: #9CA3AF;
  transition: color 0.3s ease;
}

.custom-switch-input:checked ~ .custom-switch-label {
  color: #E5E7EB;
}
.form-remember {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  gap: 1rem;
}

.switch-container {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  cursor: pointer;
}

.switch-container input[type="checkbox"] {
  display: none;
}

.switch-slider {
  width: 40px;
  height: 20px;
  background: #374151;
  border-radius: 999px;
  position: relative;
  transition: background 0.3s ease;
}

.switch-slider::before {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  background: #fff;
  border-radius: 50%;
  top: 2px;
  left: 2px;
  transition: transform 0.3s ease;
}

.switch-container input[type="checkbox"]:checked + .switch-slider {
  background: linear-gradient(90deg, #00D1FF, #FF007A);
}

.switch-container input[type="checkbox"]:checked + .switch-slider::before {
  transform: translateX(20px);
}

.switch-label {
  color: #9CA3AF;
  font-size: 0.95rem;
}
.form-remember {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.switch-label {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  cursor: pointer;
}

.switch-label input[type="checkbox"] {
  display: none;
}

.custom-switch {
  width: 40px;
  height: 22px;
  background: #374151;
  border-radius: 50px;
  position: relative;
  transition: background 0.3s ease;
}

.custom-switch::before {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 16px;
  height: 16px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.switch-label input[type="checkbox"]:checked + .custom-switch {
  background: linear-gradient(90deg, #00D1FF, #FF007A);
}

.switch-label input[type="checkbox"]:checked + .custom-switch::before {
  transform: translateX(18px);
}

.label-text {
  color: #d1d5db;
  font-size: 0.95rem;
}

.forgot-link {
  font-size: 0.95rem;
  color: #38bdf8;
  text-decoration: none;
  transition: color 0.3s ease;
}
.forgot-link:hover {
  color: #60d9ff;
}
.about-page {
  padding: 6rem 2rem;
  background: #0f0f14;
  color: #E5E7EB;
}

.about-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
}

.about-text {
  flex: 1 1 400px;
  font-size: 1.05rem;
  line-height: 1.7;
}

.about-text p {
  margin-bottom: 1.5rem;
  color: #cbd5e1;
}

.about-text strong {
  color: #00D1FF;
}

.about-image {
  flex: 1 1 300px;
  text-align: center;
}

.about-image img {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(0, 209, 255, 0.1);
}

@media (max-width: 768px) {
  .about-grid {
    flex-direction: column;
  }
  .about-text, .about-image {
    text-align: center;
  }
}
.profile-section {
  padding: 5rem 2rem;
  background: linear-gradient(to bottom, #0f0f14, #1a1a25);
  color: #e2e8f0;
}
.profile-container {
  max-width: 800px;
  margin: 0 auto;
}
.profile-card {
  display: flex;
  align-items: center;
  gap: 2rem;
  background: rgba(255,255,255,0.04);
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 0 20px rgba(0,0,0,0.2);
}
.profile-avatar img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #00D1FF;
}
.profile-info h2 {
  margin-bottom: 0.5rem;
}
.profile-info p {
  margin: 0.3rem 0;
}
.profile-info .btn {
  margin-top: 1.5rem;
}

@media (max-width: 600px) {
  .profile-card {
    flex-direction: column;
    text-align: center;
  }
}
/* === EMLÉKEZZ RÁM SWITCH === */
.remember-me {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.remember-toggle {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  cursor: pointer;
  user-select: none;
  font-size: 0.95rem;
  color: #9CA3AF;
  transition: all 0.3s ease;
}

.remember-toggle input[type="checkbox"] {
  display: none;
}

.remember-toggle .slider {
  position: relative;
  width: 50px;
  height: 26px;
  background: #374151;
  border-radius: 50px;
  transition: background 0.3s ease;
  box-shadow: inset 0 0 4px rgba(0,0,0,0.4);
}

.remember-toggle .slider::before {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.3s ease;
  box-shadow: 0 0 5px rgba(255,255,255,0.2);
}

.remember-toggle input:checked + .slider {
  background: linear-gradient(90deg, #00D1FF, #FF007A);
}

.remember-toggle input:checked + .slider::before {
  transform: translateX(24px);
  background: #ffffff;
}

.remember-toggle .label-text {
  font-weight: 500;
  color: #CBD5E1;
  transition: color 0.3s ease;
}

.remember-toggle input:checked ~ .label-text {
  color: #00D1FF;
}
/* Ne jelenjen meg semmilyen vizuális kapcsoló */
.remember-toggle input {
  display: none;
}

.remember-toggle .label-text {
  font-size: 0.95rem;
  color: #CBD5E1;
  cursor: pointer;
}
/* === GOODBYE PAGE === */
.goodbye-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 2rem;
  background: linear-gradient(to bottom, #0f0f14, #1a1a25);
  color: #e5e7eb;
  text-align: center;
}

.goodbye-container {
  max-width: 600px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.03);
  padding: 3rem 2rem;
  border-radius: 1rem;
  box-shadow: 0 0 30px rgba(0, 209, 255, 0.1);
}

.goodbye-container h1 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  color: #00D1FF;
}

.goodbye-container p {
  font-size: 1.1rem;
  color: #94a3b8;
  margin-bottom: 2rem;
}

.goodbye-icon {
  font-size: 4rem;
  margin-bottom: 2rem;
  animation: floatPulse 2s ease-in-out infinite;
}

@keyframes floatPulse {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.form-footer a,
.auth-helper a {
  color: #00d1ff; /* vagy amit a másiknál használsz */
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}

.form-footer a:hover,
.auth-helper a:hover {
  text-decoration: underline;
}
/* === Menü footer rész === */
.menu-footer {
  position: absolute;
  bottom: 2rem;
  left: 0;
  width: 100%;
  text-align: center;
  color: #cfd2d8;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

/* Logó */
.footer-logo img {
  width: 60px;
  height: auto;
  opacity: 0.9;
  transition: 0.3s ease;
}
.footer-logo img:hover {
  opacity: 1;
}

/* Theme toggle */
.theme-toggle {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 30px;
  padding: 0.5rem 1rem;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
.theme-toggle:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* Social ikonok */
.social-links {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
}
.social-links a {
  color: #cfd2d8;
  font-size: 1.2rem;
  transition: 0.3s ease;
}
.social-links a:hover {
  color: #00d1ff;
}

/* Copyright */
.copyright {
  font-size: 0.9rem;
  color: #999;
  margin-top: 0.5rem;
}
/* === Világos mód === */
body.light-mode {
  background: #f8f9fb;
  color: #111;
}

body.light-mode .side-menu {
  background: #eaeef3;
}

body.light-mode .side-menu a {
  color: #222;
}

body.light-mode .theme-toggle {
  background: rgba(0, 0, 0, 0.1);
  color: #222;
}

body.light-mode .social-links a {
  color: #333;
}
.aszf h2 {
  margin-top: 2rem;
  color: #00d1ff;
  font-size: 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-bottom: 0.5rem;
}
.aszf p, .aszf ul {
  line-height: 1.7;
  color: #e5e5e5;
  font-size: 1rem;
}
.aszf ul {
  margin: 1rem 0 1rem 1.5rem;
}
