body {
    margin: 0;
    padding: 0;
    color: #fff;
    background: var(--color-black);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    font-family: Arial, sans-serif;
  }
  .bg-gradient-main {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, #fba007, #ffc630);
    z-index: 1;
    position: fixed;
    top:0;
  }
  
  /* Dark overlay gradient */
  .bg-gradient-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(
      180deg,
      rgba(0, 0, 0, 1) 0%,
      rgba(0, 0, 0, 1) 40%,
      rgba(0, 212, 255, 0) 100%
    );
    z-index: 2;
    position: fixed;
    top:0;
  }
  
  /* Radial gradient for added shine effect */
  .radial-gradient-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(
      circle,
      rgba(250, 214, 92, 0.8) 0%,
      rgba(250, 214, 92, 0) 60%
    );
    z-index: 3;
    opacity: 0.5;
    pointer-events: none;
    position: fixed;
    top:0;
  }

b {
    color: #fba007;
}

.container {
    width: 80%;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 3;
}

.header {
    text-align: right;
    margin-bottom: 20px;
}

.nav-bar {
    padding: 5px 10px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    background: rgba(251, 160, 7, 0.08);
    border-radius: 6px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(1.3px);
    -webkit-backdrop-filter: blur(150px);
    border: 1px solid rgba(251, 160, 7, 0.3);
}

.nav-bar .title {
    background-color: transparent;
    border: none;
    color: #fff;
    outline: none;
    font-weight: 900;
    font-size: 30px;
}

p {
    color: #888;
}

.close-btn img{
    width: auto;
    height: 20px;
    padding: 5px;
    border-radius: 5px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 6px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(251, 160, 7, 0.3);
}

.close-btn {
    cursor: pointer;
}

.content {
    margin-top: 50px;
    text-align: center;
    background-color: #00000088;
    padding: 10px 20px 10px 20px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 6px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(251, 160, 7, 0.3);
}

.content h1 {
    font-size: 36px;
    margin-bottom: 10px;
}

.content p {
    font-size: 18px;
    margin-bottom: 20px;
    text-align: left;
}

.content button {
    background-color: #1e90ff;
    border: none;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

.footer {
    text-align: center;
    padding: 10px 20px 10px 20px;
    margin-top: 100px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 6px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(251, 160, 7, 0.3);
    display: flex;
    justify-content: space-between
}


.footer p, .footer a {
    color: #888;
    font-size: 14px;
}

.footer a {
    text-decoration: none;
    margin: 0 10px;
}
