@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --fight-red: #E50914;
  --fight-black: #000000;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --yellow-400: #facc15;
  --green-500: #22c55e;
  --blue-500: #3b82f6;
  --purple-500: #a855f7;
  --red-500: #ef4444;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background-color: var(--fight-black);
  color: white;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Container */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 900;
  line-height: 1.2;
}

.text-4xl { font-size: 2.25rem; }
.text-5xl { font-size: 3rem; }
.text-6xl { font-size: 3.75rem; }
.text-2xl { font-size: 1.5rem; }
.text-xl { font-size: 1.25rem; }
.text-lg { font-size: 1.125rem; }
.text-sm { font-size: 0.875rem; }
.text-xs { font-size: 0.75rem; }

.font-black { font-weight: 900; }
.font-bold { font-weight: 700; }
.font-semibold { font-weight: 600; }
.font-medium { font-weight: 500; }

.text-fight-red { color: var(--fight-red); }
.text-gray-300 { color: var(--gray-300); }
.text-gray-400 { color: var(--gray-400); }
.text-gray-500 { color: var(--gray-500); }
.text-white { color: white; }
.text-green-500 { color: var(--green-500); }
.text-yellow-500 { color: var(--yellow-400); }
.text-blue-500 { color: var(--blue-500); }
.text-purple-500 { color: var(--purple-500); }
.text-red-500 { color: var(--red-500); }

/* Layout */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.space-x-2 > * + * { margin-left: 0.5rem; }
.space-x-4 > * + * { margin-left: 1rem; }
.space-y-2 > * + * { margin-top: 0.5rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }
.space-y-8 > * + * { margin-top: 2rem; }

.grid { display: grid; }
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.gap-2 { gap: 0.5rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }

/* Spacing */
.p-2 { padding: 0.5rem; }
.p-4 { padding: 1rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mt-4 { margin-top: 1rem; }
.mt-12 { margin-top: 3rem; }

/* Background */
.bg-black { background-color: var(--fight-black); }
.bg-black\/50 { background-color: rgba(0, 0, 0, 0.5); }
.bg-fight-red { background-color: var(--fight-red); }
.bg-fight-red\/10 { background-color: rgba(229, 9, 20, 0.1); }
.bg-fight-red\/20 { background-color: rgba(229, 9, 20, 0.2); }
.bg-fight-red\/30 { background-color: rgba(229, 9, 20, 0.3); }
.bg-fight-red\/90 { background-color: rgba(229, 9, 20, 0.9); }

/* Borders */
.border { border-width: 1px; border-style: solid; }
.border-2 { border-width: 2px; }
.border-fight-red { border-color: var(--fight-red); }
.border-fight-red\/20 { border-color: rgba(229, 9, 20, 0.2); }
.border-fight-red\/30 { border-color: rgba(229, 9, 20, 0.3); }
.border-fight-red\/50 { border-color: rgba(229, 9, 20, 0.5); }
.border-gray-700 { border-color: var(--gray-700); }

.rounded { border-radius: 0.25rem; }
.rounded-lg { border-radius: 0.5rem; }
.rounded-full { border-radius: 9999px; }

/* Buttons */
button, .btn {
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  outline: none;
}

.btn-primary {
  background-color: var(--fight-red);
  color: white;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  font-weight: 700;
  font-size: 1.125rem;
}

.btn-primary:hover {
  background-color: rgba(229, 9, 20, 0.9);
  transform: scale(1.05);
}

.btn-secondary {
  background-color: transparent;
  color: white;
  border: 1px solid rgba(229, 9, 20, 0.2);
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  font-weight: 700;
}

.btn-secondary:hover {
  border-color: var(--fight-red);
}

/* Glow effect */
.glow-red {
  box-shadow: 0 0 20px rgba(229, 9, 20, 0.5);
}

/* Links */
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--fight-red);
}

/* Forms */
input, textarea, select {
  width: 100%;
  background-color: var(--fight-black);
  border: 1px solid rgba(229, 9, 20, 0.2);
  border-radius: 0.5rem;
  padding: 0.75rem 1rem;
  color: white;
  font-family: inherit;
  font-size: 1rem;
}

input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--fight-red);
}

/* Utilities */
.text-center { text-align: center; }
.text-right { text-align: right; }
.w-full { width: 100%; }
.h-full { height: 100%; }
.min-h-screen { min-height: 100vh; }
.max-w-2xl { max-width: 42rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-6xl { max-width: 72rem; }

.opacity-50 { opacity: 0.5; }
.opacity-80 { opacity: 0.8; }

.line-through { text-decoration: line-through; }

.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.sticky { position: sticky; }
.top-0 { top: 0; }
.top-24 { top: 6rem; }
.z-50 { z-index: 50; }

.overflow-hidden { overflow: hidden; }

/* Header */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  background-color: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(229, 9, 20, 0.2);
}

/* Hero Section */
.hero-section {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  z-index: 50;
  background: linear-gradient(to bottom right, #000, #000, rgba(229, 9, 20, 0.2));
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
}

.hero-symbol {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 300px;
  font-weight: 900;
  color: rgba(229, 9, 20, 0.2);
  user-select: none;
  pointer-events: none;
}

/* Products Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
}

.product-card {
  background-color: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(229, 9, 20, 0.2);
  border-radius: 0.5rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

.product-card:hover {
  border-color: var(--fight-red);
}

.product-image {
  width: 100%;
  aspect-ratio: 1;
  background-size: cover;
  background-position: center;
  transition: transform 0.3s ease;
}

.product-card:hover .product-image {
  transform: scale(1.1);
}

/* Cart Badge */
.cart-badge {
  position: absolute;
  top: -0.25rem;
  right: -0.25rem;
  background-color: var(--fight-red);
  color: white;
  font-size: 0.75rem;
  border-radius: 9999px;
  width: 1.25rem;
  height: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Mobile Menu */
.mobile-menu {
  display: none;
}

@media (max-width: 768px) {
  .mobile-menu {
    display: block;
  }
  
  .desktop-nav {
    display: none;
  }
  
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .text-5xl { font-size: 2.25rem; }
  .text-6xl { font-size: 3rem; }
  
  .grid-cols-2 { grid-template-columns: repeat(1, 1fr); }
  .grid-cols-3 { grid-template-columns: repeat(1, 1fr); }
  .grid-cols-4 { grid-template-columns: repeat(2, 1fr); }
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #000;
}

::-webkit-scrollbar-thumb {
  background: var(--fight-red);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #B20710;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeIn 0.6s ease-out;
}

/* Status badges */
.status-badge {
  padding: 0.25rem 0.75rem;
  border-radius: 0.25rem;
  font-size: 0.875rem;
  font-weight: 500;
}

.status-pending {
  background-color: rgba(234, 179, 8, 0.2);
  color: var(--yellow-400);
}

.status-processing {
  background-color: rgba(59, 130, 246, 0.2);
  color: var(--blue-500);
}

.status-shipped {
  background-color: rgba(168, 85, 247, 0.2);
  color: var(--purple-500);
}

.status-delivered {
  background-color: rgba(34, 197, 94, 0.2);
  color: var(--green-500);
}

.status-cancelled {
  background-color: rgba(239, 68, 68, 0.2);
  color: var(--red-500);
}

