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

body {
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu",
    "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  width: 100%;
  min-height: 100vh;
  overflow-x: hidden;
  background: white;
  color: #1a1a1a;
}

.background-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.background-media {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.background-media--video {
  display: block;
}

.background-media--fallback {
  display: none;
}

@media (max-width: 768px) {
  .background-media--video {
    display: none;
  }

  .background-media--fallback {
    display: block;
  }
}

.main-content {
  position: relative;
  z-index: 10;
  width: 100%;
}

.hero-section {
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  text-align: center;
}

.verse-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 50px;
  max-width: 800px;
  width: 100%;
}

.verse-badge {
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: white;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
}

.verse-text {
  font-size: 32px;
  font-weight: 700;
  color: white;
  line-height: 1.4;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  letter-spacing: -0.02em;
}

.btn-read-chapter {
  padding: 14px 32px;
  background: white;
  color: #1a1a1a;
  border: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-read-chapter:hover {
  background: #f3f4f6;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
  transform: translateY(-2px);
}

.btn-read-chapter:active {
  transform: translateY(0);
}

.content-section {
  width: 100%;
  background: rgba(0, 0, 0, 0);
  padding: 40px 20px;
}

.content-wrapper {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.action-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-secondary {
  text-decoration: none;
  padding: 12px 28px;
  background: white;
  color: #000000;
  border: 2px solid #e5e7eb;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.35px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-secondary:hover {
  background: #f9fafb;
  border-color: #d1d5db;
  transform: translateY(-2px);
}

.btn-secondary:active {
  transform: translateY(0);
}

.social-block {
  text-align: center;
  padding: 30px;
  border-radius: 12px;
}

.social-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #ffffff;
}

.social-description {
  font-size: 15px;
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.6;
}

.social-link {
  display: inline-block;
  padding: 12px 28px;
  background: #1a1a1a;
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-link:hover {
  background: #374151;
  transform: translateY(-2px);
}

.products-section {
  width: 100%;
}

.products-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
  color: #1a1a1a;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.product-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  transform: translateY(-4px);
}

.product-image {
  width: 100%;
  height: 200px;
  background: #f3f4f6;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.product-placeholder {
  color: #9ca3af;
  font-size: 14px;
  font-weight: 600;
}

.product-content {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-title {
  font-size: 18px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.product-description {
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 15px;
  flex: 1;
}

.product-links {
  display: flex;
  gap: 10px;
}

.product-link {
  flex: 1;
  padding: 8px 12px;
  background: #f3f4f6;
  color: #1a1a1a;
  text-decoration: none;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-link:hover {
  background: #1a1a1a;
  color: white;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.modal.active {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: -1;
}

.modal-container {
  position: relative;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  background: white;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  transform: scale(0.95);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1001;
}

.modal.active .modal-container {
  transform: scale(1);
}

.modal-container--small {
  max-width: 400px;
}

.modal-content {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 30px;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e5e7eb;
}

.modal-title {
  font-size: 20px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
}

.modal-close {
  background: none;
  border: none;
  font-size: 28px;
  color: #6b7280;
  cursor: pointer;
  transition: color 0.3s;
  padding: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-close:hover {
  color: #1a1a1a;
}

.modal-body {
  flex: 1;
  overflow-y: auto;
  margin-bottom: 20px;
}

.modal-body--center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.modal-description {
  font-size: 15px;
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 20px;
}

.modal-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

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

.form-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 12px;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-size: 14px;
  font-family: inherit;
  transition: all 0.3s;
  color: #1a1a1a;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: #1a1a1a;
  box-shadow: 0 0 0 3px rgba(26, 26, 26, 0.1);
}

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

.form-counter {
  font-size: 12px;
  color: #9ca3af;
  text-align: right;
  margin-top: 4px;
}

.form-counter.is-warning {
  color: #ef4444;
}

.btn-submit {
  width: 100%;
  padding: 12px;
  background: #1a1a1a;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  margin-top: 10px;
}

.btn-submit:hover {
  background: #374151;
}

.btn-cancel {
  padding: 12px 28px;
  background: #ef4444;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-cancel:hover {
  background: #dc2626;
  transform: translateY(-2px);
}

.btn-confirm {
  padding: 12px 28px;
  background: #22c55e;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-confirm:hover {
  background: #16a34a;
  transform: translateY(-2px);
}

.btn-close-modal {
  padding: 12px 28px;
  background: #1a1a1a;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-close-modal:hover {
  background: #374151;
}

@media (max-width: 768px) {
  .verse-text {
    font-size: 24px;
  }

  .verse-container {
    gap: 30px;
  }

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

  .content-wrapper {
    gap: 40px;
  }

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

  .modal-content {
    padding: 24px;
  }
}

@media (max-width: 480px) {
  .verse-text {
    font-size: 20px;
  }

  .verse-container {
    gap: 20px;
  }

  .btn-read-chapter {
    padding: 12px 24px;
    font-size: 14px;
  }

  .verse-badge {
    font-size: 14px;
    padding: 10px 20px;
  }

  .action-buttons {
    flex-direction: column;
    gap: 12px;
  }

  .btn-secondary {
    width: 100%;
  }

  .modal-content {
    padding: 20px;
  }

  .modal-header {
    margin-bottom: 15px;
    padding-bottom: 15px;
  }

  .modal-title {
    font-size: 18px;
  }

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

  .btn-cancel,
  .btn-confirm {
    width: 100%;
  }
}

.arrow-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: white;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  animation: bounce 2s infinite;

}

.arrow-link:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.8);
  transform: translateY(-4px);
}

.arrow-icon {
  width: 24px;
  height: 24px;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(8px);
  }
}

html {
  scroll-behavior: smooth;
}

@media (max-width: 480px) {
  .scroll-arrow {
    bottom: 30px;
  }

  .arrow-link {
    width: 40px;
    height: 40px;
  }

  .arrow-icon {
    width: 20px;
    height: 20px;
  }
}
