:root {
  --primary: #f43f5e;
  --primary-glow: rgba(244, 63, 94, 0.4);
  --secondary: #e11d48;
  --accent: #fb7185;
  --accent-glow: rgba(251, 113, 133, 0.3);
  --bg-from: #1c0a0d;
  --bg-via: #2d1215;
  --bg-to: #0f0506;
  --card-bg: rgba(45, 18, 21, 0.6);
  --card-border: rgba(244, 63, 94, 0.2);
  --text-light: #ffffff;
  --text-muted: rgba(255, 255, 255, 0.7);
}

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

body {
  font-family: Inter, system-ui, sans-serif;
  font-weight: 400;
  background: linear-gradient(135deg, var(--bg-from) 0%, var(--bg-via) 50%, var(--bg-to) 100%);
  color: var(--text-light);
  line-height: 1.6;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent), var(--primary));
  z-index: 9999;
}

body::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(244, 63, 94, 0.03) 2px, rgba(244, 63, 94, 0.03) 4px);
  pointer-events: none;
  z-index: 1;
}

.e6r1-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.e6r1-header {
  position: sticky;
  top: 0;
  background: rgba(28, 10, 13, 0.9);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid var(--card-border);
}

.e6r1-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
}

.e6r1-logo {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

.e6r1-logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 20px;
}

.e6r1-nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
  list-style: none;
}

.e6r1-nav-links a {
  color: var(--text-light);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.e6r1-nav-links a:hover {
  color: var(--primary);
}

.e6r1-badge-18 {
  background: var(--primary);
  color: white;
  padding: 6px 12px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
}

.e6r1-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.e6r1-hamburger span {
  width: 25px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
  transition: all 0.3s;
}

.e6r1-hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}

.e6r1-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('ban1.jpeg') center/cover;
  opacity: 0.15;
  z-index: 0;
}

.e6r1-hero::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 100px;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 1200 120' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 120 Q300 60 600 90 T1200 80 V120 H0' fill='%231c0a0d'/%3E%3C/svg%3E");
  background-size: cover;
}

.e6r1-hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.e6r1-hero-text h1 {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 24px;
  background: linear-gradient(135deg, var(--text-light), var(--primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.e6r1-hero-text p {
  font-size: 20px;
  color: var(--text-muted);
  margin-bottom: 32px;
  max-width: 500px;
}

.e6r1-hero-image {
  position: relative;
  animation: float 6s ease-in-out infinite;
}

.e6r1-hero-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 20px;
  box-shadow: 0 20px 60px var(--primary-glow);
}

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

.e6r1-btn {
  display: inline-block;
  padding: 16px 40px;
  font-size: 18px;
  font-weight: 600;
  border-radius: 16px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}

.e6r1-btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  box-shadow: 0 10px 30px var(--primary-glow);
}

.e6r1-btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s;
}

.e6r1-btn-primary:hover::before {
  left: 100%;
}

.e6r1-btn-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 40px var(--primary-glow);
}

.e6r1-btn-primary:active {
  transform: scale(0.98);
}

.e6r1-section {
  padding: 100px 0;
  position: relative;
}

