@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&display=swap");
@import url("https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@300;400;500&display=swap");

/* ========================================
   ABC Favorit Font (Primary per Design Guidelines)
   ======================================== */
/* ABC Favorit Regular */
@font-face {
  font-family: "ABC Favorit";
  src:
    url("/assets/fonts/ABCFavorit-Regular-Trial.woff2") format("woff2"),
    url("/assets/fonts/ABCFavorit-Regular-Trial.woff") format("woff"),
    url("/assets/fonts/ABCFavorit-Regular-Trial.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* ABC Favorit Bold */
@font-face {
  font-family: "ABC Favorit";
  src: url("/assets/fonts/ABCFavorit-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ABC Favorit Mono Medium */
@font-face {
  font-family: "ABC Favorit Mono";
  src:
    url("/assets/fonts/ABCFavoritMono-Medium-Trial.woff2") format("woff2"),
    url("/assets/fonts/ABCFavoritMono-Medium-Trial.woff") format("woff"),
    url("/assets/fonts/ABCFavoritMono-Medium-Trial.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* ABC Favorit Mono Bold */
@font-face {
  font-family: "ABC Favorit Mono";
  src:
    url("/assets/fonts/ABCFavoritMono-Bold-Trial.woff2") format("woff2"),
    url("/assets/fonts/ABCFavoritMono-Bold-Trial.woff") format("woff"),
    url("/assets/fonts/ABCFavoritMono-Bold-Trial.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ========================================
   FilmProcessor Design System Variables
   ======================================== */
:root {
  --background-black: #000000;
  --heading-cyan: #00b9c7;
  --film-purple: #b40096;
  --title-white: #fffedc;
  --field-gray: #333333;
  --dcp-success: #22c55e;
  --film-gray-900: #111111;
  --film-gray-800: #1a1a1a;
  --film-gray-700: #2a2a2a;
  --film-gray-500: #666666;
}

* {
  box-sizing: border-box;
}

body {
  font-family: "ABC Favorit", "Inter", sans-serif;
  max-width: none;
  margin: 0;
  padding: 0;
  background: var(--background-black);
  color: var(--title-white);
  font-weight: 300;
  line-height: 1.5;
  overflow-x: hidden;
}

/* Header and menu styles are in /styles/universal-menu.css */

/* ========================================
   Container
   ======================================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem 2rem 2rem;
}

/* ========================================
   Title and Subtitle
   ======================================== */
.title {
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--title-white);
  text-align: center;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.subtitle {
  font-size: 0.9rem;
  color: var(--heading-cyan);
  text-align: center;
  margin-bottom: 3rem;
  font-weight: 400;
}

/* ========================================
   Cards
   ======================================== */
.card {
  background: #000000;
  border: 1px solid var(--field-gray);
  border-radius: 0;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  transition: all 0.2s ease;
}

.card:hover {
  border-color: var(--dcp-success);
}

/* ========================================
   Section Titles
   ======================================== */
.section-title {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--film-purple);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  letter-spacing: -0.035em;
  font-family: "ABC Favorit", "Inter", sans-serif;
  border-bottom: 1px solid var(--film-purple);
  padding-bottom: 0.5rem;
}

/* ========================================
   Form Grid - Vertical Stack
   ======================================== */
.form-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-grid-compact {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

/* ========================================
   Form Groups
   ======================================== */
.form-group {
  position: relative;
  display: flex;
  flex-direction: column;
}

/* ========================================
   Form Labels
   ======================================== */
.form-label {
  font-size: 0.75rem;
  color: var(--film-purple);
  margin-bottom: 0.4rem;
  display: block;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-family: "JetBrains Mono", monospace;
}

/* ========================================
   Form Inputs
   ======================================== */
.form-input {
  width: 100%;
  max-width: 100%;
  padding: 8px 12px;
  background: #000000;
  border: 1px solid #444;
  border-radius: 0;
  color: var(--title-white);
  font-size: 0.85rem;
  font-weight: 400;
  font-family: "JetBrains Mono", monospace;
  transition: all 0.2s ease;
  line-height: 1.2;
  box-sizing: border-box;
}

.form-input:focus {
  outline: none;
  border-color: var(--heading-cyan);
  box-shadow: 0 0 0 1px var(--heading-cyan);
}

.form-input[readonly] {
  background: rgba(51, 51, 51, 0.3);
  cursor: not-allowed;
  opacity: 0.7;
}

/* ========================================
   Form Select
   ======================================== */
.form-select {
  width: 100%;
  max-width: 100%;
  background: #000000;
  border: 1px solid var(--film-purple);
  border-radius: 0;
  padding: 8px 12px;
  color: var(--title-white);
  font-size: 0.85rem;
  font-family: "JetBrains Mono", monospace;
  font-weight: 400;
  outline: none;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23b40096' viewBox='0 0 16 16'%3e%3cpath d='m7.247 4.86-4.796 5.481c-.566.647-.106 1.659.753 1.659h9.592a1 1 0 0 0 .753-1.659l-4.796-5.48a1 1 0 0 0-1.506 0z'/%3e%3c/svg%3e");
  background-position: right 8px center;
  background-repeat: no-repeat;
  background-size: 12px;
  padding-right: 28px;
  line-height: 1.2;
  box-sizing: border-box;
}

.form-select:focus {
  border-color: var(--heading-cyan);
  box-shadow: 0 0 0 1px var(--heading-cyan);
}

.form-select option {
  background: #000000;
  color: var(--title-white);
  padding: 4px 8px;
  border: none;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.8rem;
  line-height: 1.2;
  font-weight: 400;
}

.form-select option:checked,
.form-select option:hover {
  background-color: var(--heading-cyan);
  color: #000000;
}

/* ========================================
   Upload Area
   ======================================== */
.upload-area {
  border: 1px dashed var(--field-gray);
  padding: 3rem 2rem;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  background: rgba(17, 17, 17, 0.3);
}

.upload-area:hover {
  border-color: var(--heading-cyan);
  background: rgba(0, 185, 199, 0.05);
}

.upload-area.dragover {
  border-color: var(--film-purple);
  background: rgba(180, 0, 150, 0.1);
  transform: scale(1.01);
}

.upload-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
  opacity: 0.6;
  stroke: currentColor;
  color: var(--heading-cyan);
  pointer-events: none;
}

.upload-text {
  font-size: 1.1rem;
  color: var(--title-white);
  margin-bottom: 0.5rem;
  font-weight: 400;
  pointer-events: none;
}

.upload-subtext {
  font-size: 0.85rem;
  color: #888;
  font-weight: 300;
  pointer-events: none;
}

/* ========================================
   Video Player Section
   ======================================== */
.video-player-section {
  display: none;
  margin-top: 1.5rem;
}

.video-player-section.visible {
  display: block;
}

.video-wrapper {
  position: relative;
  background: #000;
  width: 100%;
  border: 1px solid var(--field-gray);
  overflow: hidden;
}

video {
  width: 100%;
  height: auto;
  display: block;
  background: #000000;
  outline: none;
  border: none;
}

/* Native video controls enabled */

/* ========================================
   Toast Notification System
   ======================================== */
.notification-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.5rem;
  pointer-events: none;
}

.toast-notification {
  background: rgba(0, 0, 0, 0.95);
  border: 1px solid var(--heading-cyan);
  color: var(--title-white);
  padding: 0.75rem 1rem;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.3px;
  opacity: 0;
  transform: translateX(100px);
  transition: all 0.3s ease;
  pointer-events: auto;
  max-width: 350px;
}

.toast-notification.show {
  opacity: 1;
  transform: translateX(0);
}

.toast-notification.success {
  border-color: var(--dcp-success);
}

.toast-notification.error {
  border-color: #f00;
}

.toast-notification.warning {
  border-color: var(--film-purple);
}

/* ========================================
   Specs Grid
   ======================================== */
.specs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.spec-item {
  background: rgba(51, 51, 51, 0.3);
  padding: 0.75rem;
  border: 1px solid var(--field-gray);
}

.spec-label {
  font-size: 0.7rem;
  color: var(--film-purple);
  text-transform: uppercase;
  font-family: "JetBrains Mono", monospace;
  margin-bottom: 0.25rem;
}

.spec-value {
  font-size: 0.85rem;
  color: var(--title-white);
  font-family: "JetBrains Mono", monospace;
}

/* ========================================
   Buttons
   ======================================== */
button {
  background: #000000;
  color: var(--heading-cyan);
  border: 1px solid var(--heading-cyan);
  border-radius: 0;
  padding: 12px 24px;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.85rem;
  cursor: pointer;
  margin: 5px 5px 5px 0;
  transition: all 0.2s ease;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

button:hover {
  background: var(--heading-cyan);
  color: #000000;
}

button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  border-color: var(--heading-cyan);
  color: var(--heading-cyan);
}

button:disabled:hover {
  background: #000000;
  color: var(--heading-cyan);
  border-color: var(--heading-cyan);
}

button.success {
  border-color: var(--dcp-success);
  color: var(--dcp-success);
}

button.success:hover {
  background: var(--dcp-success);
  color: #000000;
}

/* ========================================
   Progress Bar
   ======================================== */
.progress-bar {
  width: 100%;
  height: 6px;
  background: #222;
  overflow: hidden;
  margin: 1rem 0;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--film-purple), var(--heading-cyan));
  width: 0%;
  transition: width 0.3s ease;
}

.progress-text {
  font-size: 0.9rem;
  color: var(--title-white);
  margin-bottom: 0.5rem;
  font-weight: 400;
}

.progress-details {
  font-size: 0.75rem;
  color: #888;
  font-family: "JetBrains Mono", monospace;
  font-weight: 300;
}

/* ========================================
   Status Messages
   ======================================== */
.info {
  color: var(--title-white);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.65rem;
  font-weight: 400;
}

.success {
  color: var(--dcp-success);
}

.error {
  color: #f00;
}

.warning {
  color: var(--film-purple);
}

/* ========================================
   Code/Pre
   ======================================== */
pre {
  background: #000;
  padding: 10px 10px 10px 0;
  overflow-x: auto;
  max-height: 400px;
  overflow-y: auto;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.65rem;
  color: var(--title-white);
}

/* ========================================
   ISDCF Preview
   ======================================== */
.isdcf-preview {
  background: #000;
  padding: 15px;
  border: 2px solid var(--film-purple);
  margin: 15px 0;
  color: var(--film-purple);
  font-weight: bold;
  word-break: break-all;
  font-family: "JetBrains Mono", monospace;
}

/* ========================================
   DCP Folder Preview
   ======================================== */
.dcp-folder-preview {
  margin: 1rem 0;
  padding: 1rem;
  background: #000000;
  border-radius: 0;
  border: 1px solid #333;
}

.folder-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.8rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--heading-cyan);
}

.folder-icon {
  font-size: 1rem;
  color: var(--heading-cyan);
}

.folder-name {
  font-size: 0.75rem;
  color: var(--heading-cyan);
  font-family: "JetBrains Mono", monospace;
  font-weight: 400;
  text-transform: uppercase;
}

.folder-contents {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.file-item {
  font-size: 0.7rem;
  color: #888;
  font-family: "JetBrains Mono", monospace;
  padding: 0.2rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.file-item::before {
  content: "▸";
  color: var(--film-purple);
}

.file-item.xml::before {
  color: #888;
}

.file-item.mxf::before {
  color: var(--dcp-success);
}

.file-item span {
  color: var(--title-white);
}

/* ========================================
   Hardware Requirements Section
   ======================================== */
.hardware-info {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  font-family: "JetBrains Mono", monospace;
  margin-bottom: 1rem;
  border: 1px solid var(--field-gray);
  padding: 0.5rem;
}

.hardware-row {
  flex: 1;
  text-align: center;
  min-width: 120px;
}

.hardware-label {
  color: #888;
  text-transform: uppercase;
  font-size: 0.65rem;
  letter-spacing: 0.03em;
  margin-bottom: 0.3rem;
  display: block;
}

.hardware-value {
  color: var(--heading-cyan);
  font-size: 0.8rem;
}

.processing-choice {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

.choice-option {
  border: 1px solid var(--field-gray);
  padding: 0.75rem 0.5rem;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
}

.choice-option:hover {
  border-color: var(--heading-cyan);
}

.choice-option.selected {
  border-color: var(--dcp-success);
}

.choice-title {
  font-size: 0.8rem;
  color: var(--heading-cyan);
  font-weight: 500;
  margin-bottom: 0.4rem;
  font-family: "JetBrains Mono", monospace;
}

.choice-description {
  font-size: 0.65rem;
  color: #888;
  line-height: 1.3;
  font-family: "JetBrains Mono", monospace;
}

/* ========================================
   Mobile Responsive
   ======================================== */
@media (max-width: 768px) {
  .container,
  .header-wrapper,
  .card {
    padding: 1.5rem;
  }

  .processing-choice {
    grid-template-columns: 1fr;
  }
}

/* ========================================
   Animations
   ======================================== */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.card {
  animation: fadeIn 0.5s ease-out;
}

.card:nth-child(2) {
  animation-delay: 0.1s;
}
.card:nth-child(3) {
  animation-delay: 0.2s;
}
.card:nth-child(4) {
  animation-delay: 0.3s;
}

/* ============================================
   PRICING SECTION STYLES (v1.5)
   ============================================ */

.pricing-section {
  margin-top: 1rem;
  padding: 1rem;
  background: var(--background-black);
  border-radius: 0;
  border: 1px solid var(--field-gray);
}

.pricing-breakdown {
  margin-bottom: 1rem;
}

.pricing-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  border-bottom: 1px solid #222;
  font-size: 0.8rem;
}

.pricing-item:last-of-type {
  border-bottom: none;
}

.pricing-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 0;
  border-top: 1px solid var(--heading-cyan);
  margin-top: 0.8rem;
  font-size: 1rem;
  font-weight: 600;
}

.pricing-label {
  color: var(--title-white);
  font-family: "JetBrains Mono", monospace;
  font-weight: 400;
}

.pricing-value {
  color: var(--heading-cyan);
  font-family: "JetBrains Mono", monospace;
  font-weight: 400;
}

.pricing-total .pricing-value {
  color: var(--dcp-success);
  font-size: 1.1rem;
  font-weight: 500;
}

/* ============================================
   DISCOUNT CODE STYLES (v1.5)
   ============================================ */

.discount-section {
  margin-top: 1rem;
  margin-bottom: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--field-gray);
}

.discount-input-group {
  display: flex;
  align-items: center;
  flex: 1;
}

.discount-input {
  background: var(--background-black);
  border: 1px solid var(--film-purple);
  color: var(--title-white);
  padding: 0.75rem;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.9rem;
  flex: 1;
  margin-right: 0.5rem;
}

.apply-discount-btn {
  background: var(--film-purple);
  border: 1px solid var(--film-purple);
  color: var(--title-white);
  padding: 0.75rem 1.5rem;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.apply-discount-btn:hover {
  background: var(--heading-cyan);
  border-color: var(--heading-cyan);
}

.discount-message {
  margin-top: 0.5rem;
  font-size: 0.85rem;
  font-family: "JetBrains Mono", monospace;
  padding: 0.5rem;
}

.discount-message.success {
  color: var(--dcp-success);
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
}

.discount-message.error {
  color: #ef4444;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
}

/* ============================================
   PAYMENT METHOD STYLES (v1.5)
   ============================================ */

.payment-methods {
  margin-bottom: 1rem;
}

.payment-method-label {
  font-size: 0.75rem;
  color: var(--film-purple);
  margin-bottom: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-family: "JetBrains Mono", monospace;
  font-weight: 500;
}

.payment-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}

.pay-btn {
  width: 100%;
  padding: 1rem 1.5rem;
  background: #444;
  border: 1px solid #444;
  border-radius: 0;
  color: #888;
  font-size: 0.9rem;
  font-weight: 400;
  font-family: "JetBrains Mono", monospace;
  cursor: not-allowed;
  transition: all 0.2s ease;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pay-btn:not(:disabled) {
  background: var(--background-black);
  border-color: var(--dcp-success);
  color: var(--dcp-success);
  cursor: pointer;
}

.pay-btn:hover:not(:disabled) {
  background: rgba(34, 197, 94, 0.1);
  border-color: #16a34a;
  color: #16a34a;
}

.pay-btn:disabled {
  background: #444;
  border-color: #444;
  color: #888;
  cursor: not-allowed;
}

.stripe-btn:not(:disabled) {
  background: var(--background-black);
  border-color: #635bff;
  color: #635bff;
}

.stripe-btn:hover:not(:disabled) {
  background: rgba(99, 91, 255, 0.1);
  border-color: #5a4bfc;
  color: #5a4bfc;
}

.crypto-btn:not(:disabled) {
  background: var(--background-black);
  border-color: #f7931a;
  color: #f7931a;
}

.crypto-btn:hover:not(:disabled) {
  background: rgba(247, 147, 26, 0.1);
  border-color: #e8850e;
  color: #e8850e;
}

.create-direct-btn {
  background: linear-gradient(135deg, var(--film-purple), var(--heading-cyan));
  border: 1px solid var(--film-purple);
  color: var(--title-white);
  font-weight: 600;
  grid-column: 1 / -1;
}

.create-direct-btn:hover {
  background: linear-gradient(135deg, var(--heading-cyan), var(--film-purple));
  border-color: var(--heading-cyan);
}

.payment-info {
  text-align: center;
  margin-top: 0.8rem;
  font-size: 0.7rem;
  color: #888;
  font-family: "JetBrains Mono", monospace;
  font-weight: 300;
}

/* ============================================
   CRYPTO MODAL STYLES (v1.5)
   ============================================ */

.crypto-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
}

.crypto-modal-content {
  background: var(--background-black);
  border: 1px solid var(--field-gray);
  border-radius: 0;
  padding: 1rem;
  max-width: 500px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
}

.crypto-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--field-gray);
}

