@import url("https://rsms.me/inter/inter.css");
@import url("https://fonts.googleapis.com/css2?family=Pacifico&display=swap");
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  list-style: none;
  text-decoration: none;
}

:root {
  --bg-color: #222327;
  --page-bg:
    radial-gradient(
      circle at 12% -8%,
      rgba(41, 253, 83, 0.14),
      transparent 34%
    ),
    radial-gradient(
      circle at 88% 3%,
      rgba(108, 155, 207, 0.17),
      transparent 38%
    ),
    linear-gradient(180deg, #15171d 0%, #1c2028 52%, #161a22 100%);
  --text-color: #fff;
  --main-color: #29fd53;
  --color-primary: #6c9bcf;
  --color-danger: #ff0060;
  --color-success: #1b9c85;
  --color-warning: #f7d060;
  --color-white: #fff;
  --color-info-dark: #7d8da1;
  --color-dark: #363949;
  --color-light: rgba(132, 139, 200, 0.18);
  --color-dark-variant: #677483;
  --color-background: #222327;
  --color-div: linear-gradient(145deg, #1e222b, #262b36);
  --color-gray: #bcbcbc;
  --card-border-radius: 2rem;
  --border-radius-1: 0.4rem;
  --border-radius-2: 1.2rem;
  --card-padding: 1.8rem;
  --padding-1: 1.2rem;
  --box-shadow: 0 2rem 3rem var(--color-light);
}

.dark-mode-variables {
  --color-background: #181a1e;
  --color-white: #202528;
  --color-dark: #edeffd;
  --color-dark-variant: #a3bdcc;
  --color-light: rgba(0, 0, 0, 0.4);
  --box-shadow: 0 2rem 3rem var(--color-light);
  --bg-color: #f6f6f9;
  --page-bg:
    radial-gradient(circle at 12% -8%, rgba(44, 187, 99, 0.1), transparent 34%),
    radial-gradient(
      circle at 88% 3%,
      rgba(108, 155, 207, 0.12),
      transparent 38%
    ),
    linear-gradient(180deg, #eef2f8 0%, #e6edf6 52%, #dde6f2 100%);
  --color-div: #fff;
}

.logo .star {
  color: var(--color-white);
  /* Set color for "Star" */
}

.logo .gpa {
  color: var(--main-color);
  /* Set color for "GPA" */
}

h1 {
  color: var(--color-white);
}

p {
  color: var(--color-white);
}

h2 {
  font-weight: 600;
  font-size: 1.4rem;
  color: var(--color-white);
}

h3 {
  font-weight: 500;
  font-size: 1rem;
  color: var(--color-white);
}

.text-muted {
  color: var(--color-info-dark);
}

c {
  color: var(--color-white);
}

body {
  min-height: 100vh;
  background: var(--page-bg);
  color: var(--text-color);
  font-family: "outfit", sans-serif;
}

header {
  position: fixed;
  width: 100%;
  top: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-around;
  background: transparent;
  padding: 14px;
  transform: all 0.5s ease;
}

.logo {
  display: flex;
  align-items: center;
}

.logo-img {
  width: 40px;
}

.logo i {
  color: var(--main-color);
  font-size: 28px;
  margin-right: 3px;
}

.logo span {
  color: var(--text-color);
  font-size: 1.7rem;
  font-weight: 600;
}

.navbar_1 {
  display: flex;
  margin-left: 20px;
}

.navbar_1 a {
  color: var(--color-white);
  font-size: 1.1rem;
  font-weight: 500;
  padding: 5px 0;
  margin: 0px 50px;
  transition: all 0.5s ease;
}

.navbar_1 a:hover {
  color: var(--main-color);
}

.navbar_1 a.active {
  color: var(--main-color);
}

@media (max-width: 1286px) {
  header {
    padding: 2px 2%;
    transition: 0.2s;
  }
  .navbar_1 a {
    padding: 5px 0;
    margin: 0px 20px;
  }
}

@media (max-width: 1324px) {
  header {
    padding: 2px 2%;
    transition: 0.2s;
  }
  .navbar_1 a {
    padding: 5px 0;
    margin: 0px 20px;
  }
}

@media (max-width: 1090px) {
  #menu-icon {
    display: block;
  }
}

.main {
  display: flex;
  align-items: center;
}

.main a {
  margin-right: 25px;
  margin-left: 10px;
  color: var(--text-color);
  font-size: 1.1rem;
  font-weight: 500;
  transition: all 0.5s ease;
}

#menu-icon {
  font-size: 35px;
  color: var(--text-color);
  z-index: 10001;
  display: none;
}

@media (max-width: 1280px) {
  header {
    padding: 13px 2%;
    transition: 0.2s;
  }
  .navbar_1 a {
    padding: 5px 0;
    margin: 0px 20px;
  }
}

@media (max-width: 1090px) {
  #menu-icon {
    display: block;
  }
  .navbar_1 {
    position: absolute;
    top: 100%;
    right: -100%;
    width: 270px;
    height: 47vh;
    background: var(--main-color);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    border-radius: 10px;
    transition: all 0.5s ease;
  }
  .navbar_1 a {
    display: block;
    margin: 10px 25px;
    transition: all 0.5s ease;
  }
  .navbar_1 a:hover {
    color: var(--text-color);
  }
  .navbar_1 a.active {
    color: var(--text-color);
  }
  .navbar_1.open {
    right: 2%;
  }
}

.Header1 {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  margin-top: 150px;
  margin-left: 10%;
}

@media (max-width: 600px) {
  /* Adjust the max-width as needed */
  .Header1 {
    margin-top: 100px;
    /* Reduce top margin for smaller screens */
    padding-left: 2rem;
    /* Reduce padding for smaller screens */
    margin-left: 1%;
    /* Optional: add right padding */
  }
}

.main1 {
  display: grid;
  width: 96%;
  margin: 0 auto;
  gap: 1.8rem;
  grid-template-columns: 1fr 0.4fr;
  /* Default two-column layout */
  min-height: 100vh;
}

@media (max-width: 600px) {
  /* Adjust the max-width as needed */
  .main1 {
    grid-template-columns: 1fr;
    /* Change to a single column layout */
    gap: 1rem;
    /* Adjust gap for smaller screens */
  }
}

.container_plus {
  background: linear-gradient(145deg, #1e222b, #262b36);
  padding: 50px;
  border-radius: 20px;
  margin-bottom: 20px;
  margin-top: 30px;
  margin: 25px auto;
  align-self: flex-start;
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);

  border: 1px solid rgba(255, 255, 255, 0.08);
}

