body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: white;
    text-align: center;
    position: relative;
    min-height: 100vh;
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("images/iosmirror.webp");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    filter: blur(12px);
    transform: scale(1.1); /* blur edges hide karega */
    z-index: -2;
}

body::after {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65); /* dark overlay */
    z-index: -1;
}

.container {
    display: flex;
    flex-direction: column;
    height: 100vh;
    justify-content: space-between;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background: rgba(0, 0, 0, 0.8);
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: limegreen;
}

.get-app {
    text-decoration: none;
    color: limegreen;
    font-weight: bold;
}

.support-section {
    margin: auto;
    background: rgba(0, 0, 0, 0.9);
    padding: 20px;
    border-radius: 10px;
    max-width: 600px;
    width: 90%;
}

.support-section h1 {
    color: yellow;
    font-size: 32px;
    margin-bottom: 20px;
}

.ads-button {
    background: red;
    color: white;
    font-size: 18px;
    padding: 15px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-bottom: 20px;
    width: 100%;
}

.ads-button:hover {
    background: darkred;
}

.instructions {
    margin-top: 20px;
}

.instructions h2 {
    font-size: 20px;
    color: white;
    margin-bottom: 10px;
}

.instructions ol {
    text-align: left;
    color: white;
    padding-left: 20px;
}

.note {
    font-size: 14px;
    color: limegreen;
    margin-top: 20px;
}

.reload-button {
    margin-top: 20px;
    padding: 10px 20px;
    font-size: 16px;
    background: gray;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.reload-button:hover {
    background: darkgray;
}

.info h2 {
  color: #00ff00;
  margin: 10px 0;
}

.info span {
  color: #ffffff;
}

.info p {
  color: #ccc;
}

.cta-button {
  margin-top: 10px;
  padding: 10px 20px;
  color: #000;
  background-color: #00ff00;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  width: 100%;
}

  h1 {
    font-size: 32px;
  }
  h2 {
    font-size: 28px;
  }
  h3 {
    font-size: 24px;
  }
  p {
    font-size: 18px; 
  }


a {color: green; /* Change default link color */}

footer {
    background-color: #f8f8f8;
    padding: 20px 0;
    text-align: center;
    border-top: 1px solid #ddd;
    font-size: 14px;
    color: #000; /* Black text for paragraph */
}

.footer-container p {
    margin: 0;
    padding: 10px 0;
    font-size: 14px;
    color: #000; /* Black color for paragraph text */
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 10px 0 0;
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap; /* Ensures links wrap if space is constrained */
}

.footer-links li {
    display: inline;
}

.footer-links a {
    color: #28a745; /* Green color for links */
    text-decoration: none;
}

.footer-links a:hover {
    text-decoration: underline; /* Optional hover effect */
}

/* Mobile View */
@media screen and (max-width: 768px) {
    .footer-links {
        flex-direction: column; /* Stack the links vertically */
        align-items: center; /* Center align the links */
    }

    .footer-links li {
        margin-bottom: 10px; /* Add spacing between items */
    }
}
