/* Global styles */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #000000; /* Black background */
  color: #FFFFFF; /* White text */
  line-height: 1.6;
}

/* Header */
header {
  text-align: center;
  padding: 30px 15px;
  background-color: #FF0000; /* Red header */
  color: #FFFFFF;
}

header h1 {
  font-size: 2.5rem; /* Very big letters */
}

header p {
  font-size: 1.5rem;
}

/* Sections */
section {
  padding: 30px 15px;
  text-align: center;
}

section h2 {
  font-size: 2rem; /* Big section titles */
  margin-bottom: 20px;
}

section p, section li {
  font-size: 1.2rem; /* Larger body text */
}

section img {
  max-width: 100%; /* Full width on phone */
  height: auto;
  margin: 20px auto;
  display: block;
  border: 3px solid #FF0000;
  border-radius: 8px;
}

/* Section themes */
.section-dark {
  background-color: #000000;
  color: #FFFFFF;
}

.section-light {
  background-color: #FFFFFF;
  color: #000000;
}

.section-accent {
  background-color: #FF0000;
  color: #FFFFFF;
}

/* Buttons */
.social-buttons {
  display: flex;
  flex-direction: column; /* Stack buttons on phone */
  gap: 15px;
  margin: 20px 0;
}

.btn-x, .btn-telegram {
  padding: 15px 25px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2rem; /* Bigger button text */
  color: #FFFFFF;
}

.btn-x {
  background-color: #000000;
  border: 2px solid #FF0000;
}

.btn-telegram {
  background-color: #FF0000;
  border: 2px solid #FFFFFF;
}

/* Footer */
footer {
  text-align: center;
  padding: 20px;
  background-color: #000000;
  color: #FFFFFF;
  font-size: 1rem;
}

/* Responsive tweaks */
@media (min-width: 768px) {
  header h1 {
    font-size: 3rem;
  }
  section h2 {
    font-size: 2.5rem;
  }
  section p, section li {
    font-size: 1.5rem;
  }
  .social-buttons {
    flex-direction: row; /* Side by side on larger screens */
  }
}