@media (max-width: 600px) {
  /* Current styles for up to 600px width */
  .container_plus {
    padding: 20px;
    margin: 15px auto;
    border-radius: 15px;
  }
}

@media (max-width: 480px) {
  /* Adjustments for phone screens (up to 480px) */
  .container_plus {
    padding: 15px;
    /* Reduce padding further */
    margin: 10px auto;
    /* Smaller margins */
    border-radius: 10px;
    /* Smaller border radius for smaller screens */
  }
}

h6 {
  font-family: "outfit", sans-serif;
  /* Or your preferred font */
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--color-white);
  text-align: center;
  line-height: 1.2;
  margin-left: 15px;
}

#inputForm {
  margin-top: 20px;
  /* Additional space above the form */
}

/*weather*/

.time-weather {
  display: flex;
  align-items: center;
  background: linear-gradient(to right, var(--color-success), var(--bg-color));
  padding: 15px 20px;
  border-radius: 10px;
  margin-top: 25px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  height: 120px;
}

@media (max-width: 600px) {
  /* Styles for devices with max-width 600px */
  .time-weather {
    padding: 10px;
    /* Reduce padding */
    height: auto;
    /* Allow height to adjust based on content */
    margin-top: 15px;
    /* Reduce top margin */
  }
}

@media (max-width: 480px) {
  /* Additional adjustments for phone screens (max-width 480px) */
  .time-weather {
    padding: 8px;
    /* Further reduce padding */
    margin-top: 10px;
    /* Smaller top margin for compact layout */
    font-size: 14px;
    /* Optional: adjust font size for better readability */
  }
}

.time-weather .time {
  flex: 1;
}

.time-weather .time h2 {
  margin: 0;
  font-size: 24px;
  color: var(--color-white);
}

.time-weather .time p {
  margin: 5px 0 0;
  font-size: 14px;
  color: var(--color-white);
}

