.recooty-wrap {
  font-family: 'Segoe UI', Tahoma, sans-serif;
  max-width: 100%;
  margin: 0;
  background: #f8f9fb;
}

.recooty-header {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 30px;
  background-color: #fff;
  border-bottom: 1px solid #ddd;
}

.recooty-header img {
  height: 45px;
}

.recooty-header h1 {
  margin: 0;
  font-size: 22px;
}

.recooty-body {
  display: flex;
  padding: 30px;
  padding-top: 20px;
}

.recooty-sidebar {
  width: 280px;
  background: #fff;
  padding: 18px 25px;
  padding-top: 16px;
  margin-right: 30px;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  height: fit-content;
}

.recooty-sidebar h3 {
  font-size: 16px;
  margin-bottom: 15px;
  border-bottom: 1px solid #ddd;
  padding-bottom: 6px;
}

.recooty-sidebar a {
  display: block;
  margin: 10px 0;
  text-decoration: none;
  color: #0477ee;
  font-weight: 500;
  cursor: pointer;
}

.recooty-main {
  flex-grow: 1;
  background: #fff;
  padding: 30px;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  max-width: 980px;
}

.recooty-main h2 {
  font-size: 18px;
  margin-bottom: 20px;
}

.recooty-field {
  margin-bottom: 20px;
}

.recooty-field label {
  font-weight: 600;
  display: block;
  margin-bottom: 6px;
}

.recooty-field input,
.recooty-field select {
  width: 100%;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #ccc;
}

.recooty-footer {
  margin-top: 20px;
  text-align: right;
}

.recooty-footer input[type='submit'] {
  background: #0477ee;
  color: white;
  padding: 10px 25px;
  border: none;
  font-size: 15px;
  border-radius: 8px;
  font-weight: bold;
  transition: all 0.2s ease-in-out;
}

.recooty-footer input[type='submit']:hover {
  background: rgb(0, 123, 255);
}

.recooty-guide-content {
  font-size: 15px;
  line-height: 1.8;
  color: #444;
}

.recooty-guide-content a {
  color: #0477ee;
  font-weight: 600;
}

.recooty-footer-credits {
  text-align: center;
  padding: 10px;
  color: #666;
  font-size: 14px;
  border-top: 1px solid #ddd;
}

.recooty-footer-credits a {
  color: #0477ee;
  text-decoration: none;
}

.guide-section {
  line-height: 1.6;
}

.guide-block {
  margin-bottom: 30px;
}

.guide-block h3 {
  font-size: 24px;
  color: #2c3e50;
  margin-bottom: 15px;
}

.guide-block h4 {
  font-size: 20px;
  color: #34495e;
  margin-bottom: 12px;
}

.code-block {
  background: #f8f9fa;
  padding: 15px;
  border-radius: 5px;
  font-family: monospace;
  margin: 15px 0;
}

.tip-box {
  background: #e1f5fe;
  padding: 15px;
  border-radius: 5px;
  margin: 15px 0;
}

.guide-block ul {
  padding-left: 20px;
  margin: 10px 0;
}

.guide-block ul li {
  margin: 8px 0;
}

.help-links li {
  margin: 10px 0;
}

.help-links a {
  color: #0477ee;
  text-decoration: none;
}

.help-links a:hover {
  text-decoration: underline;
}

@media (max-width: 1024px) {
  .recooty-body {
    flex-direction: column;
    padding: 20px;
  }

  .recooty-sidebar {
    width: 100%;
    margin-right: 0;
    margin-bottom: 20px;
    max-width: 80vw;
  }

  .recooty-main {
    width: 100%;
    padding: 20px;
  }

  .recooty-header {
    flex-direction: column;
    align-items: flex-start;
    padding: 15px 20px;
  }

  .recooty-header h1 {
    font-size: 20px;
  }

  .recooty-guide-content h2,
  .guide-block h3,
  .guide-block h4 {
    font-size: 20px !important;
  }
}

@media (max-width: 600px) {
  .recooty-main {
    max-width: 74vw;
  }

  .recooty-sidebar {
    max-width: 74vw;
  }

  .recooty-field input,
  .recooty-field select {
    padding: 8px;
  }

  .recooty-footer input[type='submit'] {
    width: 100%;
    padding: 12px;
    font-size: 16px;
  }

  .recooty-header img {
    height: 35px;
  }

  .recooty-header h1 {
    font-size: 18px;
  }

  .recooty-sidebar h3 {
    font-size: 15px;
  }

  .recooty-sidebar a {
    font-size: 14px;
  }

  .guide-block h3,
  .guide-block h4 {
    font-size: 18px;
  }

  .recooty-guide-content {
    font-size: 14px;
  }

  .code-block,
  .tip-box {
    font-size: 13px;
    padding: 10px;
  }
}
