/* ============================================
   1Win — Pure CSS (Tailwind replacement)
   ============================================ */

/* --- RESET & BASE --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Montserrat', sans-serif;
  background: #090F1E;
  color: #d1d5db;
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; background: none; border: none; font-family: inherit; }
table { width: 100%; }

/* --- SCROLLBAR --- */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #090F1E; }
::-webkit-scrollbar-thumb { background: #288ff2; border-radius: 4px; }

/* --- COLORS --- */
.text-white { color: #fff; }
.text-gray-200 { color: #e5e7eb; }
.text-gray-300 { color: #d1d5db; }
.text-gray-400 { color: #9ca3af; }
.text-gray-500 { color: #6b7280; }
.text-accent { color: #288ff2; }
.text-green { color: #61CE70; }
.text-yellow-400 { color: #facc15; }
.text-purple-400 { color: #c084fc; }
.text-red-400 { color: #f87171; }
.text-red-500 { color: #ef4444; }

.bg-dark { background-color: #090F1E; }
.bg-darkCard { background-color: #0E1629; }

/* --- TYPOGRAPHY --- */
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-extrabold { font-weight: 800; }
.font-black { font-weight: 900; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
.text-center { text-align: center; }
.text-left { text-align: left; }
.leading-tight { line-height: 1.25; }
.leading-relaxed { line-height: 1.75; }
.tracking-wider { letter-spacing: 0.05em; }
.italic { font-style: italic; }
.uppercase { text-transform: uppercase; }

/* --- LAYOUT --- */
.container { width: 100%; margin-left: auto; margin-right: auto; padding-left: 1rem; padding-right: 1rem; }
.max-w-7xl { max-width: 80rem; margin-left: auto; margin-right: auto; }
.max-w-5xl { max-width: 64rem; margin-left: auto; margin-right: auto; }
.max-w-4xl { max-width: 56rem; margin-left: auto; margin-right: auto; }
.max-w-lg { max-width: 32rem; }
.max-w-md { max-width: 28rem; }
.max-w-sm { max-width: 24rem; }
.max-w-none { max-width: none; }
.w-full { width: 100%; }
.w-auto { width: auto; }
.w-12 { width: 3rem; }
.w-14 { width: 3.5rem; }
.h-10 { height: 2.5rem; }
.h-12 { height: 3rem; }
.h-14 { height: 3.5rem; }
.min-h-screen { min-height: 100vh; }

/* --- FLEXBOX --- */
.flex { display: flex; }
.inline-flex { display: inline-flex; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-5 { gap: 1.25rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-12 { gap: 3rem; }

/* --- GRID --- */
.grid { display: grid; }
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }

/* --- SPACING --- */
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-2\.5 { padding-top: 0.625rem; padding-bottom: 0.625rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-10 { padding-top: 2.5rem; padding-bottom: 2.5rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.p-4 { padding: 1rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.pt-20 { padding-top: 5rem; }
.pt-24 { padding-top: 6rem; }
.pb-6 { padding-bottom: 1.5rem; }
.pb-20 { padding-bottom: 5rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-14 { margin-bottom: 3.5rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-10 { margin-top: 2.5rem; }
.mt-16 { margin-top: 4rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.my-10 { margin-top: 2.5rem; margin-bottom: 2.5rem; }
.mr-2 { margin-right: 0.5rem; }
.space-y-1 > * + * { margin-top: 0.25rem; }
.space-y-2 > * + * { margin-top: 0.5rem; }
.space-y-4 > * + * { margin-top: 1rem; }

/* --- POSITIONING --- */
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.top-0 { top: 0; }
.left-0 { left: 0; }
.right-0 { right: 0; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.z-10 { z-index: 10; }
.z-50 { z-index: 50; }

/* --- BORDERS --- */
.border { border: 1px solid #1A2340; }
.border-t { border-top: 1px solid #1A2340; }
.border-b { border-bottom: 1px solid #1A2340; }
.border-darkBorder { border-color: #1A2340; }
.border-accent-30 { border-color: rgba(40,143,242,0.3); }
.border-green-30 { border-color: rgba(97,206,112,0.3); }
.border-red-500 { border-color: #ef4444; }
.border-2 { border-width: 2px; }
.rounded-lg { border-radius: 0.5rem; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-tl-2xl { border-top-left-radius: 1rem; }
.rounded-tr-2xl { border-top-right-radius: 1rem; }

/* --- DISPLAY --- */
.hidden { display: none; }
.block { display: block; }
.inline-block { display: inline-block; }
.overflow-hidden { overflow: hidden; }
.overflow-x-auto { overflow-x: auto; }
.opacity-10 { opacity: 0.1; }

/* --- SHADOWS --- */
.shadow-2xl { box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25); }
.drop-shadow-2xl { filter: drop-shadow(0 25px 25px rgba(0,0,0,0.15)); }

/* --- TRANSITIONS --- */
.transition-colors { transition: color 0.15s ease; }

/* --- HOVER UTILITIES --- */
.hover-text-accent:hover { color: #288ff2; }
.hover-underline:hover { text-decoration: underline; }

/* --- LIST --- */
.list-disc { list-style-type: disc; }
.pl-6 { padding-left: 1.5rem; }

/* ============================================
   COMPONENT STYLES
   ============================================ */

/* --- HEADER --- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  background: rgba(9,15,30,0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid #1A2340;
}
.site-header .header-inner {
  max-width: 80rem; margin: 0 auto;
  padding: 0.75rem 1rem;
  display: flex; align-items: center; justify-content: space-between;
}
.site-header .logo { height: 2.5rem; width: auto; }
.site-header .desktop-nav { display: none; align-items: center; gap: 1.5rem; }
.site-header .nav-link { color: #d1d5db; font-weight: 500; transition: color 0.15s ease; }
.site-header .nav-link:hover { color: #288ff2; }
.site-header .nav-link.active { color: #288ff2; font-weight: 600; }
.site-header .header-cta { display: none; }
.site-header .mobile-toggle { color: #fff; font-size: 1.5rem; }
.mobile-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
  background: #0E1629;
  border-top: 1px solid #1A2340;
}
.mobile-menu nav {
  display: flex; flex-direction: column;
  padding: 1rem; gap: 0.75rem;
}

/* --- HERO --- */
.hero-bg {
  background: linear-gradient(135deg, #090F1E 0%, #0E1629 50%, #131d3a 100%);
}
.hero-section {
  min-height: 100vh; display: flex; align-items: center;
  padding-top: 5rem; position: relative; overflow: hidden;
}
.hero-bg-image {
  position: absolute; top: 0; right: 0; bottom: 0; left: 0;
  opacity: 0.1;
  background-size: contain; background-position: right center; background-repeat: no-repeat;
}
.hero-grid {
  max-width: 80rem; margin: 0 auto; padding: 5rem 1rem;
  position: relative; z-index: 10;
  display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center;
}
.hero-image-wrap { display: none; justify-content: center; }
.hero-image { max-width: 28rem; width: 100%; filter: drop-shadow(0 25px 25px rgba(0,0,0,0.15)); }
.promo-box {
  display: inline-block;
  background: #0E1629;
  border: 2px solid #ef4444;
  border-radius: 0.75rem;
  padding: 0.75rem 1.5rem;
  margin-bottom: 2rem;
}
.promo-code { color: #ef4444; font-size: 1.875rem; font-weight: 900; letter-spacing: 0.05em; }

/* --- GLASS CARD --- */
.glass-card {
  background: rgba(14,22,41,0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(40,143,242,0.15);
}

/* --- GRADIENT BORDER --- */
.gradient-border { border-image: linear-gradient(135deg, #288ff2, #61CE70) 1; }

/* --- BUTTONS --- */
.btn-primary {
  background: linear-gradient(135deg, #288ff2, #1a7de0);
  color: #fff; transition: all 0.3s ease;
  display: inline-flex; align-items: center; justify-content: center;
}
.btn-primary:hover {
  background: linear-gradient(135deg, #1a7de0, #1565c0);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(40,143,242,0.4);
}
.btn-green {
  background: linear-gradient(135deg, #61CE70, #4CAF50);
  color: #fff; transition: all 0.3s ease;
  display: inline-flex; align-items: center; justify-content: center;
}
.btn-green:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(97,206,112,0.4);
}

/* --- FEATURE CARD --- */
.feature-card { transition: all 0.3s ease; }
.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(40,143,242,0.2);
}

/* --- ICON BOXES --- */
.icon-box {
  width: 3.5rem; height: 3.5rem;
  border-radius: 0.75rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
}
.icon-box-sm {
  width: 3rem; height: 3rem;
  border-radius: 0.75rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
}
.icon-box-accent { background: rgba(40,143,242,0.2); }
.icon-box-green { background: rgba(97,206,112,0.2); }
.icon-box-yellow { background: rgba(234,179,8,0.2); }
.icon-box-purple { background: rgba(168,85,247,0.2); }
.icon-box-red { background: rgba(239,68,68,0.2); }

/* --- BONUS CARDS --- */
.bonus-card-blue {
  border-radius: 1rem; padding: 2rem;
  background: linear-gradient(to bottom right, rgba(40,143,242,0.2), rgba(30,58,138,0.3));
  border: 1px solid rgba(40,143,242,0.3);
}
.bonus-card-green {
  border-radius: 1rem; padding: 2rem;
  background: linear-gradient(to bottom right, rgba(97,206,112,0.2), rgba(6,78,59,0.3));
  border: 1px solid rgba(97,206,112,0.3);
}

/* --- SECTION BACKGROUNDS --- */
.bg-gradient-dark {
  background: linear-gradient(to bottom, #090F1E, #0E1629);
}

/* --- TABLE --- */
.info-table { border-collapse: separate; border-spacing: 0; width: 100%; font-size: 0.875rem; }
.info-table thead th {
  background: linear-gradient(135deg, #288ff2, #1a7de0);
  padding: 1rem 1.5rem;
  text-align: left; color: #fff; font-weight: 600;
}
.info-table thead th:first-child { border-top-left-radius: 1rem; }
.info-table thead th:last-child { border-top-right-radius: 1rem; }
.info-table tbody td { padding: 0.75rem 1.5rem; }
.info-table tbody tr { border-top: 1px solid #1A2340; }
.info-table tbody tr:first-child { border-top: none; }
.info-table tbody tr:nth-child(even) { background: rgba(40,143,242,0.05); }
.info-table tbody tr:hover { background: rgba(40,143,242,0.1); }
.info-table .td-center { text-align: center; }

/* --- TEXT GRADIENT --- */
.text-gradient {
  background: linear-gradient(135deg, #288ff2, #61CE70);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* --- FAQ --- */
.faq-item { overflow: hidden; }
.faq-btn {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 1.5rem; text-align: left; cursor: pointer;
  background: none; border: none; font-family: inherit;
}
.faq-btn .question { color: #fff; font-weight: 600; font-size: 1.125rem; }
.faq-icon { color: #288ff2; font-size: 1.5rem; transition: transform 0.3s ease; }
.faq-icon.open { transform: rotate(45deg); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 1.5rem;
  color: #d1d5db;
}
.faq-answer.open {
  max-height: 600px;
  padding: 1rem 1.5rem 1.5rem;
}

/* --- PROSE (article content) --- */
.prose { color: #d1d5db; font-size: 1.125rem; line-height: 1.75; }
.prose p { margin-bottom: 1rem; }
.prose h2 { color: #fff; font-size: 1.875rem; font-weight: 700; margin-top: 4rem; margin-bottom: 2rem; }
.prose h3 { color: #fff; font-size: 1.25rem; font-weight: 700; margin-top: 2rem; margin-bottom: 0.5rem; }
.prose ul { list-style-type: disc; padding-left: 1.5rem; margin-bottom: 1rem; }
.prose ul li { margin-bottom: 0.5rem; }
.prose a { color: #288ff2; }
.prose a:hover { text-decoration: underline; }
.prose strong { color: #e5e7eb; }
.prose img { margin: 0 auto 2rem; border-radius: 1rem; }

/* --- FOOTER --- */
.site-footer {
  padding: 2.5rem 0;
  background: #0E1629;
  border-top: 1px solid #1A2340;
  text-align: center;
}
.site-footer .footer-logo { height: 2.5rem; width: auto; margin: 0 auto 1rem; }
.site-footer .copyright { color: #6b7280; font-size: 0.875rem; }

/* --- REVIEW GRID --- */
.review-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }

/* ============================================
   RESPONSIVE — sm (640px)
   ============================================ */
@media (min-width: 640px) {
  .sm-inline-flex { display: inline-flex; }
  .sm-grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .site-header .header-cta { display: inline-flex; }
}

/* ============================================
   RESPONSIVE — md (768px)
   ============================================ */
@media (min-width: 768px) {
  .site-header .desktop-nav { display: flex; }
  .site-header .mobile-toggle { display: none; }
  .md-hidden { display: none !important; }
  .md-grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .md-grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .md-text-5xl { font-size: 3rem; line-height: 1; }
  .md-text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
  .md-text-2xl { font-size: 1.5rem; line-height: 2rem; }
  .review-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================
   RESPONSIVE — lg (1024px)
   ============================================ */
@media (min-width: 1024px) {
  .lg-grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .lg-grid-cols-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }
  .lg-text-6xl { font-size: 3.75rem; line-height: 1; }
  .hero-grid { grid-template-columns: 1fr 1fr; }
  .hero-image-wrap { display: flex; }
}