.time-weather .weather {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100px;
  height: 100px;
  background-color: var(--bg-color);
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.time-weather .weather img {
  width: 50px;
  height: 50px;
}

.time-weather .weather p {
  margin: 5px 0 0;
  font-size: 14px;
  color: var(--color-white);
}

.section {
  padding: 0 20px; /* эсвэл 0 5% */
}

.title {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
  font-size: 1.5vmin;
  color: rgb(255, 255, 255);
  justify-content: space-evenly;
}

/* Events*/

/* right section */

.right-section {
  margin-top: 0.4rem;
}

.nav {
  display: flex;
  justify-content: end;
  gap: 2rem;
}

.nav button {
  display: none;
}

.dark-mode {
  background-color: var(--color-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 1.6rem;
  width: 4.2rem;
  cursor: pointer;
  border-radius: var(--border-radius-1);
}

.dark-mode span {
  font-size: 1.2rem;
  width: 50%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dark-mode span.active {
  background-color: var(--main-color);
  color: var(--color-white);
  border-radius: var(--border-radius-1);
}

.right-section .reminders .header span {
  padding: 10px;
  box-shadow: var(--box-shadow);
  background-color: var(--color-white);
  border-radius: 50%;
}

.notification {
  position: sticky;
  background: linear-gradient(145deg, #1e222b, #262b36);
  display: flex;
  z-index: 10;
  margin-top: 10px;
  top: 80px;
  margin-bottom: 0.7rem;
  padding: 2rem var(--card-padding);
  border-radius: var(--border-radius-2);
  box-shadow: var(--box-shadow);
  cursor: pointer;
  transition: all 0.3s ease;
}

#resultContainer {
  font-weight: 600;
  font-size: 1.4rem;
  color: var(--color-white);
}

#allresultGPA {
  font-weight: 600;
  font-size: 1.4rem;
  color: var(--color-white);
}

.right-section .notification:hover {
  box-shadow: none;
}

.right-section .notification .content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0;
  width: 100%;
}

.right-section .notification.deactive {
  background-color: var(--bg-color);
  height: 500px;
  z-index: 5;
}

.right-section .add-reminder {
  background-color: var(--color-white);
  border: 2px dashed var(--color-primary);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.right-section .add-reminder:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
}

.right-section .add-reminder div {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.remove-button {
  display: inline-flex;
  flex: 0 0 1.5rem;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  margin: 5px;
  padding: 0;
  outline: none;
  border: 1px solid #000000;
  border-radius: 50%;
  color: #e0e2e6;
  font-size: 1.3125rem;
  line-height: 1;
  font-weight: 400;
  cursor: pointer;
  background-color: transparent;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAiIGhlaWdodD0iMTAiIHZpZXdCb3g9IjAgMCAxMCAxMCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4gIDxwYXRoIGQ9Ik0xIDFsNCA0IDQtNE0xIDlsNC00IDQgNCIgZmlsbD0ibm9uZSIgc3Ryb2tlPSIjODQ4RDlDIi8+PC9zdmc+);
  background-repeat: no-repeat;
  background-position: center center;
  transition: all 300ms cubic-bezier(0.16, 0.68, 0.43, 0.99);
}

.remove-button:hover {
  background-color: var(--color-success);
}

/* CSS */

.buttons {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 1rem;
  margin-right: 30px;
}

.button-3 {
  appearance: none;
  background-color: #2ea44f;
  border: 1px solid rgba(27, 31, 35, 0.15);
  border-radius: 6px;
  box-shadow: rgba(27, 31, 35, 0.1) 0 1px 0;
  box-sizing: border-box;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-family: "outfit";
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  padding: 6px 16px;
  position: relative;
  text-align: center;
  text-decoration: none;
  touch-action: manipulation;
  vertical-align: middle;
  white-space: nowrap;
}

.button-3:focus:not(:focus-visible):not(.focus-visible) {
  box-shadow: none;
  outline: none;
}

.button-3:hover {
  background-color: #2c974b;
}

.button-3:focus {
  box-shadow: rgba(46, 164, 79, 0.4) 0 0 0 3px;
  outline: none;
}

.button-3:disabled {
  background-color: #94d3a2;
  border-color: rgba(27, 31, 35, 0.1);
  color: rgba(255, 255, 255, 0.8);
  cursor: default;
}

.button-3:active {
  background-color: #298e46;
  box-shadow: rgba(20, 70, 32, 0.2) 0 1px 0 inset;
}

.form-group {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  gap: 1.3rem;
}

.grade-convert {
  min-width: 48px;
  color: var(--color-white);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  opacity: 0.9;
  text-align: right;
}

input {
  background-color: var(--color-gray);
  /* Light grey background color */
}

input::placeholder {
  color: #434343;
  font-family: "outfit", sans-serif;
  /* Light grey placeholder text color */
}

.form-group input {
  flex: 2;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 50px;
  font-size: 14px;
  margin-left: 10px;
}

@media (max-width: 600px) {
  /* Styles for devices with max-width 600px */
  .form-group input {
    padding: 6px;
    /* Reduce padding */
    font-size: 12px;
    /* Decrease font size */
    margin-left: 5px;
    /* Reduce left margin */
    width: 100%;
    /* Full width for better usability */
  }

  .grade-convert {
    min-width: 40px;
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  /* Additional adjustments for smaller phone screens */
  .form-group input {
    padding: 4px;
    /* Further reduce padding */
    font-size: 12px;
    /* Smaller font for compact screens */
    margin-left: 0;
    /* Remove left margin for alignment */
    width: 100%;
    /* Ensure it remains full width */
  }
}

/*second section */

.events .row {
  display: flex;
  align-items: center;
  justify-content: center;
}

.row {
  display: flex;
  align-items: center;
  padding-left: 15%;
}

@media (max-width: 600px) {
  /* Styles for devices with max-width 600px */
  .row {
    padding-left: 20px;
    /* Reduce left padding */
    padding-right: 20px;
    /* Add or adjust right padding */
    flex-direction: column;
    /* Stack items vertically */
    align-items: flex-start;
    /* Align items to the start */
  }
}

@media (max-width: 480px) {
  /* Additional adjustments for phone screens */
  .row {
    padding-left: 10px;
    /* Further reduce left padding */
    padding-right: 10px;
    /* Further reduce right padding */
    gap: 10px;
    /* Add spacing between items for better readability */
    align-items: stretch;
    /* Make items stretch to fit the container */
  }
}

.col {
  display: flex;
  align-items: center;
}

.col img {
  max-width: 40%;
  /* Adjust as needed */
  height: auto;
  margin-right: 20px;
  /* Space between image and text */
}

.image-gallery img {
  max-width: 77%;
  /* Ensure the image doesn’t exceed the container’s width */
  height: auto;
  /* Maintain the aspect ratio */
  padding-top: 50px;
  /* Adjust padding as needed */
  display: block;
  /* Remove any extra space below the image */
  margin: 0 auto;
  /* Center the image within its container */
}

.events .row .col h4 {
  font-size: 2rem;
  color: var(--color-white);
  margin-bottom: 15px;
}

.events .row .col p {
  font-size: 1rem;
  color: var(--color-white);
  margin-bottom: 20px;
}

@media (max-width: 600px) {
  /* Adjust the max-width as needed */
  .col {
    flex-direction: column;
    /* Stack items vertically on mobile */
    align-items: flex-start;
    /* Align items to the start */
  }
  .col img {
    max-width: 80%;
    /* Make image larger on mobile */
    margin-right: 0;
    /* Remove right margin */
    margin-bottom: 10px;
    /* Add bottom margin for spacing */
  }
  .text-content {
    max-width: 100%;
    /* Allow full width on mobile */
  }
  .events .row .col h4 {
    font-size: 1.5rem;
    /* Decrease font size for heading */
    margin-bottom: 10px;
    /* Reduce margin */
  }
  .events .row .col p {
    font-size: 0.875rem;
    /* Decrease font size for paragraph */
    margin-bottom: 15px;
    /* Reduce margin */
  }
  .events .row .col button {
    font-size: 14px;
    /* Decrease button font size */
    padding: 5px 15px;
    /* Adjust padding for smaller screens */
  }
}

/* CSS */

.events .row .col button {
  background-color: var(--color-success);
  border-radius: 100px;
  box-shadow:
    rgba(44, 187, 99, 0.2) 0 -25px 18px -14px inset,
    rgba(44, 187, 99, 0.15) 0 1px 2px,
    rgba(44, 187, 99, 0.15) 0 2px 4px,
    rgba(44, 187, 99, 0.15) 0 4px 8px,
    rgba(44, 187, 99, 0.15) 0 8px 16px,
    rgba(44, 187, 99, 0.15) 0 16px 32px;
  color: var(--color-white);
  cursor: pointer;
  display: inline-block;
  font-family: outfit;
  padding: 7px 20px;
  text-align: center;
  text-decoration: none;
  transition: all 250ms;
  border: 0;
  font-size: 16px;
  touch-action: manipulation;
  margin-top: 10px;
}

.events .row .col button:hover {
  box-shadow:
    rgba(44, 187, 99, 0.35) 0 -25px 18px -14px inset,
    rgba(44, 187, 99, 0.25) 0 1px 2px,
    rgba(44, 187, 99, 0.25) 0 2px 4px,
    rgba(44, 187, 99, 0.25) 0 4px 8px,
    rgba(44, 187, 99, 0.25) 0 8px 16px,
    rgba(44, 187, 99, 0.25) 0 16px 32px;
  transform: scale(1.05) rotate(-1deg);
}

h5 {
  color: var(--color-white);
  font-size: 0.7rem;
}

hr.new4 {
  border: 1px solid var(--color-white);
  margin-top: 200px;
  width: 70%;
  /* Adjust this value to control how much the <hr> is shrunk */
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 600px) {
  /* Styles for hr.new4 on smaller screens */
  hr.new4 {
    margin-top: 100px;
    /* Adjust top margin */
    width: 90%;
    /* Expand width to occupy more space */
    border-width: 2px;
    /* Set a thicker border for better visibility */
    border-color: #ccc;
    /* Optional: define a softer border color */
    margin-left: auto;
    /* Center align horizontally */
    margin-right: auto;
    /* Center align horizontally */
  }
}

hr.new5 {
  border: 1px solid var(--color-white);
  width: 70%;
  /* Adjust this value to control how much the <hr> is shrunk */
  margin-left: auto;
  margin-right: auto;
}

.events {
  width: 100%;
  padding: 20px;
}

.events2 {
  width: 100%;
  padding: 20px;
}

.row2 {
  display: flex;
  align-items: center;
  padding-left: 90px;
}

@media (max-width: 600px) {
  /* Adjust the max-width as needed */
  .row2 {
    padding-left: 20px;
    /* Reduce padding for smaller screens */
    padding-right: 20px;
    /* Optional: add right padding */
    flex-direction: column;
    /* Stack items vertically if needed */
    align-items: flex-start;
    /* Align items to the start */
  }
}

@media (max-width: 480px) {
  /* Adjust the max-width as needed */
  .row2 {
    padding-left: 20px;
    /* Reduce padding for smaller screens */
    padding-right: 20px;
    /* Optional: add right padding */
    flex-direction: column;
    /* Stack items vertically if needed */
    align-items: flex-start;
    /* Align items to the start */
  }
}

.col2 {
  display: flex;
  align-items: center;
}

.col2 img {
  max-width: 40%;
  /* Adjust as needed */
  height: auto;
  margin-right: 20px;
  /* Space between image and text */
}

.text-content {
  max-width: 50%;
  /* Adjust as needed */
}

.events2 .row2 .col2 h4 {
  font-size: 2rem;
  color: var(--color-white);
  margin-bottom: 15px;
}

.events2 .row2 .col2 p {
  font-size: 1rem;
  color: var(--color-white);
  margin-bottom: 20px;
}

.events2 .row2 .col2 button {
  background-color: var(--color-success);
  border-radius: 100px;
  box-shadow:
    rgba(44, 187, 99, 0.2) 0 -25px 18px -14px inset,
    rgba(44, 187, 99, 0.15) 0 1px 2px,
    rgba(44, 187, 99, 0.15) 0 2px 4px,
    rgba(44, 187, 99, 0.15) 0 4px 8px,
    rgba(44, 187, 99, 0.15) 0 8px 16px,
    rgba(44, 187, 99, 0.15) 0 16px 32px;
  color: var(--color-white);
  cursor: pointer;
  display: inline-block;
  font-family: outfit;
  padding: 7px 20px;
  text-align: center;
  text-decoration: none;
  transition: all 250ms;
  border: 0;
  font-size: 16px;
  margin-top: 10px;
}

@media (max-width: 600px) {
  /* Adjust the max-width as needed */
  .col2 {
    flex-direction: column;
    /* Stack items vertically on mobile */
    align-items: flex-start;
    /* Align items to the start */
  }
  .col2 img {
    max-width: 80%;
    /* Make image larger on mobile */
    margin-right: 0;
    /* Remove right margin */
    margin-bottom: 10px;
    /* Add bottom margin for spacing */
  }
  .text-content {
    max-width: 100%;
    /* Allow full width on mobile */
  }
  .events2 .row2 .col2 h4 {
    font-size: 1.5rem;
    /* Decrease font size for heading */
    margin-bottom: 10px;
    /* Reduce margin */
  }
  .events2 .row2 .col2 p {
    font-size: 0.875rem;
    /* Decrease font size for paragraph */
    margin-bottom: 15px;
    /* Reduce margin */
  }
  .events2 .row2 .col2 button {
    font-size: 14px;
    /* Decrease button font size */
    padding: 5px 15px;
    /* Adjust padding for smaller screens */
  }
}

.low1 {
  display: flex;
  flex-direction: row;
  justify-content: center;
  /* Center items with reduced space between them */
  gap: 200px;
  /* Space between items */
}

.low2,
.low3 {
  display: flex;
  flex-direction: column;
  /* Center content vertically */
  align-items: left;
  /* Center content horizontally */
  background: var(--color-div);
  padding: 20px;
  /* Adjust padding to fit content */
  border-radius: 10px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
  /* Slightly stronger shadow */
  height: 140px;
  /* Set a fixed height to keep them consistent */
  max-width: 350px;
  /* Limit width to avoid stretching */
  text-align: left;
  /* Center text inside the container */
  cursor: pointer;
  font-family: "outfit", sans-serif;
  box-shadow: var(--box-shadow);
  transition: all 0.3s ease;
}

.low2:hover,
.low3:hover {
  box-shadow: none;
}

.low2 h7,
.low3 h7 {
  font-weight: bold;
  font-size: 15px;
  color: var(--color-white);
  margin-top: 15px;
}

.low2 p,
.low3 p {
  font-size: 14px;
  color: var(--color-white);
  margin-top: 10px;
}

@media (max-width: 600px) {
  /* Adjust the max-width as needed */
  .low1 {
    flex-direction: column;
    /* Stack items vertically on mobile */
    gap: 20px;
    margin-top: 40px;
    /* Reduce space between items */
  }
  .low2,
  .low3 {
    padding: 15px;
    /* Adjust padding for smaller screens */
    height: auto;
    /* Allow height to adjust based on content */
    max-width: 100%;
    /* Make width responsive */
  }
  .low2 h7,
  .low3 h7 {
    font-size: 14px;
    /* Adjust font size for headings */
    margin-top: 10px;
    /* Reduce margin */
  }
  .low2 p,
  .low3 p {
    font-size: 12px;
    /* Adjust font size for paragraphs */
    margin-top: 8px;
    /* Reduce margin */
  }
}

/*selection */

.header_plus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 25px;
}

.header_plus h6 {
  font-size: 1.6rem;
  font-weight: 700;
}

.school {
  margin-left: auto;
  margin-right: 10px;
}

.school_scale {
  display: flex;
  margin-left: 5%;
  /* Default for larger screens */
  margin-top: 25px;
  color: var(--color-white);
  align-items: baseline;
}

@media (max-width: 768px) {
  .school {
    margin-left: 50%;
    /* Reduce margin for smaller screens */
  }
}

@media (max-width: 600px) {
  .school {
    margin-left: 35%;
    /* Reduce margin for smaller screens */
  }
}

.gpa-select {
  margin-left: 10px;
  position: relative;
  display: flex;
  justify-content: right;
  width: 8em;
  /* Adjusted width */
  height: 2.5em;
  /* Adjusted height */
  border-radius: 0.25em;
  overflow: hidden;
  appearance: none;
  outline: 10px red;
  border: 0;
  box-shadow: none;
  /* Personalize */
  flex: 1;
  padding: 0 1em;
  color: var(--color-white);
  background-color: var(--color-dark);
  background-image: none;
  cursor: pointer;
  font-family: "outfit", sans-serif;
}

select {
  /* Reset Select */
  appearance: none;
  outline: 10px red;
  border: 0;
  box-shadow: none;
  /* Personalize */
  flex: 1;
  padding: 0 1em;
  color: var(--color-white);
  background-color: var(--bg-color);
  background-image: none;
  cursor: pointer;
  font-family: "outfit", sans-serif;
}

/* Remove IE arrow */

select::-ms-expand {
  display: none;
}

/* Custom Select wrapper */

.select {
  position: relative;
  display: flex;
  justify-content: right;
  width: 8em;
  /* Adjusted width */
  height: 2.5em;
  /* Adjusted height */
  border-radius: 0.25em;
  overflow: hidden;
}

/* Arrow */

/* Transition */

.select:hover::after {
  color: #f39c12;
}

/*footer*/

.footer {
  display: flex;
  flex-flow: row wrap;
  padding: 30px 30px 20px 30px;
  color: var(--color-white);
  background-color: var(--bg-color);
  font-family: outfit;
}

.footer > * {
  flex: 1 100%;
}

.footer__addr {
  margin-right: 1.25em;
  margin-bottom: 2em;
}

.footer__logo {
  font-family: "Pacifico", cursive;
  font-weight: 400;
  text-transform: lowercase;
  font-size: 1.5rem;
  color: var(--color-success);
}

.footer__addr h2 {
  margin-top: 1.3em;
  font-size: 15px;
  font-weight: 400;
  color: var(--color-white);
}

.nav__title {
  font-weight: 400;
  font-size: 15px;
  color: var(--color-white);
  font-weight: bold;
}

.footer address {
  font-style: normal;
  color: var(--color-white);
}

.footer__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  max-width: max-content;
  background-color: var(--color-white);
  border-radius: 100px;
  color: var(--bg-color);
  line-height: 0;
  margin: 0.6em 0;
  font-size: 1rem;
  padding: 0 1.3em;
}

