/* General Styles */
body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: Arial, sans-serif;
}

/* Background Image */
body {
  background-image: url('33e0f5c55c98457c0e12676f547d0d60.gif'); /* Ensure the correct path */
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  color: white;
}

/* Center content and titles */
.content {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 20px auto;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.7);
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

/* Main Title with Gradient and Glow Effect */
.main-title {
  font-size: 4rem; /* Large and impactful size */
  font-weight: bold;
  margin-bottom: 20px;
  text-align: center;
  text-transform: uppercase;
  background: linear-gradient(90deg, #a8ff78, #78ffd6); /* Gradient colors */
  -webkit-background-clip: text; /* Clip the gradient to the text */
  -webkit-text-fill-color: transparent; /* Make the gradient visible */
  text-shadow: 0 0 5px rgba(255, 255, 255, 0.5), /* Outer glow */
               0 0 10px rgba(255, 255, 255, 0.4); /* Fainter larger glow */
}

/* Sub-title with Subtle Glow */
.sub-title {
  font-size: 2rem; /* Proportional to the main title */
  text-align: center;
  color: #ffffff; /* Solid white color */
  text-shadow: 0 0 3px rgba(0, 255, 0, 0.5), /* Greenish glow */
               0 0 6px rgba(0, 255, 0, 0.4); /* Larger outer glow */
  margin-bottom: 30px;
}

/* Paragraph text */
.content p {
  font-size: 1.5rem; /* Increase font size for readability */
  line-height: 1.8;  /* Add spacing for better legibility */
  text-align: center;
  margin: 10px 0;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5); /* Subtle shadow */
}

/* Style the image */
#dunka {
  max-width: 100%; /* Ensure the image doesn't overflow */
  height: auto;    /* Maintain aspect ratio */
  display: block;  /* Center the image */
  margin: 20px auto;
}

/* Style logos and position them in the top-right corner */
.button-container {
  position: absolute;
  top: 10px;
  right: 10px;
  display: flex;
  gap: 15px; /* Space between logos */
}

.button-container img {
  width: 40px; /* Uniform size for all logos */
  height: 40px;
  border-radius: 5px; /* Optional: Add rounded corners */
  transition: transform 0.3s;
}

.button-container img:hover {
  transform: scale(1.1);
}

/* Buttons - In a Single Row with Rounded Corners */
.button-row {
  display: flex;
  justify-content: center; /* Center the buttons horizontally */
  gap: 20px; /* Space between buttons */
  width: 100%; /* Match the width of the content */
  margin: 20px 0;
  flex-wrap: nowrap; /* Prevent wrapping on smaller screens */
}

.button-81 {
  background-color: #fff;
  border: 2px solid #e2e8f0;
  border-radius: 2rem; /* Fully rounded corners */
  box-sizing: border-box;
  color: #0d172a;
  cursor: pointer;
  font-family: "Basier circle", -apple-system, system-ui, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-size: 1.8rem; /* Larger font size for better visibility */
  font-weight: 600;
  line-height: 1.2;
  padding: 1.5rem 3rem; /* Larger padding */
  text-align: center;
  text-decoration: none;
  flex: 1; /* Ensure equal width for all buttons */
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}

.button-81:hover {
  background-color: #1e293b; /* Darker background on hover */
  color: #fff;
  transform: scale(1.05); /* Slightly enlarge on hover */
}

/* Add pulsing animation for the main title */
@keyframes pulse {
  0% {
    text-shadow: 3px 3px 5px rgba(0, 0, 0, 0.7);
  }
  50% {
    text-shadow: 5px 5px 10px rgba(255, 255, 0, 0.7);
  }
  100% {
    text-shadow: 3px 3px 5px rgba(0, 0, 0, 0.7);
  }
}

/* Responsive Breakpoints */
@media (max-width: 768px) {
  .main-title {
    font-size: 3rem; /* Adjust title size */
  }

  .sub-title {
    font-size: 1.5rem; /* Adjust subtitle size */
  }

  .content p {
    font-size: 1.2rem; /* Adjust text size */
  }

  .button-container img {
    width: 35px;
    height: 35px;
  }

  .content {
    padding: 15px;
  }

  .button-81 {
    font-size: 1.5rem; /* Adjust button size */
    padding: 1.2rem 2.5rem;
  }
}

@media (max-width: 480px) {
  .content p {
    font-size: 1rem; /* Further reduce text size for small screens */
  }

  .button-container img {
    width: 30px;
    height: 30px;
  }

  #dunka {
    max-width: 100%; /* Ensure image scales correctly on mobile */
  }

  .button-row {
    flex-wrap: nowrap; /* Ensure buttons stay in one row */
    gap: 10px; /* Smaller spacing for mobile screens */
  }

  .button-81 {
    font-size: 1.2rem; /* Smaller buttons for mobile */
    padding: 1rem 2rem;
  }
}
