@font-face {
  font-family: 'Tungsten-Bold';
  src: url("../font/Tungsten-Bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
}

* {
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background: #0e0e1a;
  color: #f0f0f0;
  line-height: 1.6;
  padding: 2rem;
  text-align: center;
  position: relative;
}

.home-link {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 999;
  text-decoration: none;
}

.home-icon {
  width: 32px;
  height: 32px;
  fill: #ff3c52;
  transition: fill 0.3s ease;
}

.home-link:hover .home-icon {
  fill: #ffffff;
}

header {
  padding-top: 80px;
  padding-bottom: 2rem;
  border-bottom: 1px solid #2a2a2a;
}

header h1 {
  font-size: 2.8rem;
  color: #ff3c52;
  margin-bottom: 0.5rem;
}

header p {
  color: #bbb;
  font-size: 1.1rem;
}

section {
  margin-top: 3rem;
  padding: 1rem;
}

.download-section h2,
.reports-section h2 {
  font-size: 2rem;
  color: #ff3c52;
  margin-bottom: 1rem;
}

.download-btn {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  background: #ff3c52;
  color: #fff;
  font-weight: bold;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s ease;
  margin-top: 1rem;
  font-size: 1rem;
}

.download-btn:hover {
  background: #cc2d40;
}

.instructions {
  margin-top: 2rem;
  background: #1c1c2e;
  padding: 1.5rem 2rem;
  border-radius: 8px;
  width: 100%;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  text-align: center;
}

.instructions h3 {
  color: #00ffe7;
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
}

.instructions ul{
  display: inline-block;
}

.instructions ul li {
  width: 300px;
  margin-left: -13px;
  padding-bottom: 10px;
}

.reports {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-top: 1rem;
  align-items: center;
}

.reports a {
  background: #29294d;
  color: #f0f0f0;
  text-decoration: none;
  padding: 0.8rem 1.2rem;
  border-radius: 6px;
  transition: background 0.3s ease;
  width: 60%;
  text-align: left;
}

.reports a:hover {
  background: #404072;
}

footer {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid #2a2a2a;
  color: #888;
  font-size: 0.9rem;
}


body, html
{
  font-family: 'Helvetica Neue', sans-serif;
  background: #111;
  color: white;
}

.topleft
{
    background-color: #111;
    display: flex;
    position: fixed;
    align-items: center;
    height: 75px;
    width: 100%;
    top: 0px;
    left: 0px;
    z-index: 10;
}

img.logo
{
    margin: 0;
    max-width: 75%;
    max-height: 75%;
    margin-left: 15px;
    margin-right: 5px;
}

h1.kronos {
    font-size: 13px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    color: white;
    margin: 0;
    margin-left: 10px;
}

.nav_cont
{
    display: flex;
    align-items: center;
    flex: 1;
    position: relative;
}

.nav1
{
    position: relative;
    top: 0px;
    margin-bottom: auto;
    list-style: none;
}

.nav2
{
    margin-left: auto;
    padding-right: 2vw;
}

li
{
    display: inline-block;
    margin-right: 20px;
    border-radius: 15px;
}

.navlink
{
    text-decoration: none;
    color: white;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-weight: 400;
    font-size: 13px;
    padding: 7px 13px;
}

.navdown
{
    text-decoration: none;
    color: #111;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-weight: 700;
    font-size: 13px;
    padding: 7px 10px;
    background-color: rgb(219, 61, 61);
    border-radius: 7px;
    letter-spacing: 3px;
}

.lidown2
{ 
    display: none;
}

.navdown:hover
{
    transition: 0.3s;
    color: rgb(176, 50, 50);
}

.navlink:hover
{
    transition: 0.3s;
    color: rgb(254, 98, 98);
    background-color: rgb(66, 65, 65);
    border-radius: 7px;
}

.open-menu , .close-menu
{
    position: absolute;
    color: white;
    cursor: pointer;
    font-size: 1.5rem;
    display: none;
}

.open-menu {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    display: none;
}

.close-menu
{
    top: 20px;
    right: 20px;
}

#check 
{
    display: none;
}



@media (max-width: 880px) {
    .open-menu 
    {
        display: block;
    }

    .nav1 , .nav2
    {
        display: none;
    }

    .nav_cont .nav1
    {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 50%;
        background-color: #111;
        z-index: 100;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        opacity: 0;
        visibility: hidden;
        transform: translateX(100%);
        transition: transform 0.25s ease, opacity 0.25s ease;
        display: flex;
    }

    #check:checked ~ .nav_cont .nav1
    {
        opacity: 1;
        visibility: visible;
        transform: translateX(0);
    }

    .nav1 .menu ul
    {
        list-style: none;
        padding: 0;
        margin: 0;
        text-align: center;
        display: flex;
        flex-direction: column;
        gap: 60px;
    }
    
    .nav1 .menu ul li
    {
        margin: 0;
    }

    .nav1 .menu ul li a
    {
        font-size: 1rem;
        text-decoration: none;
    }

    .lidown2
    {
        display: flex;
    }
    
    .navdown
    {
        padding: 10px 60px;
    }

    .close-menu {
        display: block;
        position: absolute;
        top: 20px;
        right: 19.5px;
        font-size: 2rem;
        color: white;
        cursor: pointer;
    }
}

@media(max-width: 505px)
{

  .nav_cont .nav1
  {
        width: 100%;
  }

  body
  {
    font-size: 0.9rem;
  }

  header h1
  {
    font-size: 2rem;
  }

  header p
  {
    font-size: 0.95rem;
  }

  .download-section h2,
  .reports-section h2
  {
    font-size: 1.5rem;
  }

  .download-btn
  {
    font-size: 0.9rem;
  }

  .instructions h3
  {
    font-size: 1rem;
  }

  .reports a
  {
    font-size: 0.9rem;
    width: 80%;
  }

  footer
  {
    font-size: 0.8rem;
  }

  .instructions ul li
  {
    
    text-align: left;
    font-size: 3.4vw;
  }

  .instructions
  {
    margin-top: 2rem;
    background: #1c1c2e;
    padding: 1.5rem 2rem;
    border-radius: 8px;
    width: 100%;
    max-width: 700px;
  }

  .instructions h3
  {
    font-size: 1.3rem;
  }

}