.footer ul {
  list-style: none;
  padding-left: 0;
}

.footer li {
  line-height: 2em;
}

.footer a {
  text-decoration: none;
}

.footer__nav {
  display: flex;
  flex-flow: row wrap;
}

.footer__nav > * {
  flex: 1 50%;
  margin-right: 1.25em;
}

.nav__ul a {
  color: var(--color-white);
}

.nav__ul--extra {
  column-count: 2;
  column-gap: 1.25em;
}

.legal {
  display: flex;
  flex-wrap: wrap;
  color: var(--color-white);
}

.legal__links {
  display: flex;
  align-items: center;
}

.heart {
  color: var(--color-white);
}

@media screen and (min-width: 24.375em) {
  .legal .legal__links {
    margin-left: auto;
  }
}

@media screen and (min-width: 40.375em) {
  .footer__nav > * {
    flex: 1;
  }
  .nav__item--extra {
    flex-grow: 2;
  }
  .footer__addr {
    flex: 1 0px;
  }
  .footer__nav {
    flex: 2 0px;
  }
}

/*scale */

.events_scale {
  display: grid;
  width: 96%;
  margin: 0 auto;
  gap: 1.8rem;
  grid-template-columns: 1fr 0.4fr;
  /* Default two-column layout */
  min-height: 100vh;
}

