:root {
    --bg-color: #F7931A;
    --text-color: white;
  }

  body {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: 'Arial', sans-serif;
    font-size: 16px;
    transition: background-color 0.3s, color 0.3s;
    overflow: hidden;
  }
  
  .container {
    width: 80vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  
  #time {
    font-size: 3vw;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    transition: opacity 0.3s;
  }
  
  #price {
    font-size: 20vw;
    line-height: 1;
    margin: 0 0 0 -30px;
    padding: 0;
    width: 100%;
    text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.4);
  }
  
  #change {
    font-size: 4vw;
    margin-top: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    transition: opacity 0.3s;
  }

  .positive {
    color: #1AF724;
  }

  .negative {
    color: #F7241A;
  }

  .hidden {
    opacity: 0;
    pointer-events: none;
  }

  .toggle-option.not-visible {
    display: none;
  }

  /* Hamburger Menu Styles */
  .menu-toggle {
    position: fixed;
    top: 20px;
    right: 20px;
    font-size: 24px;
    cursor: pointer;
    z-index: 1000;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  }

  .menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100dvh;
    overflow-y: auto;
    background-color: rgba(0, 0, 0, 0.9);
    transition: right 0.3s;
    z-index: 999;
    padding: 20px;
    box-sizing: border-box;
    overflow-y: auto;
  }

  .menu.active {
    right: 0;
  }

  .menu h3 {
    color: white;
    margin-top: 30px;
    margin-bottom: 10px;
  }

  .menu-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
  }

  .menu-option {
    background-color: #333;
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s;
  }

  .menu-option:hover {
    background-color: #555;
  }

  .menu-option.active {
    background-color: #f2a900;
    color: black;
  }

  .toggle-option {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
  }

  .toggle-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
    margin-right: 10px;
  }

  .toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
  }

  .toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #333;
    transition: .4s;
    border-radius: 24px;
  }

  .toggle-slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
  }

  input:checked + .toggle-slider {
    background-color: #f2a900;
  }

  input:checked + .toggle-slider:before {
    transform: translateX(26px);
  }

  .toggle-label {
    color: white;
    cursor: pointer;
  }

  .fullscreen-button {
    background-color: #333;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s;
    margin-top: 10px;
  }

  .fullscreen-button:hover {
    background-color: #555;
  }

  /* Modal styles */
  .modal {
    display: none;
    position: fixed;
    overflow-y: auto;
    z-index: 1001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: none;
    background-color: rgba(0, 0, 0, 0.7);
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .modal.active {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    opacity: 1;
  }

  .modal-content {
    background-color: #222;
    margin: 4% auto;
    padding: 20px;
    border: 1px solid #444;
    border-radius: 8px;
    width: 80%;
    max-width: 600px;
    color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
  }

  .modal.active .modal-content {
    transform: translateY(0);
  }

  .close-modal {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
  }

  .close-modal:hover,
  .close-modal:focus {
    color: #f2a900;
    text-decoration: none;
  }

  #what-is-this {
    font-size: 16px;
    cursor: pointer;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  }

  #what-is-this:hover {
    color: white;
    text-decoration: underline;
  }

  .overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 998;
  }

  .overlay.active {
    display: block;
  }

  .link {
    text-decoration: underline;
  }

  .modal-link {
    color: #f2a900;
  }

  .modal-content ul li {
    padding-bottom: 10px;
  }

  .menu-footer-info {
    margin-top: 50px;
  }

  /*Mobile*/

  @media (min-height: 480px) {
    .menu-footer-info {
        position: fixed;
        bottom: 20px;
      }
  }

  @media (min-height: 530px) {
    .modal-content {
        margin: auto;
      }
  }

  @media (max-width: 940px) {
    #time {
        font-size: 4vw; }
  }