.e6r1-section-title {
  font-size: 42px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 16px;
  background: linear-gradient(135deg, var(--text-light), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.e6r1-section-subtitle {
  text-align: center;
  color: var(--text-muted);
  font-size: 18px;
  margin-bottom: 60px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.e6r1-download-box {
  background: var(--card-bg);
  backdrop-filter: blur(10px);
  border: 2px solid var(--card-border);
  border-radius: 20px;
  padding: 60px;
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

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

.e6r1-input {
  padding: 16px 24px;
  border-radius: 12px;
  border: 2px solid var(--card-border);
  background: rgba(0, 0, 0, 0.3);
  color: white;
  font-size: 16px;
  transition: all 0.25s;
}

.e6r1-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 20px var(--primary-glow);
}

.e6r1-success-message {
  display: none;
  padding: 24px;
  background: rgba(34, 197, 94, 0.2);
  border: 2px solid rgba(34, 197, 94, 0.4);
  border-radius: 12px;
  color: #4ade80;
  font-size: 18px;
  font-weight: 600;
}

.e6r1-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.e6r1-feature-card {
  background: var(--card-bg);
  backdrop-filter: blur(10px);
  border: 2px solid var(--card-border);
  border-radius: 20px;
  padding: 40px 32px;
  transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}

.e6r1-feature-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.25s;
}

.e6r1-feature-card:hover {
  transform: scale(1.05);
  border-color: var(--primary);
  box-shadow: 0 20px 60px var(--primary-glow);
}

.e6r1-feature-card:hover::before {
  opacity: 1;
}

.e6r1-feature-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 32px;
  position: relative;
  z-index: 1;
}

.e6r1-feature-card h3 {
  font-size: 24px;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.e6r1-feature-card p {
  color: var(--text-muted);
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

.e6r1-about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.e6r1-about-text h2 {
  font-size: 38px;
  margin-bottom: 24px;
}

.e6r1-about-text p {
  color: var(--text-muted);
  margin-bottom: 20px;
  font-size: 18px;
}

.e6r1-trust-badges {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.e6r1-trust-badge {
  background: var(--card-bg);
  border: 2px solid var(--card-border);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  font-weight: 600;
}

.e6r1-faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.e6r1-faq-item {
  background: var(--card-bg);
  backdrop-filter: blur(10px);
  border: 2px solid var(--card-border);
  border-radius: 16px;
  overflow: hidden;
}

.e6r1-faq-question {
  padding: 24px;
  cursor: pointer;
  font-weight: 600;
  font-size: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.25s;
}

.e6r1-faq-question:hover {
  background: rgba(244, 63, 94, 0.1);
}

.e6r1-faq-icon {
  font-size: 24px;
  transition: transform 0.25s;
}

.e6r1-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease-out;
  color: var(--text-muted);
}

.e6r1-faq-answer-content {
  padding: 0 24px 24px;
}

.e6r1-faq-item.active .e6r1-faq-icon {
  transform: rotate(180deg);
}

.e6r1-disclaimer {
  background: rgba(244, 63, 94, 0.1);
  border: 2px solid var(--card-border);
  border-radius: 20px;
  padding: 40px;
  margin: 80px 0;
  text-align: center;
}

.e6r1-disclaimer h3 {
  font-size: 28px;
  margin-bottom: 16px;
  color: var(--primary);
}

.e6r1-disclaimer p {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.8;
}

.e6r1-footer {
  background: rgba(15, 5, 6, 0.8);
  border-top: 2px solid var(--card-border);
  padding: 60px 0 40px;
  margin-top: 100px;
}

.e6r1-footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.e6r1-footer-logo {
  font-size: 28px;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}

.e6r1-footer-links {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
  list-style: none;
}

.e6r1-footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.25s;
}

.e6r1-footer-links a:hover {
  color: var(--primary);
}

.e6r1-footer-18 {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-direction: column;
}

.e6r1-footer-18-badge {
  width: 60px;
  height: 60px;
  background: var(--primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
}

.e6r1-footer-copyright {
  text-align: center;
  color: var(--text-muted);
  font-size: 14px;
  margin-top: 20px;
}

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

.e6r1-modal-content {
  background: var(--bg-via);
  border: 2px solid var(--card-border);
  border-radius: 20px;
  padding: 50px;
  max-width: 500px;
  text-align: center;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.e6r1-modal h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: var(--primary);
}

.e6r1-modal p {
  color: var(--text-muted);
  margin-bottom: 30px;
  font-size: 18px;
}

.e6r1-modal-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
}

.e6r1-btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 2px solid var(--card-border);
}

.e6r1-page-header {
  padding: 120px 0 60px;
  text-align: center;
}

.e6r1-page-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 16px;
  background: linear-gradient(135deg, var(--text-light), var(--primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.e6r1-content-box {
  background: var(--card-bg);
  backdrop-filter: blur(10px);
  border: 2px solid var(--card-border);
  border-radius: 20px;
  padding: 60px;
  margin-bottom: 40px;
}

.e6r1-content-box h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: var(--primary);
}

.e6r1-content-box h3 {
  font-size: 24px;
  margin: 30px 0 16px;
}

.e6r1-content-box p {
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.8;
}

.e6r1-content-box ul {
  margin: 20px 0;
  padding-left: 40px;
  color: var(--text-muted);
}

.e6r1-content-box li {
  margin-bottom: 12px;
}

.e6r1-scoring-table {
  width: 100%;
  border-collapse: collapse;
  margin: 30px 0;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 12px;
  overflow: hidden;
}

.e6r1-scoring-table th {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  padding: 16px;
  text-align: left;
  font-weight: 600;
}

.e6r1-scoring-table td {
  padding: 16px;
  border-bottom: 1px solid var(--card-border);
}

.e6r1-scoring-table tr:last-child td {
  border-bottom: none;
}

.e6r1-tips-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.e6r1-tip-card {
  background: rgba(244, 63, 94, 0.1);
  border: 2px solid var(--card-border);
  border-radius: 16px;
  padding: 24px;
}

.e6r1-tip-card h4 {
  color: var(--primary);
  font-size: 20px;
  margin-bottom: 12px;
}

.e6r1-tip-card p {
  margin-bottom: 0;
}

.e6r1-back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  margin-bottom: 40px;
  transition: all 0.25s;
}

.e6r1-back-link:hover {
  gap: 12px;
}

@media (max-width: 1024px) {
  .e6r1-hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .e6r1-hero-text h1 {
    font-size: 42px;
  }
  .e6r1-hero-text p {
    margin-left: auto;
    margin-right: auto;
  }
  .e6r1-hero-image {
    order: -1;
  }
  .e6r1-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .e6r1-about-content {
    grid-template-columns: 1fr;
  }
  .e6r1-faq-grid {
    grid-template-columns: 1fr;
  }
  .e6r1-tips-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .e6r1-nav-links {
    position: fixed;
    top: 73px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 73px);
    background: rgba(28, 10, 13, 0.98);
    flex-direction: column;
    justify-content: flex-start;
    padding: 40px;
    transition: left 0.3s;
  }
  .e6r1-nav-links.active {
    left: 0;
  }
  .e6r1-hamburger {
    display: flex;
  }
  .e6r1-hero-text h1 {
    font-size: 36px;
  }
  .e6r1-features-grid {
    grid-template-columns: 1fr;
  }
  .e6r1-download-box {
    padding: 40px 24px;
  }
  .e6r1-content-box {
    padding: 30px 20px;
  }
  .e6r1-modal-content {
    padding: 30px 20px;
    margin: 20px;
  }
  .e6r1-section {
    padding: 60px 0;
  }
  .e6r1-scoring-table {
    font-size: 14px;
  }
  .e6r1-scoring-table th,
  .e6r1-scoring-table td {
    padding: 12px 8px;
  }
}

@media (max-width: 640px) {
  .e6r1-hero-text h1 {
    font-size: 28px;
  }
  .e6r1-section-title {
    font-size: 32px;
  }
  .e6r1-page-title {
    font-size: 36px;
  }
  .e6r1-footer-links {
    flex-direction: column;
    gap: 16px;
  }
}