.page-aside {
  display: none;
  flex: 1 0 auto;
  padding: 0 0.75em;
  -webkit-animation: fadeUpDelay 600ms;
  animation: fadeUpDelay 600ms;
}

.row_scale .col_scale {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  padding-left: 10rem;
}

.events_scale .row_scale .col_scale h1 {
  font-size: 2rem;
  color: var(--color-white);
  margin-bottom: 15px;
  margin-top: 100px;
}

.events_scale .row_scale .col_scale p {
  margin-top: 0.75em;
  padding-right: 1rem;
}

@media (max-width: 600px) {
  .events_scale {
    grid-template-columns: 1fr;
    /* Change to a single column layout */
    gap: 1rem;
    /* Adjust gap for smaller screens */
  }
  .page-aside {
    display: block;
    /* Show aside on mobile if needed */
  }
  .row_scale .col_scale {
    padding-left: 2rem;
    /* Reduce padding for smaller screens */
    padding-right: 2rem;
    /* Optional: add right padding */
  }
  .events_scale .row_scale .col_scale h1 {
    font-size: 1.5rem;
    /* Decrease font size for heading */
    margin-top: 50px;
    /* Reduce top margin */
  }
  .events_scale .row_scale .col_scale p {
    font-size: 0.875rem;
    /* Adjust font size for paragraphs */
    margin-top: 0.5em;
    /* Reduce margin */
    padding-right: 0;
    /* Remove right padding */
  }
}

.example {
  width: 100%;
  padding: 1em 0.75em 1em;
}

.example h2 {
  margin-bottom: 5px;
}

.example p {
  margin-bottom: 30px;
}

/*table*/

table {
  margin-top: 50px;
  border-collapse: collapse;
  width: 60%;
}

.blue {
  border: 2px solid var(--color-success);
}

.blue thead {
  background: var(--color-success);
}

thead {
  color: var(--text-color);
}

th {
  background-color: #04aa6d;
}

td {
  border: 1px solid #000000;
  padding: 8px;
  color: var(--color-white);
}

tr {
  background-color: var(--bg-color);
}

.fixed {
  top: 0;
  position: fixed;
  width: auto;
  display: none;
  border: none;
}

.scrollMore {
  margin-top: 600px;
}

.up {
  cursor: pointer;
}

.gpa-container {
  display: flex;
  margin-bottom: 20px;
}

/*guide */

.events_guide {
  display: grid;
  width: 96%;
  margin: 0 auto;
  gap: 1.8rem;
  grid-template-columns: 1fr 0.4fr;
  /* Default two-column layout */
  min-height: 100vh;
}

@media (max-width: 600px) {
  .events_guide {
    grid-template-columns: 1fr;
    /* Change to a single column */
  }
}

.row_guide {
  margin-top: 100px;
  padding-left: 10rem;
}

.row_guide h2 {
  margin-bottom: 20px;
}

.row_guide p {
  margin-bottom: 50px;
}

@media (max-width: 600px) {
  /* Adjust the max-width as needed */
  .row_guide {
    margin-top: 50px;
    /* Reduce top margin on mobile */
    padding-left: 2rem;
    /* Reduce left padding for smaller screens */
    padding-right: 2rem;
    /* Optional: add right padding */
  }
  .row_guide h2 {
    font-size: 1.5rem;
    /* Decrease font size for heading */
    margin-bottom: 15px;
    /* Reduce bottom margin */
  }
  .row_guide p {
    font-size: 0.875rem;
    /* Decrease font size for paragraph */
    margin-bottom: 30px;
    /* Reduce bottom margin */
  }
}

