* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  background: #ffffff;
  min-height: 100vh;
  line-height: 1.6;
  color: #333333;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}

body.admin-page {
  background: #f5f5f5;
  padding: 20px;
}

.main {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  flex: 1;
  box-sizing: border-box;
}

.content-inner {
  padding: 30px 0 40px;
}

.page-heading-secondary {
  font-size: 24px;
  color: #333333;
  margin-bottom: 8px;
}

.subtitle {
  color: #666666;
  font-size: 16px;
  margin-bottom: 30px;
}

.intro-copy {
  font-size: 15px;
  color: #333333;
  margin-bottom: 30px;
  line-height: 1.5;
}

.text-success {
  color: #27ae60;
}

.container-centered {
  max-width: 560px;
  width: 100%;
  margin: 0 auto;
  padding: 30px 40px 40px;
}

.hero {
  background: #2c3e50;
  color: #ffffff;
  padding: 0 0 60px;
  text-align: center;
  width: 100%;
  overflow: hidden;
}
.hero h1 {
  font-size: 42px;
  margin-bottom: 15px;
  font-weight: 700;
  padding: 0 40px;
}
.hero p {
  font-size: 20px;
  opacity: 0.95;
  margin-bottom: 30px;
  padding: 0 40px;
}
.hero .hero-links {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 30px;
  padding: 0 40px;
}
.hero .btn-primary {
  background: #ffffff;
  color: #2980b9;
  border: 2px solid #ffffff;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s;
}
.hero .btn-primary:hover {
  background: rgba(255, 255, 255, 0.95);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}
.hero .btn-hero-link {
  color: #ffffff;
  text-decoration: none;
  padding: 12px 24px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s;
  background: transparent;
}
.hero .btn-hero-link:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

.btn {
  background: #2980b9;
  color: #ffffff;
  border: none;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: transform 0.2s, box-shadow 0.2s, background 0.3s;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  background: #2472a4;
}
.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background: #ffffff;
  color: #2980b9;
}
.btn-primary:hover {
  background: #f8f9fa;
  color: #2980b9;
}

.form-group {
  margin-bottom: 25px;
}

label {
  display: block;
  margin-bottom: 8px;
  color: #333333;
  font-weight: 500;
  font-size: 14px;
}

input[type=text],
input[type=password] {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 16px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  transition: border-color 0.3s;
}
input[type=text]:focus,
input[type=password]:focus {
  outline: none;
  border-color: #2980b9;
}

.alert {
  padding: 12px 16px;
  border-radius: 8px;
  margin-bottom: 20px;
  font-size: 14px;
}

.alert-error {
  background-color: white;
  color: #d62c1a;
  border: 1px solid #f8c9c4;
}

.alert-success {
  background-color: #c8f3da;
  color: #1e8449;
  border: 1px solid #89e5b0;
}

.alert-info {
  background: #f7fbfe;
  border: 1px solid #b6daf2;
  color: #217dbb;
}

.section {
  margin-bottom: 40px;
}
.section h2 {
  color: #333333;
  font-size: 28px;
  margin-bottom: 15px;
  border-bottom: 3px solid #2980b9;
  padding-bottom: 10px;
}
.section h3 {
  color: #555555;
  font-size: 20px;
  margin-top: 25px;
  margin-bottom: 10px;
  border: none;
  padding: 0;
}
.section p {
  color: #666666;
  font-size: 16px;
  margin-bottom: 15px;
}
.section ul,
.section ol {
  margin-left: 25px;
  margin-bottom: 15px;
  color: #666666;
}
.section ul li,
.section ol li {
  margin-bottom: 8px;
}
.section .list-styled {
  margin-left: 25px;
  color: #666666;
}
.section .list-styled li {
  margin-bottom: 12px;
}
.section code {
  background: #f8f9fa;
  padding: 2px 6px;
  border-radius: 4px;
  font-family: "Courier New", monospace;
  font-size: 14px;
  color: #e74c3c;
}

.section-cta {
  text-align: center;
  margin-top: 30px;
}
.section-cta .btn + .btn {
  margin-left: 12px;
}

.btn-cta {
  font-size: 18px;
  padding: 12px 40px;
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
  margin-bottom: 30px;
}

.feature-card {
  background: transparent;
  padding: 0;
  border: none;
  border-radius: 0;
  border-left: none;
  border-bottom: 2px solid #e0e0e0;
  padding-bottom: 30px;
  transition: border-color 0.3s;
}
.feature-card:hover {
  border-bottom-color: #2980b9;
}
.feature-card h3 {
  color: #333333;
  font-size: 20px;
  margin-bottom: 12px;
  font-weight: 600;
  border: none;
  padding: 0;
}
.feature-card p {
  color: #666666;
  font-size: 15px;
  margin: 0;
  line-height: 1.6;
}

.warning-box {
  background: #fff3cd;
  border-left: 4px solid #ffc107;
  padding: 20px;
  border-radius: 8px;
  margin: 30px 0;
}
.warning-box strong {
  color: #856404;
  display: block;
  margin-bottom: 10px;
  font-size: 16px;
}
.warning-box p {
  color: #856404;
  margin: 0;
}

