/* Mobile adjustments */
@media (max-width: 768px) {
  /* Chat adjustments */
  .chat-modal {
    width: 100%;
  }
  
  body.chat-open #streams,
  body.chat-open #wrapper {
    width: 100%;
    margin-right: 0;
    opacity: 0.3;
  }

  /* Menu adjustments */
  .stream-form {
    flex-direction: column;
  }

  .menu-button,
  .settings-button {
    width: 100%;
    margin-left: 0;
    margin-top: 5px;
  }

  /* Help box adjustments */
  #helpbox {
    width: 95%;
    padding: 15px;
  }

  #social-links {
    flex-wrap: wrap;
  }

  .social-link {
    width: calc(50% - 10px);
    text-align: center;
  }
}

/* Tablet adjustments */
@media (min-width: 769px) and (max-width: 1024px) {
  .chat-modal {
    width: 350px;
  }

  body.chat-open #streams {
    width: calc(100vw - 350px);
  }

  body.chat-open #wrapper {
    width: calc(100% - 350px);
    margin-right: 350px;
  }
}

/* Landscape mode */
@media (orientation: landscape) and (max-height: 500px) {
  .top-menu {
    height: 40px;
  }

  .stream-form {
    padding: 5px 0;
  }

  #streams {
    padding-top: 40px;
  }
}

/* High resolution displays */
@media (min-width: 1920px) {
  .chat-modal {
    width: 500px;
  }

  body.chat-open #streams {
    width: calc(100vw - 500px);
  }

  body.chat-open #wrapper {
    width: calc(100% - 500px);
    margin-right: 500px;
  }
}

/* Print styles */
@media print {
  .top-menu,
  .chat-modal,
  .stream-controls,
  .channel-overlay {
    display: none !important;
  }
} 