/* Mobile first */
@media (max-width: 600px) {
    .banner {
        width: 100% !important;
        padding: 12px 0;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 9999; 
    }

    .banner__content {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }

    .banner__close {
        align-self: flex-end;
    }
}

/* Desktop / default */
.banner {
    width: 144%;
    position: fixed;    
    top: 0;
    left: 0;
    background: #001602;  
    color: #ffffff;
    padding: 10px 0;
    z-index: 9999;        
}

.banner__content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.banner__text h5 {
    margin: 0;
    font-size: 15px;
    line-height: 1.4;
}

.banner-sub {
    font-weight: 400;
    font-size: 13px;
    opacity: 0.9;
}

.banner__close {
    background: none;
    border: none;
    color: #ffffff;
    cursor: pointer;
}

.banner__close h3 {
    margin: 0;
    font-size: 20px;
}



.side-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #001602; /
    font-weight: 600;
    font-size: 18px;
    gap: 800px; 
    padding: 20px 0;
}

.side-nav .logo {
    width: 50px;      
    height: auto;
    display: block;
}

@media (max-width: 600px) { 
    .side-nav { 
        gap: 40px; /* MUCH smaller for mobile */ 
        font-size: 16px; 
        
    } .side-nav .logo { width: 42px; } }

/********************************/


.quarterly-info {
    max-width: 480px;
    margin: 20px auto;
    font-size: 14px;
    line-height: 1.5;
    background: #ffffff;              
    padding: 18px 20px;       
    border-radius: 8px;              
    box-shadow: 0 2px 6px rgba(0,0,0,0.05); 
    border: 1px solid #eaeaea;        
}

.quarterly-info h2 {
    font-size: 16px;
    text-align: center;
    margin-bottom: 6px;
    color: #001602;                  
    font-weight: 600;
}

.quarterly-info ul {
    margin: 8px 0 0;
    padding-left: 18px;
}


/********************************/
.copyright {
    padding: 10px;
    margin: 100;
    font-size: 15px;
    color: #fff;
    background: #000;
    /*width: 50%;*/
    height: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}


/* Default logo size (desktop + portrait) */
.logo {
    width: 180px;
    height: auto;
}

/* Phones in portrait */
@media (max-width: 600px) {
    .logo {
        width: 140px;
    }
}

/* Phones in landscape (short height) */
@media (max-height: 500px) {
    .logo {
        width: 110px;
    }

    .container {
        transform: scale(0.9);
        padding-top: 20px;
    }
}



  .logo {
    width: 180px;      /* default desktop size */
    height: auto;
}

/* MOBILE: adjust logo size on all phones */
@media (max-width: 600px) {
    .logo {
        width: 120px;  /* smaller size for mobile */
        height: auto;
    }
}



    body {
        margin: 0;
        padding: 0;
        font-family: "Inter", Arial, sans-serif;
        background: linear-gradient(135deg, #000, #000);
        height: 100vh;
        display: flex;
        justify-content: center;
        align-items: center;
        color: #333;
        
  
  

  
        
        
   .side-nav {
    position: fixed;
    left: 0;
    top: 0;
    width: 50px;
    height: 100vh;
    background: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: #ffee00;
    font-size: 20px;
    font-weight: bold;
    text-decoration: none; /* removes underline */
    z-index: 9999;
}
     
  /* Landscape phones */
  @media (max-height: 500px) { .side-nav { width: 40px; font-size: 16px; } }      



/* Default (portrait + desktop) */
.top-nav {
    margin-top: 0;
}

/* Landscape mode on phones */
@media (max-height: 500px) {
    .top-nav {
        margin-top: 140px; /* adjust this number to move it further down */
    }
}



        
        
 .top-nav {
  /*width: 100%;*/
  /*display: flex;*/
  flex-direction: row;        /* forces horizontal layout */
  /*align-items: center;*/
  /*justify-content: space-evenly;*/
  padding:400px 0 15px;
  border-bottom: 1px solid #999999;
  box-sizing: border-box;
}

/* Remove default margins that can break alignment */
.top-nav > * {
  margin: 0;
  padding: 0;
}

.top-nav0 {

    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px 0 15px;
    border-bottom: 8px solid #000000;

}

.top-nav ul li {
    list-style: none;
    display: inline-block;
    margin-right: 30px;
    margin-top: 10px;
    margin-bottom: 10px;
}

.top-nav ul li a {
    text-decoration: none;
    color: #000000;
    font-weight: 600;
    font-size: 15px;


}

.top-nav button  {
    text-decoration: none;
    /*margin-right: 20px;*/
    margin-right: -65px;
    background: #ffffff;
    color: #000000;
 
   padding: 10px 30px;
    cursor: pointer;

}
    }

    .container {
        background: #ffffff;
        padding: 40px 35px;
        /*border-radius: 14px;*/
        width: 100%;
        max-width: 420px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        animation: fadeIn 0.6s ease;
        text-align: center;
    }

    @keyframes fadeIn {
        from { opacity: 0; transform: translateY(20px); }
        to { opacity: 1; transform: translateY(0); }
    }

    h1 {
        margin-bottom: 10px;
        font-size: 28px;
        font-weight: 700;
        color: #1f2937;
    }

    p {
        margin-bottom: 25px;
        font-size: 15px;
        color: #6b7280;
    }

    input[type="email"] {
        width: 100%;
        padding: 14px;
        border: 2px solid #d1d5db;
        border-radius: 8px;
        font-size: 16px;
        outline: none;
        transition: 0.25s;
    }

    input[type="email"]:focus {
        border-color: #0012ff;
        box-shadow: 0 0 0 3px rgba(59,130,246,0.25);
    }

    button {
        width: 100%;
        margin-top: 18px;
        padding: 14px;
        /*background: #0012ff;*/
         background:   #001602;
      
        border: none;
        border-radius: 8px;
        color: white;
        font-size: 17px;
        font-weight: 600;
        cursor: pointer;
        transition: 0.25s;
    }

    button:hover {
        background: #000;
        
    }

    .success, .error {
        margin-top: 15px;
        padding: 12px;
        border-radius: 8px;
        font-size: 14px;
        display: none;
    }

    .success {
        background: #d1fae5;
        color: #065f46;
    }

    .error {
        background: #fee2e2;
        color: #991b1b;
        
        
        .header {
    width: 100%;
    height: 100vh;
    background: #ebe8e8;
    padding-left: 11%;
    padding-right: 8%;
    position: relative;

   
    background-size: 25%;
    background-repeat: no-repeat;
    background-position: 92% 100%;
}



.top-nav {

    display: flex;
    align-items: center;
    justify-content: space-evenly;
    padding: 30px 0 15px;
    border-bottom: 1px solid #999999;

}

.top-nav0 {

    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px 0 15px;
    border-bottom: 8px solid #000000;

}

.top-nav ul li {
    list-style: none;
    display: inline-block;
    margin-right: 30px;
    margin-top: 10px;
    margin-bottom: 10px;
}

.top-nav ul li a {
    text-decoration: none;
    color: #000000;
    font-weight: 600;
    font-size: 15px;


}

.top-nav button  {
    text-decoration: none;
    margin-right: 20px;
    background: #ffffff;
    color: #000000;
 
   padding: 10px 30px;
    cursor: pointer;
    
    
    
    
    
    
    .optin {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: #6b7280;
  margin-top: 15px;
  text-align: left;
}

.optin input[type="checkbox"] {
  margin-top: 3px;
  transform: scale(1.2);
  cursor: pointer;
}

.optin span {
  line-height: 1.4;
}


}
       
       


        
        
    }
