.almendra-display-regular {
    font-family: "Almendra Display", serif;
    font-weight: 400;
    font-style: normal;
  }
  .logo-thin {
    font-family: "Grenze Gotisch", serif;
    font-weight: 300;
  }
  body {
    background-color: #31113a;
    cursor: url('cursor.png'),auto;
  }
  #header {
    display: flex;
    justify-content: space-between; /* logo on left, nav on right */
    align-items: center;            /* vertically center both */
    border-radius: 25px;
    border: 4px solid #C4C7C5;
    padding: 0px 20px;
    background: #242425;
    margin: 30px 80px;
    color: white;
    font-family: "Grenze Gotisch", serif;
  }

  /* Logo styles */
  #logo {
    font-size: 80px;   /* reduce a bit so nav fits nicely */
    margin: -10px 0 0 0;         /* reset default h1 margin */
  }

  /* Nav container */
  #header nav {
    display: flex;
    gap: 20px;         /* spacing between nav items */
  }

  /* Nav items (the h2s) */
  #header nav h2 {
    font-size: 50px;
    margin: 0;
    cursor: pointer;   /* make it feel clickable */
    
    font-weight: 400;
  }

  #header nav h2 a {
    color: white;          /* match your header color */
    text-decoration: none; /* remove underline */
  }

  #header nav h2 a:hover {
    text-decoration: underline; /* optional: show underline on hover */
  }
  /* Dropdown */
  .dropdown {
    position: relative;
    display: inline-block;
  }

  .profile-icon {
    width: 40px;
    height: 40px;
    cursor: pointer;
  }

  .dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    background-color: #333;
    padding: 15px;
    border-radius: 8px;
    z-index: 1;
    width: 220px;
  }

  /* Apps dropdown styles */
  .apps-dropdown {
    position: relative;
    display: inline-block;
  }

  .apps-dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #333;
    padding: 10px 0;
    border-radius: 8px;
    z-index: 1000;
    min-width: 200px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  }

  .apps-dropdown-content a {
    display: block;
    padding: 8px 20px;
    color: white;
    text-decoration: none;
    font-size: 24px;
    font-family: "Grenze Gotisch", serif;
    font-weight: 200;
    transition: background-color 0.3s;
  }

  .apps-dropdown-content a:hover {
    background-color: #555;
    text-decoration: none;
  }

  .apps-dropdown:hover .apps-dropdown-content {
    display: block;
  }

  /* Reviews dropdown styles */
  .reviews-dropdown {
    position: relative;
    display: inline-block;
  }

  .reviews-dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #333;
    padding: 10px 0;
    border-radius: 8px;
    z-index: 1000;
    min-width: 220px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  }

  .reviews-dropdown-content a {
    display: block;
    padding: 8px 20px;
    color: white;
    text-decoration: none;
    font-size: 24px;
    font-family: "Grenze Gotisch", serif;
    font-weight: 200;
    transition: background-color 0.3s;
  }
/*OSMisGOATED*/
  .reviews-dropdown-content a:hover {
    background-color: #555;
    text-decoration: none;
  }

  .reviews-dropdown:hover .reviews-dropdown-content {
    display: block;
  }

  .dropdown-content form {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .dropdown-content label {
    font-size: 14px;
    color: #fff;
  }

  .dropdown-content input {
    padding: 8px;
    border: none;
    border-radius: 5px;
  }

  .dropdown-content button {
    padding: 8px;
    background: #C4C7C5;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }

  .dropdown-content button:hover {
    background: #a5a7a6;
  }

  /* Show dropdown when .show is toggled */
  .dropdown.show .dropdown-content {
    display: block;
  }

  .unlock-button{
    font-family: "Grenze Gotisch", serif;
    font-weight: 500;
    font-size: 200%;
  }
  .profile-icon {
    width: 50px;          
    height: 50px;         
    object-fit: contain;  
    cursor: pointer;
    display: block;       
    /* No border-radius here, so it's already square */
  }
  .dropdown {
    position: relative; /* anchor for absolute child */
    display: flex;
    align-items: center;
  }

  .dropdown-content {
    display: none;
    position: absolute;
    top: 100%;           /* place it right below the lock icon */
    right: 0;            /* align with the right edge */
    margin-top: 8px;     /* small gap below the icon */
    
    background-color: #333;
    padding: 15px;
    border-radius: 8px;
    z-index: 1000;       /* make sure it stays on top */
    width: 220px;        /* or auto if you want it tighter */
  }

  /*comic*/
  .comic {
    display:block; margin:20px auto;
    height:811.8px;
    width:631.125px;
  }