.crypto-header h3 {
  color: var(--heading-cyan);
  font-family: "JetBrains Mono", monospace;
  font-size: 1rem;
  font-weight: 500;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.crypto-close {
  background: none;
  border: none;
  color: #888;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.crypto-close:hover {
  color: var(--title-white);
}

.crypto-total {
  text-align: center;
  margin-bottom: 0.75rem;
  padding: 0.75rem;
  background: rgba(17, 17, 17, 0.5);
  border: 1px solid var(--field-gray);
}

.crypto-amount-usd {
  font-size: 1.2rem;
  color: var(--title-white);
  font-family: "JetBrains Mono", monospace;
  font-weight: 500;
}

.crypto-amount-btc {
  font-size: 0.9rem;
  color: #f7931a;
  font-family: "JetBrains Mono", monospace;
  margin-top: 0.5rem;
}

.crypto-options {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-bottom: 1.5rem;
}

.crypto-option {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: var(--film-gray-900);
  border: 1px solid var(--field-gray);
  cursor: pointer;
  transition: all 0.2s ease;
}

.crypto-option:hover {
  border-color: #f7931a;
  background: rgba(247, 147, 26, 0.1);
}

.crypto-icon {
  font-size: 1.5rem;
  width: 2rem;
  text-align: center;
}

.crypto-name {
  flex: 1;
  font-family: "JetBrains Mono", monospace;
  color: var(--title-white);
  font-size: 0.9rem;
}

.crypto-rate {
  font-family: "JetBrains Mono", monospace;
  color: #888;
  font-size: 0.8rem;
}

.crypto-payment-details {
  text-align: center;
}

.crypto-qr-container {
  margin: 0.75rem 0;
  padding: 0.75rem;
  background: white;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid var(--field-gray);
}

.crypto-qr {
  width: 200px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.crypto-address {
  margin: 0.75rem 0;
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.crypto-address label {
  font-family: "JetBrains Mono", monospace;
  color: #888;
  font-size: 0.8rem;
  min-width: 100px;
}

.crypto-address-input {
  flex: 1;
  background: var(--film-gray-900);
  border: 1px solid var(--field-gray);
  color: var(--title-white);
  padding: 0.5rem;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.7rem;
}

.crypto-copy-btn {
  background: var(--field-gray);
  border: 1px solid #555;
  color: var(--title-white);
  padding: 0.5rem 1rem;
  cursor: pointer;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.8rem;
}

.crypto-copy-btn:hover {
  background: #555;
}

.crypto-amount {
  margin: 0.5rem 0;
  font-family: "JetBrains Mono", monospace;
  color: var(--title-white);
  font-size: 0.85rem;
}

.crypto-timer {
  margin: 0.5rem 0;
  font-family: "JetBrains Mono", monospace;
  color: #f7931a;
  font-size: 0.85rem;
}

.crypto-status {
  margin: 0.75rem 0;
  padding: 0.6rem;
  background: var(--film-gray-900);
  border: 1px solid var(--field-gray);
  font-family: "JetBrains Mono", monospace;
  color: var(--heading-cyan);
  font-size: 0.85rem;
}

/* ============================================
   RESPONSIVE DESIGN FOR PAYMENT (v1.5)
   ============================================ */

@media (max-width: 768px) {
  .payment-buttons {
    grid-template-columns: 1fr;
  }

  .crypto-modal-content {
    width: 95%;
    padding: 0.75rem;
  }
}

/* ============================================================================
   CUSTOM VIDEO PLAYER CONTROLS
   ========================================================================= */

.video-wrapper {
  position: relative;
  width: 100%;
  background: #000;
}

.video-wrapper video {
  width: 100%;
  height: auto;
  display: block;
}

.video-controls-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.9);
  padding: 8px 15px;
  opacity: 0;
  transition: opacity 0.15s ease;
}

.video-wrapper:hover .video-controls-overlay {
  opacity: 1;
}

.video-main-controls {
  display: flex;
  align-items: center;
  gap: 12px;
  height: 28px;
}

.video-control-icon {
  width: 28px;
  height: 28px;
  background: transparent;
  border: none;
  color: var(--film-purple);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: all 0.2s ease;
  padding: 0;
}

.video-control-icon:hover {
  color: #fffedc;
  transform: scale(1.1);
}

.video-control-icon:active {
  transform: scale(0.95);
}

/* Override general button hover for video controls - no background */
.video-control-icon:hover {
  background: transparent !important;
  color: #fffedc;
  transform: scale(1.1);
}

/* Play/Pause Icon Styles */
.play-icon::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-left: 12px solid currentColor;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  margin-left: 2px;
}

