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

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.7;
  color: #2c3e50;
  background-color: #F9F6F0;
  background-image:
    repeating-linear-gradient(0deg, transparent 0px, transparent 1px, rgba(0, 0, 0, .006) 1px, rgba(0, 0, 0, .006) 2px),
    repeating-linear-gradient(90deg, transparent 0px, transparent 1px, rgba(0, 0, 0, .006) 1px, rgba(0, 0, 0, .006) 2px);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 30px;
  width: 100%;
}

.hero {
  text-align: center;
  margin-bottom: 80px;
  padding: 40px 30px;
  background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('https://imagedelivery.net/xMnwd1aoy-PQ8Klk2JdGdw/32249570-b461-48f1-081e-4d0b0ac8f500/public');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
}

.section-title {
  font-size: 32px;
  font-weight: 600;
  color: rgb(26, 26, 26);
  margin-bottom: 40px;
  text-align: center;
  letter-spacing: -0.3px;
}

.manifesto-block {
  margin-bottom: 40px;
  padding: 35px;
  background-color: #f8f9fa;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.manifesto-block:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.manifesto-block.special-block {
  background-color: #EFF6FF;
}

h1 {
  font-size: 48px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 15px;
  letter-spacing: -0.5px;
}

.subtitle {
  font-size: 20px;
  color: #ffffff;
  font-weight: 400;
  margin-top: 10px;
}

.content {
  margin-bottom: 60px;
}

.manifesto-section {
  margin-bottom: 60px;
}

.block-title {
  font-size: 24px;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 15px;
}

.block-text {
  font-size: 17px;
  line-height: 1.8;
  color: #4a5568;
  font-weight: 400;
}

.celebration-list {
  margin-top: 15px;
  padding-left: 25px;
  list-style-type: disc;
}

.celebration-list li {
  font-size: 17px;
  line-height: 1.8;
  color: #4a5568;
  font-weight: 400;
  margin-bottom: 10px;
}

.closing-message {
  text-align: center;
  font-size: 24px;
  font-weight: 500;
  color: rgb(44, 62, 80);
  margin-top: 50px;
  padding: 30px 0px;
}

.footer {
  text-align: center;
  padding: 30px 0;
  margin-top: 60px;
  border-top: 1px solid #e5e7eb;
}

.footer p {
  font-size: 14px;
  color: #888;
  font-weight: 400;
}

.join-section {
  text-align: center;
  margin-bottom: 60px;
  padding: 50px 35px;
  background-color: #f8f9fa;
  border-radius: 8px;
}

.join-text {
  font-size: 18px;
  color: #4a5568;
  margin-bottom: 30px;
  font-weight: 400;
}

.btn-primary {
  display: inline-block;
  padding: 15px 40px;
  background-color: #C67B5C;
  color: #ffffff;
  text-decoration: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  transition: background-color 0.3s ease, transform 0.2s ease;
  width: 100%;
  text-align: center;
}

.btn-primary:hover {
  background-color: #B56A4C;
  transform: translateY(-2px);
}

.join-options {
  display: flex;
  gap: 40px;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-top: 20px;
}

.join-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  flex: 1;
  min-width: 250px;
  max-width: 300px;
}

.qr-code {
  width: 200px;
  height: 200px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.join-option .btn-primary {
  width: 100%;
}

.visitor-counter {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: linear-gradient(135deg, #C67B5C 0%, #B56A4C 100%);
  color: #ffffff;
  padding: 12px 20px;
  border-radius: 25px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  z-index: 1000;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  min-width: 100px;
}

.visitor-counter:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.counter-label {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  opacity: 0.9;
}

.counter-value {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.5px;
}

@media (max-width: 768px) {
  .container {
    padding: 40px 20px;
  }

  h1 {
    font-size: 36px;
    color: #ffffff;
  }

  .subtitle {
    font-size: 18px;
    color: #ffffff;
  }

  .globe-icon {
    font-size: 60px;
  }

  .section-title {
    font-size: 26px;
  }

  .block-title {
    font-size: 20px;
  }

  .block-text {
    font-size: 16px;
  }

  .manifesto-block {
    padding: 25px;
  }

  .celebration-list li {
    font-size: 16px;
  }

  .closing-message {
    font-size: 20px;
    margin-top: 40px;
    padding: 25px 0;
  }

  .join-section {
    padding: 40px 25px;
  }

  .join-text {
    font-size: 17px;
  }

  .join-options {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  .join-option {
    width: 100%;
    max-width: 100%;
  }

  .hero {
    height: 70vh;
    padding: 30px 20px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 30px;
    color: #ffffff;
  }

  .subtitle {
    font-size: 16px;
    color: #ffffff;
  }

  .globe-icon {
    font-size: 50px;
  }

  .section-title {
    font-size: 22px;
  }

  .manifesto-block {
    padding: 20px;
  }

  .celebration-list {
    padding-left: 20px;
  }

  .closing-message {
    font-size: 18px;
    margin-top: 30px;
    padding: 20px 0;
  }

  .statement-box {
    padding: 25px 20px;
  }

  .join-section {
    padding: 30px 20px;
  }

  .join-text {
    font-size: 16px;
  }

  .btn-primary {
    padding: 12px 30px;
    font-size: 15px;
  }

  .hero {
    height: 75vh;
    padding: 30px 20px;
  }
}

@media (max-width: 768px) {
  .visitor-counter {
    bottom: 15px;
    right: 15px;
    padding: 10px 16px;
    min-width: 85px;
  }

  .counter-label {
    font-size: 10px;
  }

  .counter-value {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .visitor-counter {
    bottom: 12px;
    right: 12px;
    padding: 8px 14px;
    min-width: 75px;
  }

  .counter-label {
    font-size: 9px;
  }

  .counter-value {
    font-size: 16px;
  }
}