﻿/* retro microsoft paint style - windows 95/98 aesthetic */

* {
 margin: 0;
 padding: 0;
 box-sizing: border-box;
}

:root {
 --primary-red: #FF0000;
 --primary-yellow: #FFFF00;
 --primary-green: #00FF00;
 --window-bg: #C0C0C0;
 --white: #FFFFFF;
 --black: #000000;
 --gray: #808080;
 --light-gray: #DFDFDF;
 --dark-gray: #404040;
 --blue: #000080;
}

body {
 font-family: "MS Sans Serif", "Microsoft Sans Serif", sans-serif;
 background: #008080;
 color: var(--black);
 padding: 20px;
 min-height: 100vh;
 display: flex;
 align-items: center;
 justify-content: center;
}

.window {
 max-width: 900px;
 width: 100%;
 background: var(--window-bg);
 border: 2px outset var(--white);
 box-shadow: 4px 4px 0 rgba(0,0,0,0.5);
}

.title-bar {
 background: linear-gradient(90deg, var(--blue) 0%, #1084D0 100%);
 padding: 3px 5px;
 display: flex;
 justify-content: space-between;
 align-items: center;
 color: var(--white);
 font-weight: bold;
 font-size: 14px;
}

.title-bar-text {
 font-weight: bold;
 letter-spacing: 0;
 padding-left: 3px;
}

.title-bar-controls {
 display: flex;
 gap: 2px;
}

.title-bar-controls button {
 width: 18px;
 height: 16px;
 background: var(--window-bg);
 border: 1px outset var(--white);
 cursor: pointer;
 font-size: 10px;
 display: flex;
 align-items: center;
 justify-content: center;
}

.title-bar-controls button:active {
 border-style: inset;
}

.title-bar-controls button:nth-child(3) {
 background: #FF0000;
}

.menu-bar {
 background: var(--window-bg);
 display: flex;
 padding: 2px;
 border-bottom: 2px groove var(--white);
}

.menu-item {
 padding: 4px 8px;
 font-size: 13px;
 cursor: pointer;
 text-decoration: none;
 color: var(--black);
}

.menu-products {
 background: var(--primary-red);
 color: var(--white);
 font-weight: bold;
 margin-right: 10px;
}

.menu-products:hover {
 background: #CC0000;
 color: var(--white);
}

.products-banner {
 background: var(--window-bg);
 padding: 10px;
 text-align: center;
 border-bottom: 2px groove var(--white);
}

.window-body {
 padding: 20px;
 background: var(--white);
 min-height: 400px;
}

.hero {
 text-align: center;
 padding: 30px 20px;
}

.logo-container {
 margin-bottom: 20px;
}

.hero-logo {
 width: 64px;
 height: 64px;
 image-rendering: pixelated;
}

.hero h1 {
 font-size: 48px;
 font-weight: bold;
 margin-bottom: 10px;
 color: var(--black);
}

.tagline {
 font-size: 18px;
 margin-bottom: 30px;
 color: var(--dark-gray);
}

.button-group {
 display: flex;
 gap: 15px;
 justify-content: center;
 margin-bottom: 30px;
 flex-wrap: wrap;
}

.btn {
 padding: 8px 20px;
 font-family: "MS Sans Serif", sans-serif;
 font-size: 14px;
 font-weight: bold;
 background: var(--window-bg);
 border: 2px outset var(--white);
 cursor: pointer;
 text-decoration: none;
 color: var(--black);
 display: inline-flex;
 align-items: center;
 gap: 8px;
 box-shadow: 1px 1px 0 var(--black);
}

.btn:hover {
 background: var(--light-gray);
}

.btn:active {
 border-style: inset;
 box-shadow: none;
}

.btn-primary {
 background: var(--blue);
 color: var(--white);
 border-color: #4A90E2;
}

.btn-primary:hover {
 background: #0000A0;
}

.btn-block {
 width: 100%;
 justify-content: center;
}

.ui-box {
 background: var(--black);
 border: 2px inset var(--gray);
 padding: 0;
 margin: 20px auto;
 max-width: 600px;
}

.ui-image-container {
 position: relative;
 overflow: visible;
}

.ui-box.breed-mode {
 overflow: visible;
}

.heart {
 position: absolute;
 font-size: 24px;
 color: var(--primary-red);
 pointer-events: none;
 animation: heartFloat 3s ease-in-out infinite;
 image-rendering: pixelated;
 filter: contrast(1.5) saturate(1.5);
 text-shadow: 
  -1px -1px 0 var(--black),
  1px -1px 0 var(--black),
  -1px 1px 0 var(--black),
  1px 1px 0 var(--black);
}

@keyframes heartFloat {
 0%, 100% {
  transform: translateY(0) scale(1);
  opacity: 1;
 }
 50% {
  transform: translateY(-20px) scale(1.2);
  opacity: 0.8;
 }
}

.ui-header {
 background: var(--window-bg);
 padding: 4px 8px;
 font-size: 12px;
 border-bottom: 2px groove var(--white);
}

.ui-image {
 width: 100%;
 display: block;
}

.separator {
 border: 0;
 border-top: 2px groove var(--gray);
 margin: 30px 0;
}

.section {
 margin: 30px 0;
}

.section h2 {
 font-size: 24px;
 margin-bottom: 20px;
 padding: 8px;
 background: var(--window-bg);
 border: 2px outset var(--white);
 text-align: center;
}

.pricing-grid {
 display: grid;
 grid-template-columns: repeat(2, 1fr);
 gap: 40px;
 max-width: 1040px;
 margin: 0 auto;
}

.pricing-card {
 background: var(--window-bg);
 border: 2px outset var(--white);
 padding: 0;
}

.pricing-card.featured {
 border: 4px outset #FFD700;
 position: relative;
}

.pricing-card.featured::before {
 content: "⭐ popular";
 position: absolute;
 top: -15px;
 left: 50%;
 transform: translateX(-50%);
 background: #FFD700;
 padding: 4px 12px;
 font-weight: bold;
 font-size: 11px;
 border: 2px outset var(--white);
}

.pricing-header {
 background: var(--blue);
 color: var(--white);
 padding: 20px;
 text-align: center;
 border-bottom: 2px groove var(--white);
}

.pricing-logo {
 width: 48px;
 height: 48px;
 margin-bottom: 10px;
 image-rendering: pixelated;
}

.pricing-header h3 {
 font-size: 20px;
 margin-bottom: 10px;
}

.price {
 font-size: 36px;
 font-weight: bold;
 margin-bottom: 5px;
}

.price-period {
 font-size: 12px;
 opacity: 0.9;
}

.pricing-body {
 padding: 20px;
 background: var(--white);
}

.pricing-body .feature {
 padding: 8px 0;
 font-size: 14px;
}

.pricing-card .btn {
 margin: 0 auto 15px auto;
 display: block;
 width: calc(100% - 30px);
 margin-left: 15px;
 margin-right: 15px;
}

.footer {
 text-align: center;
 padding: 20px;
 color: var(--gray);
 font-size: 12px;
}

.footer p {
 margin: 5px 0;
}

.modal-overlay {
 position: fixed;
 inset: 0;
 background: rgba(0,0,0,0.7);
 display: none;
 align-items: center;
 justify-content: center;
 z-index: 10000;
}

.modal-overlay.active {
 display: flex;
}

.modal-window {
 width: 90%;
 max-width: 500px;
 background: var(--window-bg);
 border: 2px outset var(--white);
 box-shadow: 4px 4px 0 rgba(0,0,0,0.5);
}

.modal-body {
 padding: 20px;
 background: var(--white);
}

.modal-title {
 font-weight: bold;
 margin-bottom: 10px;
 font-size: 14px;
}

.modal-warning {
 background: #FFFFCC;
 border: 2px inset var(--gray);
 padding: 10px;
 margin-bottom: 15px;
 font-size: 12px;
}

.payment-grid {
 display: grid;
 grid-template-columns: repeat(2, 1fr);
 gap: 10px;
}

.payment-item {
 background: var(--window-bg);
 border: 2px outset var(--white);
 padding: 15px;
 text-align: center;
 cursor: pointer;
 text-decoration: none;
 color: var(--black);
 display: flex;
 flex-direction: column;
 align-items: center;
 gap: 8px;
}

.payment-item:hover {
 background: var(--light-gray);
}

.payment-item:active {
 border-style: inset;
}

.payment-item img {
 width: 40px;
 height: 40px;
 object-fit: contain;
}

.payment-item span {
 font-size: 12px;
 font-weight: bold;
}

.close-modal {
 background: #FF0000 !important;
}

.fullscreen-overlay {
 position: fixed;
 inset: 0;
 background: rgba(0, 0, 0, 0.95);
 display: none;
 align-items: center;
 justify-content: center;
 z-index: 20000;
}

.fullscreen-overlay.active {
 display: flex;
}

.fullscreen-close {
 position: absolute;
 top: 20px;
 right: 20px;
 width: 40px;
 height: 40px;
 background: var(--primary-red);
 border: 2px outset var(--white);
 color: var(--white);
 font-size: 24px;
 cursor: pointer;
 display: flex;
 align-items: center;
 justify-content: center;
 z-index: 20001;
}

.fullscreen-close:hover {
 background: #CC0000;
}

.fullscreen-close:active {
 border-style: inset;
}

.fullscreen-image {
 max-width: 90%;
 max-height: 90%;
 object-fit: contain;
 border: 2px outset var(--white);
}

.cta-section {
 max-width: 600px;
 margin: 30px auto;
}

@media (max-width: 768px) {
 body {
  padding: 10px;
 }

 .window {
  border-width: 1px;
 }

 .hero h1 {
  font-size: 32px;
 }

 .tagline {
  font-size: 14px;
 }

 .button-group {
  flex-direction: column;
 }

 .btn {
  width: 100%;
  justify-content: center;
 }

 .ui-box {
  max-width: 100%;
 }

 .script-box {
  max-width: 100%;
 }

 .script-content {
  flex-direction: column;
 }

 .btn-copy {
  width: 100%;
 }

 .fullscreen-close {
  top: 10px;
  right: 10px;
  width: 35px;
  height: 35px;
  font-size: 20px;
 }

 .section h2 {
  font-size: 18px;
 }

 .pricing-grid {
  grid-template-columns: 1fr;
  gap: 20px;
 }

 .payment-grid {
  grid-template-columns: repeat(2, 1fr);
 }
}

@media (max-width: 480px) {
 .title-bar {
  font-size: 12px;
 }

 .menu-item {
  font-size: 11px;
  padding: 4px 6px;
 }

 .window-body {
  padding: 15px;
 }

 .payment-item img {
  width: 32px;
  height: 32px;
 }

 .payment-item span {
  font-size: 11px;
 }
}