.form-align {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  gap: 200px;
}

@media (max-width: 600px) {
  /* Adjust the max-width as needed */
  .form-align {
    flex-direction: column;
    /* Stack items vertically on mobile */
    gap: 20px;
    /* Reduce gap between items */
    align-items: flex-start;
    /* Align items to the start */
  }
}

.form-align label {
  flex: 1;
  text-align: left;
  margin-right: 10px;
  color: var(--color-white);
}

.form-align input {
  flex: 1;
  text-align: right;
  margin-left: 10px;
  padding: 6px 12px;
  font-size: 14px;
  border-radius: 6px;
  line-height: 1.5;
  padding: 5px 10px;
  transition:
    box-shadow 100ms ease-in,
    border 100ms ease-in,
    background-color 100ms ease-in;
  border: 2px solid #dee1e2;
  color: rgb(14, 14, 16);
  background: #dee1e2;
  display: block;
  height: 36px;
  :hover {
    border-color: #ccc;
  }
  :focus {
    border-color: #9147ff;
    background: #fff;
  }
}

#gpa-raiser-form {
  width: 100%;
  max-width: 600px;
  margin: 20px;
  gap: 100px;
}

/* Styling for the navigation bar */

/* Styling for the navigation bar */

nav ul.navbar_1 {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: #333;
}

nav ul.navbar_1 li {
  float: left;
  position: relative;
}

nav ul.navbar_1 li a {
  display: block;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

nav ul.navbar_1 li a:hover,
.dropdown:hover > a {
  background-color: #111;
}

/* Dropdown content */

ul.dropdown-content {
  display: none;
  position: absolute;
  background-color: transparent;
  /* No background color */
  min-width: 160px;
  z-index: 1;
}

ul.dropdown-content li {
  float: none;
}

ul.dropdown-content li a {
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
  color: white;
}

ul.dropdown-content li a:hover {
  background-color: #555;
}

/* Show the dropdown menu when hovering */

.dropdown:hover .dropdown-content {
  display: block;
  background-color: transparent;
  /* Remove background color */
}

.menu-desktop__item:nth-child(1) {
  display: none;
}

.menu-desktop__item {
  margin-right: 1.5em;
  padding: 1.5em 0 1.125em;
  line-height: 1.125rem;
}

ul,
ol,
li {
  list-style: none;
  margin: 0;
  padding: 0;
}

.privacy-policy-container {
  position: relative;
  /* Allows for positioning */
  top: 100px;
  /* Moves the container down 100px from its normal position */
  color: #ffffff;
  /* Set text color to white, adjust as needed */
  padding: 100px 100px;
}

@media (max-width: 600px) {
  /* Adjust the max-width as needed */
  .privacy-policy-container {
    top: 20px;
    /* Reduce top spacing on mobile */
    padding: 20px;
    /* Reduce padding for a more compact layout */
  }
}

/* contact section */

.form-labels {
  display: flex;
  justify-content: space-between;
  /* Distributes space evenly */
  margin-bottom: 10px;
  font-size: 16px;
  gap: 50px;
  /* Controls the space between labels */
  padding-right: 28%;
  color: var(--color-white);
}

@media (max-width: 600px) {
  .form-labels {
    font-size: 14px;
    /* Smaller font for smaller screens */
    gap: 30px;
    /* Adjust gap for smaller screens */
  }
}

@media (max-width: 400px) {
  .form-labels {
    gap: 10px;
    /* Minimal gap for very small screens */
  }
}

.example_pp {
  width: 100%;
  padding: 4em 3em 1em;
  margin: 20px;
}

.example_pp h1 {
  margin-bottom: 5px;
}

.example_pp p {
  margin-bottom: 30px;
}

.text_net {
  color: var(--color-white);
}

/*contact us */

.allgpainput {
  color: white;
  border: 2px solid #07ff6e;
  border-radius: 10px;
  padding: 10px 25px;
  background: transparent;
  max-width: 190px;
}

.allgpainput:active {
  box-shadow: 2px 2px 15px #ffa807 inset;
}

.form-group-gpa {
  display: flex;
  align-items: center;
  /* Vertically center the inputs */
  justify-content: center;
  /* Horizontally center the inputs */
  margin-bottom: 10px;
  /* Keep spacing below the group */
  gap: 1rem;
  /* Reduce gap between inputs to make it more compact */
}

.form-group-gpa input {
  width: 160px;
  /* Shrink input width */
  padding: 8px;
  /* Add padding for readability */
  font-size: 14px;
  /* Reduce font size for compact appearance */
  box-sizing: border-box;
  /* Include padding and border in width */
}

.form-group-gpa input::placeholder {
  color: #888;
  /* Light gray color */
  font-style: normal;
  /* Optional: Keep font style normal */
  opacity: 0.8;
  /* Slightly transparent */
}
/* =========================
   After Effects Presets
   Premium + Clean + AdSense-friendly
   ========================= */

.ae-presets,
.ae-detail {
  width: 100%;
  padding: 0 0 36px 0;
}

/* Main container */
.ae-presets__container {
  max-width: 1120px;
  width: min(96%, 1120px);
  margin: 0 auto;
  padding-top: 112px;
}

@media (max-width: 600px) {
  .ae-presets__container {
    width: 94%;
    padding-top: 96px;
  }
}

/* =========================
   Hero
   ========================= */

.ae-presets__hero {
  position: relative;
  overflow: hidden;
  padding: 26px 24px;
  border-radius: 22px;
  background:
    radial-gradient(
      circle at top right,
      rgba(44, 187, 99, 0.16),
      transparent 28%
    ),
    radial-gradient(
      circle at left bottom,
      rgba(41, 253, 83, 0.08),
      transparent 30%
    ),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.06),
      rgba(255, 255, 255, 0.025)
    );
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
}

.ae-presets__hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.03),
    transparent 35%,
    transparent 65%,
    rgba(255, 255, 255, 0.02)
  );
  pointer-events: none;
}