.footer {
  background: #2c3e50;
  color: #ffffff;
  padding: 30px 40px;
  text-align: center;
}
.footer .footer-logo {
  height: 40px;
  width: auto;
  margin-bottom: 12px;
  opacity: 0.9;
}
.footer a {
  color: #3498db;
  text-decoration: none;
}
.footer a:hover {
  text-decoration: underline;
}
.footer p {
  margin-bottom: 10px;
}

.download-link {
  display: inline-block;
  margin-top: 15px;
  padding: 12px 24px;
  background: #27ae60;
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 500;
  transition: background 0.3s;
}
.download-link:hover {
  background: #229955;
}

.info {
  margin-top: 30px;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 8px;
  font-size: 13px;
  color: #666666;
  line-height: 1.6;
}
.info h3 {
  color: #333333;
  margin-bottom: 10px;
  font-size: 16px;
}
.info ul {
  margin-left: 20px;
  margin-top: 8px;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  align-items: center;
  justify-content: center;
}

.modal-content {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 12px;
  max-width: 500px;
  width: 90%;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  text-align: center;
}
.modal-content h2 {
  color: #27ae60;
  margin-bottom: 15px;
}
.modal-content p {
  color: #666666;
  margin-bottom: 15px;
}
.modal-content .modal-rate-info {
  background: #f8f9fa;
  padding: 12px;
  border-radius: 8px;
  margin: 20px 0;
}

.modal-close {
  background: #2980b9;
  color: #ffffff;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
  margin-top: 10px;
  transition: background 0.3s;
}
.modal-close:hover {
  background: #2472a4;
}

body.admin-page .main.admin-page-content {
  padding: 20px 0;
}

.dashboard-actions {
  margin-bottom: 30px;
}

.dashboard-actions-form {
  display: inline-block;
}

.form-inline-block {
  max-width: 400px;
}

.form-help {
  margin-top: 20px;
  color: #666666;
  font-size: 14px;
}

.table-users {
  margin-top: 20px;
  width: 100%;
  max-width: 400px;
}

.table-empty {
  text-align: center;
  padding: 40px;
  color: #666666;
}

.cell-user-agent {
  max-width: 300px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.stats {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.stat-card {
  background: #ffffff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  flex: 1;
}

.stat-value {
  font-size: 32px;
  font-weight: bold;
  color: #2980b9;
}

.stat-label {
  color: #666666;
  font-size: 14px;
  margin-top: 5px;
}

.table-container {
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th {
  background: #f8f9fa;
  padding: 12px;
  text-align: left;
  font-weight: 600;
  color: #333333;
  border-bottom: 2px solid #dee2e6;
}

td {
  padding: 12px;
  border-bottom: 1px solid #dee2e6;
  color: #666666;
}

tr:hover {
  background: #f8f9fa;
}

.badge {
  display: inline-block;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 500;
}

.badge-admin {
  background: #27ae60;
  color: #ffffff;
}

.badge-user {
  background: #555555;
  color: #ffffff;
}

.back-link-wrap {
  margin-top: 20px;
}

.back-link {
  display: inline-block;
  color: #2980b9;
  text-decoration: none;
  font-size: 14px;
}
.back-link:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .hero {
    padding: 0 0 40px;
  }
  .hero h1,
  .hero p,
  .hero .hero-links {
    padding: 0 20px;
  }
  .hero h1 {
    font-size: 32px;
  }
  .hero p {
    font-size: 18px;
  }
  .hero .hero-links {
    flex-direction: column;
    gap: 12px;
  }
  .hero .hero-links .btn-hero-link {
    width: 100%;
    max-width: 280px;
  }
  .container-centered {
    padding: 12px 20px 30px;
    margin-top: 12px;
  }
  .features {
    grid-template-columns: 1fr;
  }
  .stats {
    flex-direction: column;
  }
  body.admin-page {
    padding: 12px;
  }
}
.modal-links {
  margin-top: 15px;
}
.modal-links a {
  color: #2980b9;
  text-decoration: none;
}
.modal-links a:hover {
  text-decoration: underline;
}

.faq-item {
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid #e0e0e0;
}
.faq-item:last-child {
  border-bottom: none;
}
.faq-item h3 {
  color: #333333;
  font-size: 20px;
  margin-bottom: 12px;
  font-weight: 600;
  border: none;
  padding: 0;
}
.faq-item p {
  color: #666666;
  font-size: 16px;
  margin-bottom: 12px;
  line-height: 1.7;
}
.faq-item p:last-child {
  margin-bottom: 0;
}
.faq-item p strong {
  color: #333333;
  font-weight: 600;
}
.faq-item p code {
  background: #f8f9fa;
  padding: 2px 6px;
  border-radius: 4px;
  font-family: "Courier New", monospace;
  font-size: 14px;
  color: #e74c3c;
}
.faq-item p a {
  color: #2980b9;
  text-decoration: none;
}
.faq-item p a:hover {
  text-decoration: underline;
}/*# sourceMappingURL=styles.css.map */