← back to Hormuzy

mockups/068-casino-strip.html

194 lines

<!doctype html>
<html>
<head>
  <meta name="viewport" content="width=1440">
  <title>casino-strip — Four Horsemen Studio</title>
  <link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Limelight&family=Inter&display=swap">
  <style>
    * { box-sizing: border-box; }
    body {
      margin: 0;
      font-family: 'Inter', sans-serif;
      background-color: #0a0a0a;
      color: #fdfaf3;
      display: flex;
      flex-direction: column;
      height: 900px;
    }
    header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 16px 32px;
      background: linear-gradient(90deg, #a83232, #d4af37);
      color: #0a0a0a;
      font-family: 'Limelight', cursive;
      font-size: 24px;
      position: relative;
    }
    header::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 4px;
      background: #d4af37;
    }
    .project-picker {
      position: relative;
      padding: 8px 16px;
      background: #1a1a1a;
      border: 1px solid #d4af37;
      border-radius: 4px;
      cursor: pointer;
    }
    .project-picker:hover {
      background: #2a2a2a;
    }
    .project-picker::after {
      content: '▼';
      position: absolute;
      right: 8px;
      top: 50%;
      transform: translateY(-50%);
      color: #d4af37;
    }
    .status {
      padding: 4px 8px;
      border-radius: 4px;
      background: #d4af37;
      color: #0a0a0a;
      font-weight: bold;
    }
    main {
      display: flex;
      flex: 1;
      overflow: hidden;
    }
    .chat-pane {
      width: 40%;
      background: #1a1a1a;
      display: flex;
      flex-direction: column;
      overflow: hidden;
    }
    .chat-log {
      padding: 16px;
      overflow-y: auto;
      flex: 1;
    }
    .chat-message {
      margin: 8px 0;
      padding: 8px 12px;
      background: #1a1a1a;
      border: 1px solid #3a3a3a;
      border-radius: 4px;
    }
    .chat-message.user {
      background: #a83232;
      color: #fdfaf3;
      text-align: right;
    }
    .chat-message.system {
      background: #2a2a2a;
      color: #d4af37;
      text-align: left;
    }
    .chat-input {
      display: flex;
      padding: 12px;
      border-top: 1px solid #3a3a3a;
    }
    .chat-input input {
      flex: 1;
      padding: 8px;
      border: none;
      background: #2a2a2a;
      color: #fdfaf3;
      font-size: 14px;
    }
    .chat-input button {
      margin-left: 8px;
      padding: 8px 16px;
      background: #d4af37;
      color: #0a0a0a;
      border: none;
      border-radius: 4px;
      cursor: pointer;
    }
    .panels {
      width: 60%;
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      grid-gap: 16px;
      padding: 16px;
      overflow-y: auto;
    }
    .panel {
      background: #1a1a1a;
      border: 1px solid #3a3a3a;
      border-radius: 4px;
      padding: 16px;
      display: flex;
      flex-direction: column;
    }
    .panel-header {
      font-family: 'Limelight', cursive;
      font-size: 18px;
      margin-bottom: 12px;
      color: #d4af37;
    }
    .panel-content {
      flex: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 14px;
      color: #a83232;
    }
  </style>
</head>
<body>
  <header>
    <span>Four Horsemen</span>
    <div>
      <div class="project-picker">HORMUZ ▼</div>
      <div class="status">running</div>
    </div>
  </header>
  <main>
    <div class="chat-pane">
      <div class="chat-log">
        <div class="chat-message user">/run-topic neon-gold</div>
        <div class="chat-message system">TOPIC: NEON-GOLD — ALL IN ON THE SPINNING WHEEL</div>
        <div class="chat-message user">/stampede 3</div>
        <div class="chat-message system">STAMPEDE: 3 HORSIES LOADED — DEALER STANDS ON 17</div>
        <div class="chat-message system">BETTING OPEN — PLACE YOUR WAGER</div>
      </div>
      <div class="chat-input">
        <input type="text" placeholder="ALL-IN OR FOLD?">
        <button>ROLL</button>
      </div>
    </div>
    <div class="panels">
      <div class="panel">
        <div class="panel-header">Preview</div>
        <div class="panel-content">High-roller UI mockup in progress. All-in on neon gradients!</div>
      </div>
      <div class="panel">
        <div class="panel-header">Paper</div>
        <div class="panel-content">Hand-drawn sketches of the roulette wheel. Bet on elegance.</div>
      </div>
      <div class="panel">
        <div class="panel-header">Figma</div>
        <div class="panel-content">Design system aligned with the dealer's rules. No soft hands here.</div>
      </div>
      <div class="panel">
        <div class="panel-header">Canva</div>
        <div class="panel-content">Canvassing the casino floor. Every pixel a potential win.</div>
      </div>
    </div>
  </main>
</body>
</html>