.ae-presets__hero h1 {
  position: relative;
  z-index: 1;
  margin: 0 0 12px 0;
  color: var(--color-white);
  font-size: clamp(1.9rem, 3vw, 2.65rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  font-weight: 800;
  max-width: 14ch;
}

.ae-presets__hero p {
  position: relative;
  z-index: 1;
  margin: 12px 0 0 0;
  max-width: 76ch;
  color: var(--color-white);
  opacity: 0.93;
  line-height: 1.78;
  font-size: 0.98rem;
}

.ae-presets__hero-meta {
  position: relative;
  z-index: 1;
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* =========================
   Badges
   ========================= */

.ae-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--color-white);
  background: rgba(44, 187, 99, 0.13);
  border: 1px solid rgba(44, 187, 99, 0.32);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.ae-badge--ghost {
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

/* =========================
   Shared content blocks
   ========================= */

.ae-presets__intro,
.ae-presets__faq,
.ae-card.ae-card--block,
.ae-detail__videoCard {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.045),
    rgba(255, 255, 255, 0.025)
  );
  border-radius: 18px;
  box-shadow:
    0 8px 24px rgba(0, 0, 0, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.035);
  padding: 20px;
  margin-top: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* =========================
   Toolbar
   ========================= */

.ae-presets__toolbar {
  position: sticky;
  top: 86px;
  z-index: 4;
  margin-top: 18px;
  padding: 14px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-radius: 18px;
  background: rgba(15, 15, 15, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow:
    0 8px 24px rgba(0, 0, 0, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(14px);
}

@media (max-width: 600px) {
  .ae-presets__toolbar {
    top: 74px;
    padding: 12px;
  }
}

/* Search */
.ae-search {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 320px;
  flex: 1 1 320px;
  min-height: 48px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition:
    border-color 200ms ease,
    box-shadow 200ms ease,
    background 200ms ease;
}

@media (max-width: 600px) {
  .ae-search {
    min-width: 100%;
  }
}

.ae-search:hover {
  background: rgba(255, 255, 255, 0.055);
}

.ae-search:focus-within {
  border-color: rgba(41, 253, 83, 0.46);
  box-shadow: 0 0 0 4px rgba(41, 253, 83, 0.11);
  background: rgba(255, 255, 255, 0.06);
}

.ae-search__icon {
  color: var(--color-white);
  opacity: 0.82;
  font-size: 20px;
  flex: 0 0 auto;
}

.ae-search__input {
  width: 100%;
  border: 0;
  outline: none;
  background: transparent;
  color: var(--color-white);
  font-family: "outfit", sans-serif;
  font-size: 0.96rem;
}

.ae-search__input::placeholder {
  color: rgba(255, 255, 255, 0.58);
}

/* Chips */
.ae-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  flex: 0 0 auto;
}

.ae-chip {
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.13);
  color: var(--color-white);
  font-family: "outfit", sans-serif;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 180ms ease;
}

.ae-chip:hover {
  transform: translateY(-1px);
  border-color: rgba(41, 253, 83, 0.42);
  background: rgba(255, 255, 255, 0.05);
}

.ae-chip.is-active {
  background: linear-gradient(
    180deg,
    rgba(44, 187, 99, 0.22),
    rgba(44, 187, 99, 0.13)
  );
  border-color: rgba(44, 187, 99, 0.48);
  box-shadow: 0 0 0 3px rgba(44, 187, 99, 0.1);
}

/* =========================
   Typography helpers
   ========================= */

.ae-h2 {
  margin: 0 0 10px 0;
  color: var(--color-white);
  font-size: 1.28rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.ae-h3 {
  margin: 0;
  color: var(--color-white);
  font-size: 1.08rem;
}

.ae-par {
  margin-top: 10px;
  color: var(--color-white);
  opacity: 0.92;
  line-height: 1.75;
}

.ae-list,
.ae-ol {
  margin-top: 10px;
  margin-left: 18px;
}

.ae-list li,
.ae-ol li {
  color: var(--color-white);
  margin-bottom: 9px;
  line-height: 1.7;
}

/* =========================
   Grid
   ========================= */

.ae-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 18px;
}

@media (max-width: 900px) {
  .ae-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================
   Cards
   ========================= */

.ae-card {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 16px;
  border-radius: 18px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.05),
    rgba(255, 255, 255, 0.025)
  );
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 8px 22px rgba(0, 0, 0, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease,
    background 220ms ease;
}

.ae-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.14);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.06),
    rgba(255, 255, 255, 0.03)
  );
  box-shadow:
    0 14px 32px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.045);
}

.ae-card__thumb {
  width: 182px;
  height: 102px;
  flex: 0 0 auto;
  overflow: hidden;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.ae-card__thumb img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 280ms ease;
}

.ae-card:hover .ae-card__thumb img {
  transform: scale(1.03);
}

@media (max-width: 520px) {
  .ae-card {
    flex-direction: column;
  }

  .ae-card__thumb {
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
    position: relative;
  }

  .ae-card__thumb img {
    position: absolute;
    inset: 0;
  }
}

.ae-card__body {
  min-width: 0;
  flex: 1 1 auto;
}

.ae-card__title {
  margin: 2px 0 7px 0;
  color: var(--color-white);
  font-size: 1.12rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.ae-card__desc {
  margin: 0 0 12px 0;
  color: var(--color-white);
  opacity: 0.9;
  font-size: 0.95rem;
  line-height: 1.65;
}

.ae-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.ae-tag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 0.78rem;
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.11);
  opacity: 0.96;
}

.ae-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* =========================
   Buttons
   ========================= */

.ae-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 16px;
  border: 0;
  border-radius: 999px;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  font-family: "outfit", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-white);
  background: linear-gradient(
    180deg,
    rgba(44, 187, 99, 0.95),
    rgba(44, 187, 99, 0.78)
  );
  box-shadow:
    0 8px 18px rgba(44, 187, 99, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    filter 180ms ease;
}

.ae-btn:hover {
  transform: translateY(-1px);
  box-shadow:
    0 12px 22px rgba(44, 187, 99, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
  filter: brightness(1.03);
}

.ae-btn:active {
  transform: translateY(0);
}

.ae-btn--ghost {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: none;
  color: var(--color-white);
}

.ae-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.055);
  border-color: rgba(41, 253, 83, 0.42);
  filter: none;
}

/* =========================
   Content wrapper
   ========================= */

.ae-presets__content {
  margin-top: 18px;
  display: grid;
  gap: 18px;
}

/* =========================
   Detail Page
   ========================= */

.ae-detail {
  padding-bottom: 28px;
}

.ae-detail__hero {
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  gap: 18px;
  align-items: start;
}

@media (max-width: 980px) {
  .ae-detail__hero {
    grid-template-columns: 1fr;
  }
}

