/* =========================================================================
   Secret Dev Panel Styles
   ========================================================================= */

   #secret-dev-panel {
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    background: rgba(0, 0, 0, 0.85);
    z-index: 999999;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Bangers', cursive, sans-serif;
    color: white;
  }
  
  .dev-panel-inner {
    background: #111;
    border: 4px solid #fff;
    border-radius: 10px;
    padding: 20px;
    width: 90%;
    max-width: 600px;
    box-shadow: 8px 8px 0px rgba(255, 255, 255, 0.2);
  }
  
  .dev-panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 2px solid #555;
    padding-bottom: 10px;
  }
  
  .dev-panel-header h2 {
    margin: 0;
    font-size: 2rem;
    letter-spacing: 2px;
  }
  
  #dev-panel-close {
    background: #e74c3c;
    color: white;
    border: 2px solid white;
    border-radius: 50%;
    width: 40px; height: 40px;
    font-size: 1.5rem;
    cursor: pointer;
    font-family: inherit;
    transition: transform 0.1s;
  }
  
  #dev-panel-close:hover {
    transform: scale(1.1);
  }
  
  .dev-panel-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
  }
  
  .dev-theme-btn {
    background: #333;
    color: #fff;
    border: 2px solid #555;
    padding: 15px 10px;
    font-size: 1.2rem;
    font-family: 'Patrick Hand', cursive, sans-serif;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.2s ease;
  }
  
  .dev-theme-btn:hover {
    background: #444;
    border-color: #888;
    transform: translateY(-2px);
  }
  
  .dev-theme-btn.active {
    background: #f1c40f;
    color: #000;
    border-color: #f39c12;
    box-shadow: 4px 4px 0px rgba(241, 196, 15, 0.4);
    font-weight: bold;
  }
  

