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

body {
  font-family: 'Roboto', 'Arial', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  background: linear-gradient(135deg, #00250c 0%, #004d1a 50%, #006622 100%);
  color: #ffffff;
  min-height: 100vh;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(20, 20, 20, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  padding: 15px 0;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-logo img {
  height: 45px;
  width: auto;
  object-fit: contain;
}

.header-buttons {
  display: flex;
  gap: 15px;
  align-items: center;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(45deg, #035507, #047a0a);
  color: #ffffff;
  border-color: #035507;
}

.btn-primary:hover {
  background: linear-gradient(45deg, #047a0a, #059b0d);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(3, 85, 7, 0.4);
}

.btn-secondary {
  background: transparent;
  color: #ffffff;
  border-color: #035507;
}

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

@keyframes glow {
  0% { box-shadow: 0 0 5px #035507; }
  50% { box-shadow: 0 0 20px #035507, 0 0 30px #035507; }
  100% { box-shadow: 0 0 5px #035507; }
}

.glowing {
  animation: glow 2s infinite alternate;
}

/* Main Content */
main {
  padding-top: 100px;
  min-height: calc(100vh - 100px);
}

.main-container {
  padding: 40px 0;
}

/* Hero Section */
.hero-section {
  text-align: center;
  margin-bottom: 60px;
}

.hero-section h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 30px;
  background: linear-gradient(45deg, #ffffff, #00ff88);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 30px rgba(0, 255, 136, 0.3);
}

.hero-image {
  display: block;
  margin: 0 auto;
  max-width: 800px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.hero-image:hover {
  transform: scale(1.02);
}

.hero-photo {
  width: 100%;
  height: auto;
  display: block;
}

/* Content Sections */
.content-section {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.info-block {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 30px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-block:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.info-block h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #00ff88;
  text-align: center;
}

.info-block h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #ffffff;
}

.info-block p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 15px;
  color: #e0e0e0;
}

/* Advantages Grid */
.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.advantage-item {
  background: rgba(3, 85, 7, 0.1);
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  border: 1px solid rgba(3, 85, 7, 0.3);
  transition: all 0.3s ease;
}

.advantage-item:hover {
  background: rgba(3, 85, 7, 0.2);
  transform: translateY(-3px);
}

.advantage-item h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #00ff88;
}

/* Registration Steps */
.registration-steps {
  list-style: none;
  counter-reset: step-counter;
  margin: 20px 0;
}

.registration-steps li {
  counter-increment: step-counter;
  margin-bottom: 15px;
  padding: 15px 20px;
  background: rgba(3, 85, 7, 0.1);
  border-radius: 8px;
  border-left: 4px solid #035507;
  position: relative;
}

.registration-steps li::before {
  content: counter(step-counter);
  position: absolute;
  left: -15px;
  top: 50%;
  transform: translateY(-50%);
  background: #035507;
  color: white;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 14px;
}

/* Bonus Cards */
.bonus-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.bonus-card {
  background: linear-gradient(135deg, rgba(3, 85, 7, 0.2), rgba(0, 255, 136, 0.1));
  border-radius: 15px;
  padding: 25px;
  text-align: center;
  border: 2px solid rgba(3, 85, 7, 0.3);
  transition: all 0.3s ease;
}

.bonus-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(3, 85, 7, 0.3);
}

.bonus-card h3 {
  color: #00ff88;
  margin-bottom: 15px;
}

.bonus-amount {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
}

/* Providers List */
.providers-list {
  list-style: none;
  margin: 20px 0;
}

.providers-list li {
  padding: 12px 20px;
  margin-bottom: 10px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  border-left: 4px solid #035507;
  transition: all 0.3s ease;
}

.providers-list li:hover {
  background: rgba(3, 85, 7, 0.1);
  transform: translateX(5px);
}

/* Mobile Features */
.mobile-features {
  list-style: none;
  margin: 20px 0;
}

.mobile-features li {
  padding: 12px 20px;
  margin-bottom: 10px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  position: relative;
  padding-left: 40px;
}

.mobile-features li::before {
  content: "✓";
  position: absolute;
  left: 15px;
  color: #00ff88;
  font-weight: bold;
}

/* Support Methods */
.support-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.support-method {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.support-method:hover {
  background: rgba(3, 85, 7, 0.1);
  transform: translateY(-3px);
}

.support-method h3 {
  color: #00ff88;
  margin-bottom: 10px;
}

/* Reviews */
.reviews {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.review {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 25px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
}

.review::before {
  content: """;
  position: absolute;
  top: 10px;
  left: 15px;
  font-size: 3rem;
  color: #00ff88;
  opacity: 0.3;
}

.review p {
  margin-bottom: 15px;
  font-style: italic;
  padding-left: 20px;
}

.review-author {
  color: #00ff88;
  font-weight: 600;
  font-size: 0.9rem;
}

/* Popup */
.popup {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #141414, #1a1a1a);
  border-radius: 20px;
  padding: 25px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  gap: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease;
  z-index: 1001;
  max-width: 500px;
  width: 90%;
}

.popup.show {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(-10px);
}

.popup-content {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
}

.popup-image img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.popup-text {
  flex: 1;
  text-align: center;
}

.bonus-percent {
  font-size: 2rem;
  font-weight: 700;
  color: #00ff88;
  display: block;
  margin-bottom: 5px;
}

.popup-text p {
  color: #ffffff;
  font-size: 1rem;
  margin: 0;
}

.popup-button {
  flex-shrink: 0;
}

.popup-close {
  position: absolute;
  top: 10px;
  right: 15px;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  font-size: 24px;
  cursor: pointer;
  transition: color 0.3s ease;
}

.popup-close:hover {
  color: #ffffff;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .container {
    padding: 0 15px;
  }
  
  .header-container {
    flex-direction: column;
    gap: 15px;
  }
  
  .header-buttons {
    width: 100%;
    justify-content: center;
  }
  
  .btn {
    padding: 10px 20px;
    font-size: 14px;
    min-width: 120px;
  }
  
  .hero-section h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
  }
  
  .info-block {
    padding: 20px;
    margin: 0 10px;
  }
  
  .info-block h2 {
    font-size: 1.5rem;
  }
  
  .advantages-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .bonus-cards {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .support-methods {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .reviews {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .popup {
    bottom: 20px;
    padding: 20px;
    gap: 15px;
  }
  
  .popup-content {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  
  .popup-image img {
    width: 50px;
    height: 50px;
  }
  
  .bonus-percent {
    font-size: 1.5rem;
  }
  
  .popup-button {
    width: 100%;
  }
  
  .popup-button .btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .hero-section h1 {
    font-size: 2rem;
  }
  
  .info-block {
    padding: 15px;
  }
  
  .info-block h2 {
    font-size: 1.3rem;
  }
  
  .btn {
    padding: 8px 16px;
    font-size: 13px;
  }
  
  .popup {
    width: 95%;
    padding: 15px;
  }
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Focus styles for accessibility */
.btn:focus,
.popup-close:focus {
  outline: 2px solid #00ff88;
  outline-offset: 2px;
}

/* Loading animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.info-block {
  animation: fadeInUp 0.6s ease-out;
}

/* Hover effects for interactive elements */
.advantage-item:hover,
.bonus-card:hover,
.support-method:hover,
.review:hover {
  box-shadow: 0 5px 20px rgba(0, 255, 136, 0.2);
}

/* Comments Section */
.comments-section {
  margin-top: 20px;
}

.comments-header h3 {
  color: #00ff88;
  margin-bottom: 30px;
  font-size: 1.5rem;
}

.comments-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-bottom: 40px;
}

.comment {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.comment:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.comment-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  flex-wrap: wrap;
  gap: 10px;
}

.comment-author {
  font-weight: 600;
  color: #00ff88;
  font-size: 1.1rem;
}

.comment-date {
  color: #cccccc;
  font-size: 0.9rem;
  font-style: italic;
}

.comment-text p {
  color: #e0e0e0;
  line-height: 1.6;
  margin: 0;
}

.reply-btn {
  background: none;
  border: 1px solid #035507;
  color: #035507;
  padding: 8px 16px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.9rem;
  margin-top: 15px;
  transition: all 0.3s ease;
}

.reply-btn:hover {
  background: #035507;
  color: #ffffff;
}

/* Add Comment Section */
.add-comment-section {
  background: rgba(3, 85, 7, 0.1);
  border-radius: 15px;
  padding: 30px;
  border: 2px solid rgba(3, 85, 7, 0.3);
}

.add-comment-section h3 {
  color: #00ff88;
  margin-bottom: 25px;
  text-align: center;
  font-size: 1.5rem;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  color: #ffffff;
  font-weight: 600;
  font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
  padding: 12px 16px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #00ff88;
  box-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #cccccc;
}

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

.comment-form .btn {
  align-self: flex-start;
  margin-top: 10px;
}

/* Mobile responsive for comments */
@media (max-width: 768px) {
  .comment-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }
  
  .comment-author {
    font-size: 1rem;
  }
  
  .comment-date {
    font-size: 0.8rem;
  }
  
  .add-comment-section {
    padding: 20px;
  }
  
  .comment-form {
    gap: 15px;
  }
  
  .form-group input,
  .form-group textarea {
    padding: 10px 12px;
    font-size: 0.95rem;
  }
  
  .comment-form .btn {
    width: 100%;
    align-self: stretch;
  }
}

@media (max-width: 480px) {
  .comment {
    padding: 15px;
  }
  
  .add-comment-section {
    padding: 15px;
  }
  
  .add-comment-section h3 {
    font-size: 1.3rem;
  }
} 