/* Reset and base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  background-color: #121212; /* Dark background */
  color: #e0e0e0; /* Light text */
  min-height: 100vh;
}

/* Container */
.container {
  width: 90%;
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 30px;
  background-color: #1e1e1e; /* Slightly lighter dark */
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.7);
}

/* Header */
header {
  background-color: #0d47a1; /* Deep blue */
  padding: 30px 0;
  text-align: center;
  color: #fff;
  font-weight: 700;
  font-size: 28px;
  letter-spacing: 1px;
  box-shadow: 0 3px 8px rgba(13, 71, 161, 0.7);
  border-radius: 0 0 12px 12px;
  margin-bottom: 40px;
}

/* Intro Section */
.intro h2 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #90caf9; /* Light blue */
}

.intro p {
  margin-bottom: 20px;
  color: #cfd8dc; /* Light grey-blue */
}

.intro ul {
  margin-left: 20px;
  margin-bottom: 24px;
  color: #b0bec5; /* Soft grey */
}

.intro ul li {
  margin-bottom: 10px;
}

/* Bold paragraphs */
.intro p[style*="font-weight: bold"] {
  font-weight: 700;
  color: #ffffff;
}

/* Telegram Button */
.telegram-button {
  display: inline-block;
  background-color: #0088cc; /* Telegram blue */
  color: #fff;
  padding: 14px 28px;
  font-weight: 600;
  font-size: 18px;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.3s ease;
  margin-top: 32px;
  box-shadow: 0 4px 12px rgba(0, 136, 204, 0.6);
}

.telegram-button:hover,
.telegram-button:focus {
  background-color: #006699;
  outline: none;
  box-shadow: 0 6px 18px rgba(0, 102, 153, 0.8);
}

/* Disclaimer Section */
.disclaimer {
  background-color: #263238; /* Dark slate */
  border-top: 3px solid #0088cc;
  padding: 28px 20px;
  color: #b0bec5;
  font-size: 14px;
  text-align: center;
  margin-top: 48px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

/* Footer */
footer {
  background-color: #0d47a1;
  color: #cfd8dc;
  text-align: center;
  padding: 20px 0;
  font-size: 14px;
  margin-top: 48px;
  border-radius: 12px 12px 0 0;
  box-shadow: 0 -3px 8px rgba(13, 71, 161, 0.7);
}

/* Responsive adjustments */
@media (max-width: 480px) {
  .container {
    width: 95%;
    padding: 30px 20px;
  }
  
  header {
    font-size: 22px;
    padding: 20px 0;
  }
  
  .intro h2 {
    font-size: 22px;
  }
  
  .telegram-button {
    width: 100%;
    text-align: center;
  }
}
.info-box {
  background-color: #263238; /* Dark slate background */
  border: 2px solid #0088cc; /* Blue border */
  padding: 24px 40px;
  color: #b0bec5;
  font-size: 14px;
  text-align: center;
  margin-top: 48px;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
}