.pause-icon::before {
  content: "";
  display: block;
  width: 10px;
  height: 16px;
  background:
    linear-gradient(currentColor, currentColor) 0 0 / 3px 16px no-repeat,
    linear-gradient(currentColor, currentColor) 7px 0 / 3px 16px no-repeat;
}

.stop-icon::before {
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  background: currentColor;
}

/* Notification Container (Toast Messages) */
.notification-container {
  position: absolute;
  top: 10px;
  bottom: 65px;
  right: 10px;
  z-index: 100;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.25rem;
  overflow: hidden;
}

.notification {
  background: transparent;
  color: var(--title-white);
  padding: 0;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.35rem;
  font-weight: 400;
  border: none;
  letter-spacing: 0.3px;
  opacity: 0.8;
  text-align: right;
}

.fullscreen-icon::before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  position: relative;
  background:
    linear-gradient(currentColor, currentColor) 2px 2px / 6px 2px no-repeat,
    linear-gradient(currentColor, currentColor) 2px 2px / 2px 6px no-repeat,
    linear-gradient(currentColor, currentColor) 8px 2px / 6px 2px no-repeat,
    linear-gradient(currentColor, currentColor) 12px 2px / 2px 6px no-repeat,
    linear-gradient(currentColor, currentColor) 2px 12px / 6px 2px no-repeat,
    linear-gradient(currentColor, currentColor) 2px 8px / 2px 6px no-repeat,
    linear-gradient(currentColor, currentColor) 8px 12px / 6px 2px no-repeat,
    linear-gradient(currentColor, currentColor) 12px 8px / 2px 6px no-repeat;
}

