body {
      background-color: #000000;
      color: #e2e8f0;
      font-family: 'JetBrains Mono', monospace;
      margin: 0;
      overflow: hidden;
    }
    .container {
      max-width: 450px;
      margin: 0 auto;
      height: 100vh;
      display: flex;
      flex-direction: column;
      position: relative;
    }
    .header {
      padding: 40px 20px 20px;
      text-align: center;
    }
    .dice-area {
      flex: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 30px;
    }
    .dice {
      width: 180px;
      height: 180px;
      border: 2px solid rgba(168, 85, 247, 0.4);
      border-radius: 24px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 80px;
      font-weight: bold;
      color: #a855f7;
      background: rgba(168, 85, 247, 0.05);
      cursor: pointer;
      transition: 0.3s;
      position: relative;
      box-shadow: 0 0 20px rgba(168, 85, 247, 0.1);
    }
    .dice.rolling {
      animation: roll 0.5s infinite;
    }
    @keyframes roll {
      0% { transform: rotate(0deg) scale(1); }
      25% { transform: rotate(90deg) scale(1.1); border-color: #ff00ff; }
      50% { transform: rotate(180deg) scale(1); }
      75% { transform: rotate(270deg) scale(1.1); border-color: #a855f7; }
      100% { transform: rotate(360deg) scale(1); }
    }
    .command-panel {
      background: rgba(168, 85, 247, 0.05);
      border: 1px solid rgba(168, 85, 247, 0.3);
      padding: 20px;
      width: 90%;
      display: none;
      animation: slideUp 0.5s ease-out forwards;
    }
    @keyframes slideUp {
      from { opacity: 0; transform: translateY(20px); }
      to { opacity: 1; transform: translateY(0); }
    }
    .btn-complete {
      width: 100%;
      margin-top: 20px;
      padding: 15px;
      background: rgba(168, 85, 247, 0.2);
      border: 1px solid #a855f7;
      color: #fff;
      font-weight: bold;
      cursor: pointer;
    }
    .nav {
      display: flex;
      justify-content: space-around;
      padding: 15px;
      border-top: 1px solid rgba(168, 85, 247, 0.2);
      background: rgba(0,0,0,0.8);
    }
    .glitch { font-size: 24px; text-transform: uppercase; letter-spacing: 4px; color: #a855f7; text-shadow: 2px 0 #ff00ff; }
    .sub-head { font-size: 10px; color: #666; letter-spacing: 2px; margin-bottom: 5px; }
    .map-overlay {
      position: fixed;
      top: 0; left: 0; width: 100%; height: 100%;
      background: radial-gradient(circle, rgba(168, 85, 247, 0.1) 0%, rgba(0,0,0,0.9) 80%);
      z-index: -1;
    }