/* General Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #0e0e0e;
  color: #f5f5f5;
  line-height: 1.6;
  text-align: center;
  padding: 2rem 1rem;
} */

*:not(.sharp-edges) {
  border-radius: 20px; /* Adjust as needed */
}


body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #0e0e0e;
  color: #f5f5f5;
  margin: 0;
  height: 100vh;
  line-height: 1.6;
  text-align: center;
  padding: 2rem 1rem;
  background: linear-gradient(135deg, #0b1620, #1e2e3c, #32004d);
  /* Optional: smoother gradient */
  background-repeat: no-repeat;
  background-attachment: fixed;
}


/* Background image with transparency */
nobody::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('icon.png') no-repeat center center;
  background-size: cover;
  opacity: 0.3; /* 70% transparency */
  z-index: -1;
}

/* Glow effect on hover */
*:hover {
  box-shadow: 0 0 8px rgba(130, 255, 255, 0.25); /* light blue glow */
  transition: box-shadow 0.3s ease;
}

/* Header Section */
header {
  margin-bottom: 2rem;
}

h1 {
  font-size: 3rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

header p {
  font-size: 1.25rem;
  color: #ccc;
  max-width: 700px;
  margin: 0 auto;
}

/* Project Links Section */
.projects {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  margin: 2rem auto 3rem;
  max-width: 500px;
}

.project-btn {
  display: flex;
  align-items: center;
  width: 100%;
  background: linear-gradient(135deg, #1e1e1e, #2a2a2a);
  border: 1px solid #333;
  border-radius: 10px;
  padding: 0.75rem 1rem;
  color: #ffffff;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 500;
  transition: transform 0.2s ease, background 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.25);
}

.project-btn:hover {
  background: linear-gradient(135deg, #292929, #3a3a3a);
  transform: scale(1.02);
}

    .update-warning {

      background: #333;

      color: #f0f0f0;
      padding: 10px 15px;
      border-left: 4px solid #82cfff;
      margin-bottom: 20px;
    }
    
    .announcements {

      background: #333;

      color: #f0f0f0;
      padding: 10px 15px;
      border-left: 4px solid #FFFF00;
      margin-bottom: 20px;
    }

.project-btn img {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  margin-right: 1rem;
  object-fit: cover;
  border: 1px solid #444;
}

.logo {
  width: 150px;
  height: 150px;
  margin-bottom: 1rem;
  border-radius: 12px;
}

    .ads {

      display: flex;

      flex-wrap: wrap;
      gap: 10px;
      margin-bottom: 2rem;
    }

    .ads a img {
      height: 55px;
      border-radius: 8px;
      transition: transform 0.2s ease;
    }

    .ads a:hover img {
      transform: scale(1.05);
    }


    .adsbig {

      display: flex;

      flex-wrap: wrap;
      gap: 10px;
      margin-bottom: 2rem;
    }

    .adsbig a img {
      height: 105px;
      border-radius: 8px;
      transition: transform 0.2s ease;
    }

    .adsbig a:hover img {
      transform: scale(1.05);
    }
    

.legal-issues {
  margin-top: 2rem;
  font-size: 1rem;
  color: #ccc;
}

.legal-issues a {
  color: #82cfff;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.legal-issues a:hover {
  color: #ffffff;
  text-shadow: 0 0 5px #82cfff;
}

/* Footer Section */
footer {
  margin-top: 4rem;
  font-size: 0.9rem;
  color: #777;
}