.ae-detail__title {
  margin: 0;
  color: var(--color-white);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.ae-detail__lead {
  margin-top: 12px;
  color: var(--color-white);
  opacity: 0.94;
  line-height: 1.78;
}

.ae-detail__meta {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.ae-detail__actions {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.ae-video {
  position: relative;
  height: 0;
  padding-bottom: 56.25%;
}

.ae-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.ae-detail__videoLinks {
  padding: 14px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ae-link {
  color: var(--color-white);
  opacity: 0.95;
  text-decoration: none;
}

.ae-link:hover {
  text-decoration: underline;
}

.ae-muted {
  color: var(--color-info-dark);
  font-size: 0.94rem;
}

.ae-detail__grid {
  margin-top: 18px;
  display: grid;
  gap: 18px;
}

.ae-detail__download {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.ae-detail__downloadActions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* =========================
   AdSense helpers
   ========================= */

.ad-wrap {
  width: 100%;
  margin: 18px 0;
  display: flex;
  justify-content: center;
}

.ad-wrap--tight {
  margin: 12px 0;
}

.ad-wrap--block {
  margin: 26px 0;
}

.ad-slot-responsive {
  width: 100%;
  max-width: 1120px;
  min-height: 90px;
}

.ad-slot-infeed {
  width: 100%;
}

/* =========================
   Desktop side ads
   ========================= */

.ae-side-ads {
  position: fixed;
  top: 112px;
  left: 0;
  right: 0;
  z-index: 1;
  pointer-events: none;
}

.ae-side-ads__left,
.ae-side-ads__right {
  width: 160px;
  pointer-events: auto;
  opacity: 0.98;
}

.ae-side-ads__left {
  position: absolute;
  left: 12px;
}

.ae-side-ads__right {
  position: absolute;
  right: 12px;
}

@media (max-width: 1280px) {
  .ae-side-ads {
    display: none;
  }
}

/* =========================
   Mobile sticky ad
   ========================= */

.ad-sticky {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  display: none;
  padding: 6px 0;
  background: rgba(14, 14, 14, 0.78);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.ad-sticky__inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}

@media (max-width: 768px) {
  .ad-sticky {
    display: block;
  }

  body {
    padding-bottom: 72px;
  }
}
/* =========================
   Home V2 (Index only)
   ========================= */
.home-v2 {
  background:
    radial-gradient(
      circle at 12% -8%,
      rgba(41, 253, 83, 0.18),
      transparent 34%
    ),
    radial-gradient(
      circle at 88% 3%,
      rgba(108, 155, 207, 0.2),
      transparent 38%
    ),
    linear-gradient(180deg, #15171d 0%, #1c2028 52%, #161a22 100%);
  color: #f2f5fb;
}

.home-v2 header {
  backdrop-filter: blur(10px);
  background: rgba(21, 23, 29, 0.74);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.home-v2 .Header1 {
  max-width: 1180px;
  margin: 130px auto 14px;
  padding: 28px;
  border-radius: 20px;
  background: linear-gradient(
    155deg,
    rgba(44, 187, 99, 0.16),
    rgba(108, 155, 207, 0.15)
  );
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.2);
}

.home-v2 .header1-text h1 {
  margin-bottom: 12px;
  letter-spacing: -0.02em;
  font-size: clamp(2rem, 4vw, 2.7rem);
}

.home-v2 .header1-text p {
  color: rgba(236, 244, 255, 0.88);
  line-height: 1.65;
  max-width: 75ch;
}

.home-v2 .main1 {
  width: min(96%, 1180px);
  grid-template-columns: 1fr 330px;
  gap: 1.1rem;
}

.home-v2 .container_plus,
.home-v2 .notification,
.home-v2 .time-weather {
  background: rgba(23, 27, 36, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.22);
}

.home-v2 .container_plus {
  border-radius: 22px;
}

.home-v2 .time-weather {
  background: linear-gradient(
    145deg,
    rgba(26, 40, 33, 0.86),
    rgba(29, 36, 50, 0.9)
  );
}

.home-v2 .time-weather .weather {
  background: rgba(11, 14, 20, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.home-v2 .form-group {
  gap: 0.9rem;
}

.home-v2 .form-group input {
  background: rgba(248, 252, 255, 0.95);
  color: #11151c;
  border: 1px solid rgba(19, 23, 33, 0.2);
  border-radius: 12px;
  margin-left: 0;
  transition:
    box-shadow 160ms ease,
    border-color 160ms ease;
}
.form-group input:focus {
  outline: none;
  border-color: #29fd53;

  box-shadow: 0 0 0 3px rgba(41, 253, 83, 0.15);
}
.form-group:hover {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 10px;
}
.home-v2 .form-group input:focus {
  outline: none;
  border-color: rgba(44, 187, 99, 0.8);
  box-shadow: 0 0 0 3px rgba(44, 187, 99, 0.2);
}

.home-v2 .button-3 {
  border: 0;
  border-radius: 999px;
  min-height: 42px;
  background: linear-gradient(180deg, #39bc6d, #239550);
  box-shadow: 0 8px 18px rgba(35, 149, 80, 0.34);
}

.home-v2 .button-3:hover {
  transform: translateY(-1px);
  background: linear-gradient(180deg, #41c575, #24904f);
}

.home-v2 .events,
.home-v2 .events2 {
  padding-top: 30px;
}

.home-v2 .events .row,
.home-v2 .events2 .row2 {
  width: min(96%, 1180px);
  margin: 0 auto;
  padding-left: 0;
}

.home-v2 .col,
.home-v2 .col2 {
  width: 100%;
  border-radius: 20px;
  padding: 24px;
  background: rgba(23, 27, 36, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.home-v2 .text-content {
  max-width: 54ch;
}

.home-v2 .events .row .col img,
.home-v2 .events2 .row2 .col2 img {
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.home-v2 .low1 {
  width: min(96%, 1180px);
  margin: 1.2rem auto 0;
}

.home-v2 hr.new4,
.home-v2 hr.new5 {
  border-color: rgba(255, 255, 255, 0.22);
}

.home-v2 .footer {
  width: min(96%, 1180px);
  margin: 0 auto;
  border-radius: 20px;
  padding: 2rem;
  background: rgba(22, 26, 34, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

@media (max-width: 980px) {
  .home-v2 .main1 {
    grid-template-columns: 1fr;
  }

  .home-v2 .Header1 {
    margin: 108px 12px 14px;
    padding: 18px;
  }

  .home-v2 .events .row,
  .home-v2 .events2 .row2,
  .home-v2 .low1,
  .home-v2 .footer {
    width: 94%;
  }
}