.video-progress-container {
  flex: 1;
  margin: 0 12px;
  position: relative;
  min-height: 16px;
  display: flex;
  align-items: center;
}

.video-progress-bar {
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  cursor: pointer;
  position: relative;
  border-radius: 2px;
}

.video-progress-fill {
  height: 100%;
  background: rgba(255, 254, 220, 0.6);
  width: 0%;
  transition: width 0.1s ease;
  position: relative;
  border-radius: 2px;
}

.video-progress-handle {
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  background: #fffedc;
  opacity: 0;
  transition: opacity 0.2s ease;
  border-radius: 0;
  cursor: grab;
}

.video-progress-container:hover .video-progress-handle {
  opacity: 1;
}

.video-time-display {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.7);
  min-width: 80px;
  text-align: center;
}

.volume-slider {
  width: 100px;
  height: 2px;
  background: transparent;
  outline: none;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  margin: 0;
}

.volume-slider::-webkit-slider-runnable-track {
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  border-radius: 0;
}

.volume-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 12px;
  height: 12px;
  background: #fffedc;
  cursor: pointer;
  border: 0;
  border-radius: 0 !important;
  box-shadow: none;
  margin-top: -5px;
}

.volume-slider::-moz-range-track {
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  border-radius: 0;
}

.volume-slider::-moz-range-thumb {
  width: 12px;
  height: 12px;
  background: #fffedc;
  cursor: pointer;
  border: 0;
  border-radius: 0 !important;
  box-shadow: none;
}

.volume-slider::-ms-track {
  width: 100%;
  height: 2px;
  background: transparent;
  border: none;
  color: transparent;
}

.volume-slider::-ms-fill-lower {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  border-radius: 0;
}

.volume-slider::-ms-fill-upper {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  border-radius: 0;
}

.volume-slider::-ms-thumb {
  width: 12px;
  height: 12px;
  background: #fffedc;
  cursor: pointer;
  border: 0;
  border-radius: 0 !important;
  box-shadow: none;
}
