/**
 * Mobile responsive styles
 */

@media (max-width: 768px) {
  #game-container {
    width: 100%;
  }
  
  #feed-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  #conversation-feed {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 320px;
    height: 100%;
    transition: right 0.3s ease;
    z-index: 1002;
  }
  
  #conversation-feed.open {
    right: 0;
  }
  
  #conversation-feed .header {
    padding-right: 50px;
  }
  
  #conversation-feed .close-feed {
    display: block;
    position: absolute;
    top: 12px;
    right: 12px;
    background: none;
    border: none;
    color: #888;
    font-size: 24px;
    cursor: pointer;
  }
  
  #coords-display {
    right: 20px;
  }
  
  #connection-status {
    top: 70px;
  }
  
  #controls-overlay {
    display: none;
  }
  
  /* Character grid mobile */
  #character-grid {
    width: 280px;
    left: -280px;
    transform: none;
  }
  
  #character-grid.open {
    left: 0;
  }
  
  #character-grid.collapsed {
    left: -280px;
  }
  
  #grid-toggle {
    display: flex;
  }
  
  #selected-banner {
    top: 70px;
    left: 20px;
    transform: none;
  }
}

/* Desktop: hide mobile-only elements */
@media (min-width: 769px) {
  #conversation-feed .close-feed {
    display: none;
  }
}
