/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif;
  background: #ffffff;
  color: #1f2937;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: #111827;
}

h1 {
  font-size: 3.5rem;
  font-weight: 800;
}

h2 {
  font-size: 2.5rem;
  font-weight: 700;
}

h3 {
  font-size: 1.5rem;
  font-weight: 600;
}

p {
  margin-bottom: 1rem;
  color: #6b7280;
  font-weight: 400;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header & Navigation */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(218, 165, 32, 0.2);
  z-index: 1000;
  transition: all 0.3s ease;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo {
  height: 40px;
  width: auto;
}

.brand-name {
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, #d97706, #f59e0b);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-menu {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-link {
  color: #939393;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nav-link:hover {
  color: #d97706;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(135deg, #d97706, #f59e0b);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.hamburger {
  width: 25px;
  height: 3px;
  background: #374151;
  transition: all 0.3s ease;
}

/* Hero Section */
.hero {
  padding: 150px 0 100px;
  background: linear-gradient(135deg, #ffffff 0%, #fef3c7 50%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(218, 165, 32, 0.1) 0%,
    transparent 70%
  );
}

.hero-content {
  text-align: center;
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #111827, #d97706);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: #6b7280;
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 12px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  min-width: 180px;
}

.btn-primary {
  background: linear-gradient(135deg, #d97706, #f59e0b);
  color: white;
  box-shadow: 0 4px 15px rgba(217, 119, 6, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(217, 119, 6, 0.6);
}

.btn-secondary {
  background: rgba(217, 119, 6, 0.1);
  color: #d97706;
  border: 2px solid #d97706;
}

.btn-secondary:hover {
  background: rgba(217, 119, 6, 0.2);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: #374151;
  border: 2px solid rgba(55, 65, 81, 0.3);
}

.btn-outline:hover {
  background: rgba(55, 65, 81, 0.1);
  border-color: rgba(55, 65, 81, 0.5);
}

.btn-small {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  min-width: auto;
}

/* Sections */
.featured-platforms,
.platform-comparison,
.editorial-independence {
  padding: 100px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 1rem;
  font-size: 3rem;
  background: linear-gradient(135deg, #111827, #d97706);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-subtitle {
  text-align: center;
  margin-bottom: 4rem;
  font-size: 1.125rem;
  color: #6b7280;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Platform Cards */
.platforms-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 2rem;
}

.platform-card {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(218, 165, 32, 0.2);
  border-radius: 20px;
  padding: 2rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  gap: 2rem;
}

.platform-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(217, 119, 6, 0.05),
    rgba(245, 158, 11, 0.05)
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.platform-card:hover {
  transform: translateY(-8px);
  border-color: rgba(218, 165, 32, 0.4);
  box-shadow: 0 20px 40px rgba(217, 119, 6, 0.2);
}

.platform-card:hover::before {
  opacity: 1;
}

.platform-card.featured {
  border-color: rgba(218, 165, 32, 0.5);
}

.platform-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  min-width: 150px;
}

.platform-logo {
  height: 60px;
  width: auto;
}

.platform-badges {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
}

.badge {
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge.editor-choice {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: white;
}

.badge.rating {
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
}

.platform-content {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.platform-name {
  font-size: 1.5rem;
  margin-bottom: 0;
}

.platform-description {
  color: #6b7280;
  margin-bottom: 0;
}

.platform-bonus {
  background: rgba(217, 119, 6, 0.1);
  border: 1px solid rgba(217, 119, 6, 0.3);
  border-radius: 12px;
  padding: 1rem;
  margin-bottom: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.bonus-label {
  font-size: 0.875rem;
  color: #6b7280;
}

.bonus-value {
  font-size: 1.25rem;
  font-weight: 700;
  color: #d97706;
}

.platform-features {
  list-style: none;
  margin-bottom: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
}

.platform-features li {
  padding: 0.25rem 0;
  color: #374151;
  position: relative;
  padding-left: 1.5rem;
  font-size: 0.875rem;
}

.platform-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #10b981;
  font-weight: bold;
}

.platform-actions {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  flex-shrink: 0;
  min-width: 200px;
  align-self: center;
}

/* Comparison Table */
.comparison-table {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(218, 165, 32, 0.2);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.table-header,
.table-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr 1fr;
  gap: 1rem;
  padding: 1.5rem;
  align-items: center;
}

.table-header {
  background: rgba(217, 119, 6, 0.1);
  font-weight: 600;
  color: #111827;
}

.table-row {
  border-top: 1px solid rgba(217, 119, 6, 0.1);
  transition: background-color 0.3s ease;
}

.table-row:hover {
  background: rgba(217, 119, 6, 0.05);
}

.platform-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.table-logo {
  height: 40px;
  width: auto;
}

.platform-name-small {
  font-weight: 600;
  color: #111827;
}

.platform-license {
  font-size: 0.875rem;
  color: #6b7280;
}

.rating-badge {
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
}

.feature-yes {
  color: #10b981;
  font-size: 1.25rem;
  font-weight: bold;
}

@media (max-width: 1024px) {
  .table-header,
  .table-row {
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr 1fr;
    gap: 0.5rem;
    padding: 1rem;
  }

  .platform-info {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .table-logo {
    height: 30px;
  }

  .platform-name-small {
    font-size: 0.875rem;
  }

  .platform-license {
    font-size: 0.75rem;
  }
}

/* Editorial Independence */
.editorial-independence {
  background: rgba(254, 243, 199, 0.5);
}

.editorial-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.editorial-content h2 {
  margin-bottom: 2rem;
}

.editorial-content p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

/* Footer */
.footer {
  background: #f9fafb;
  border-top: 1px solid rgba(218, 165, 32, 0.2);
  padding: 4rem 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  margin-bottom: 3rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-logo {
  height: 150px;
  width: 200px;
}

.footer-tagline {
  color: #6b7280;
  max-width: 400px;
}

.footer-section h4 {
  margin-bottom: 1rem;
  color: #111827;
}

.footer-section ul {
  list-style: none;
}

.footer-section li {
  margin-bottom: 0.5rem;
}

.footer-section a {
  color: #6b7280;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: #d97706;
}

.footer-bottom {
  border-top: 1px solid rgba(218, 165, 32, 0.1);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.responsible-gaming {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

.rg-icon {
  height: 40px;
  width: auto;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.rg-icon:hover {
  opacity: 1;
}

.ga-icon {
  height: auto;
  width: 100px;
}

.footer-disclaimer {
  max-width: 600px;
}

.footer-disclaimer p {
  font-size: 0.875rem;
  color: #6b7280;
  margin-bottom: 0.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    justify-content: flex-start;
    padding: 2rem;
    transition: left 0.3s ease;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-toggle.active .hamburger:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .nav-toggle.active .hamburger:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.active .hamburger:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .platforms-grid {
    flex-direction: column;
  }

  .platform-card {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }

  .platform-header {
    min-width: auto;
  }

  .platform-features {
    grid-template-columns: 1fr;
  }

  .platform-actions {
    flex-direction: row;
    justify-content: center;
    min-width: auto;
  }

  .comparison-table {
    overflow-x: auto;
  }

  .table-header {
    display: none;
  }

  .table-row {
    display: block;
    border: 1px solid rgba(217, 119, 6, 0.2);
    border-radius: 12px;
    margin-bottom: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.9);
  }

  .table-row:hover {
    background: rgba(217, 119, 6, 0.05);
  }

  .table-cell {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(217, 119, 6, 0.1);
  }

  .table-cell:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  .table-cell::before {
    content: attr(data-label);
    font-weight: 600;
    color: #6b7280;
    font-size: 0.875rem;
    flex-shrink: 0;
  }

  .platform-info {
    flex-direction: row;
    gap: 1rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: center;
  }

  .platform-actions {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }

  .hero {
    padding: 120px 0 80px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .platforms-grid {
    gap: 1.5rem;
  }

  .platform-card {
    padding: 1.5rem;
    flex-direction: column;
    text-align: center;
  }

  .featured-platforms,
  .platform-comparison,
  .editorial-independence {
    padding: 60px 0;
  }
}

/* Legal Pages */
.legal-page {
  padding: 150px 0 100px;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-content h1 {
  margin-bottom: 2rem;
  text-align: center;
}

.legal-content h2 {
  margin-top: 3rem;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.legal-content p {
  margin-bottom: 1.5rem;
  font-size: 1rem;
  line-height: 1.7;
}

.legal-content ul {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}

.legal-content li {
  margin-bottom: 0.5rem;
  color: #a1a1aa;
}

.contact-form {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(218, 165, 32, 0.2);
  border-radius: 20px;
  padding: 2rem;
  margin-top: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

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

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #111827;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(218, 165, 32, 0.3);
  border-radius: 12px;
  color: #111827;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #d97706;
  box-shadow: 0 0 0 3px rgba(217, 119, 6, 0.1);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

/* Platform Review Pages */
.platform-review {
  padding: 150px 0 100px;
}

.review-header {
  margin-bottom: 3rem;
}

.platform-intro {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 2rem;
}

.platform-logo-large {
  height: 80px;
  width: auto;
}

.platform-tagline {
  font-size: 1.25rem;
  color: #6b7280;
  margin-bottom: 1rem;
}

.platform-badges {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.badge.rating-large {
  font-size: 1rem;
  padding: 0.5rem 1rem;
}

.platform-quick-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(218, 165, 32, 0.2);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.quick-info-item {
  text-align: center;
}

.quick-info-item .label {
  display: block;
  font-size: 0.875rem;
  color: #6b7280;
  margin-bottom: 0.5rem;
}

.quick-info-item .value {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: #d97706;
}

.review-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 4rem;
  flex-wrap: wrap;
}

.btn-large {
  padding: 1.25rem 3rem;
  font-size: 1.125rem;
  min-width: 220px;
}

.review-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
}

.review-section {
  margin-bottom: 3rem;
}

.review-section h2 {
  margin-bottom: 1.5rem;
  border-bottom: 2px solid rgba(218, 165, 32, 0.2);
  padding-bottom: 0.5rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.feature-item {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(218, 165, 32, 0.2);
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.feature-item h4 {
  color: #d97706;
  margin-bottom: 0.5rem;
}

.feature-item p {
  color: #6b7280;
  font-size: 0.875rem;
}

.bonus-details {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.bonus-card {
  background: rgba(217, 119, 6, 0.1);
  border: 2px solid rgba(217, 119, 6, 0.3);
  border-radius: 16px;
  padding: 2rem;
  flex: 1;
  min-width: 300px;
}

.bonus-card h3 {
  color: #d97706;
  margin-bottom: 1rem;
}

.bonus-amount {
  font-size: 3rem;
  font-weight: 800;
  color: #d97706;
  margin-bottom: 1rem;
}

.bonus-terms {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(217, 119, 6, 0.2);
}

.bonus-terms h5 {
  color: #111827;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
}

.bonus-terms p {
  font-size: 0.875rem;
  color: #6b7280;
}

.markets-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.market-item {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(218, 165, 32, 0.2);
  border-radius: 8px;
  padding: 1rem;
  text-align: center;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.market-item:hover {
  border-color: rgba(218, 165, 32, 0.4);
  background: rgba(217, 119, 6, 0.1);
}

.payment-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
}

.payment-item {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(218, 165, 32, 0.2);
  border-radius: 8px;
  padding: 1rem;
  text-align: center;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.payment-item:hover {
  border-color: rgba(218, 165, 32, 0.4);
  background: rgba(217, 119, 6, 0.1);
}

.sidebar-card {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(218, 165, 32, 0.2);
  border-radius: 16px;
  padding: 1.5rem;
  margin-bottom: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.sidebar-card h3 {
  margin-bottom: 1rem;
  color: #d97706;
}

.overall-rating {
  font-size: 3rem;
  font-weight: 800;
  color: #10b981;
  text-align: center;
  margin-bottom: 1.5rem;
}

.rating-breakdown {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.rating-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(218, 165, 32, 0.1);
}

.rating-item:last-child {
  border-bottom: none;
}

.rating-score {
  font-weight: 600;
  color: #10b981;
}

.support-info {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.support-item {
  padding: 0.5rem 0;
  color: #6b7280;
}

.support-item strong {
  color: #111827;
}

/* Responsive Design for Review Pages */
@media (max-width: 768px) {
  .platform-intro {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .platform-logo-large {
    height: 60px;
  }

  .platform-quick-info {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    padding: 1.5rem;
  }

  .review-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .bonus-card {
    min-width: auto;
  }

  .markets-list,
  .payment-methods {
    grid-template-columns: repeat(2, 1fr);
  }

  .review-actions {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .platform-quick-info {
    grid-template-columns: 1fr;
  }

  .markets-list,
  .payment-methods {
    grid-template-columns: 1fr;
  }

  .bonus-amount {
    font-size: 2rem;
  }

  .overall-rating {
    font-size: 2rem;
  }
}
