    .calc-demo,
    .calc-demo *,
    .calc-demo *::before,
    .calc-demo *::after {
      box-sizing: border-box;
    }

    body {
      margin: 0;
      background: #111827;
    }

    .calc-demo {
      padding: 20px;
      user-select: none;
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
      min-height: 100vh;
      background: radial-gradient(circle at center, #1f2937 0%, #111827 100%);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .calc-demo .calculator {
      width: 100%;
      max-width: 380px;
      background: #000;
      border: 1px solid #374151;
      border-radius: 32px;
      padding: 24px;
      box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.7);
    }

    .calc-demo .display-container {
      min-height: 140px;
      margin-bottom: 20px;
      padding: 28px 24px;
      background: #111827;
      border: 1px solid #1f2937;
      border-radius: 20px;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
    }

    .calc-demo .history {
      min-height: 24px;
      margin-bottom: 8px;
      text-align: right;
      font-size: 16px;
      color: #9ca3af;
    }

    .calc-demo .display {
      text-align: right;
      font-size: 54px;
      font-weight: 300;
      color: #fff;
      white-space: nowrap;
      overflow-x: auto;
      scrollbar-width: none;
    }

    .calc-demo .display::-webkit-scrollbar {
      display: none;
    }

    .calc-demo .buttons {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 14px;
    }

    .calc-demo button {
      height: 70px;
      display: flex;
      align-items: center;
      justify-content: center;
      border: none;
      border-radius: 18px;
      cursor: pointer;
      font-size: 22px;
      font-weight: 500;
      color: #fff;
      transition: all 0.1s ease;
    }

    .calc-demo button:active {
      transform: scale(0.92);
    }

    .calc-demo .btn-gray {
      background: #4b5563;
      color: #f3f4f6;
    }

    .calc-demo .btn-dark {
      background: #1f2937;
    }

    .calc-demo .btn-orange {
      background: #f97316;
    }

    .calc-demo .btn-wide {
      grid-column: span 2;
    }

    .calc-demo .hint {
      margin-top: 15px;
      text-align: center;
      font-size: 11px;
      color: #6b7280;
      text-transform: uppercase;
      letter-spacing: 1px;
    }