/* Rules Page Specific Styles */
:root {
  /* Core Brand Colors */
  --midnight-void: #0a0b1a;
  --royal-sapphire: #1a1fff;
  --imperial-purple: #2d0a5a;
  --emerald-luxury: #00cc99;
  --gold-premium: #ffd700;
  --platinum-elite: #f0f0f0;
  --onyx-dark: #0d0d1a;
  --slate-premium: #1a1a2e;
  --charcoal-rich: #2d2d44;
  --warning-amber: #ffb800;
  --success-emerald: #00ffa3;
  --electric-indigo: #1a1ffd;
  --liquid-mercury: #c2c2d6;
  --pure-snow: #ffffff;
  
  /* Gradient Systems */
  --gradient-hero: linear-gradient(135deg, var(--midnight-void) 0%, var(--royal-sapphire) 100%);
  --gradient-section-01: linear-gradient(135deg, var(--slate-premium) 0%, var(--charcoal-rich) 100%);
  --gradient-section-02: linear-gradient(135deg, var(--midnight-void) 0%, var(--royal-sapphire) 100%);
  --gradient-card: linear-gradient(135deg, var(--onyx-dark) 0%, var(--slate-premium) 100%);
  --gradient-button-primary: linear-gradient(135deg, var(--royal-sapphire) 0%, var(--imperial-purple) 100%);
  --gradient-button-gold: linear-gradient(135deg, var(--gold-premium) 0%, #ffaa00 100%);
  
  /* Typography System */
  --font-display: 'Clash Display', 'Unica One', 'Helvetica Neue', sans-serif;
  --font-heading: 'Clash Display', 'Unica One', 'Helvetica Neue', sans-serif;
  --font-body: 'Satoshi', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  --font-mono: 'Space Grotesk', 'Fira Code', 'Monaco', monospace;
  
  /* Shadow System */
  --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 15px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 20px 25px rgba(0, 0, 0, 0.15);
  --shadow-xl: 0 25px 50px rgba(0, 0, 0, 0.25);
  --shadow-2xl: 0 50px 100px rgba(0, 0, 0, 0.3);
}

/* Reset & Base Styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--midnight-void);
  color: var(--platinum-elite);
  line-height: 1.6;
  font-weight: 400;
  overflow-x: hidden;
  position: relative;
}

.container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Navigation System */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(10, 11, 26, 0.95);
  backdrop-filter: blur(20px);
  z-index: 100;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
}

.navbar.scrolled {
  padding: 1rem 0;
  background: rgba(10, 11, 26, 0.98);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo a {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--emerald-luxury);
  text-decoration: none;
  letter-spacing: -0.04em;
  position: relative;
  padding-left: 1.75rem;
  transition: all 0.2s ease;
}

.logo a:hover {
  color: var(--gold-premium);
}

.logo a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1rem;
  height: 1rem;
  background: var(--emerald-luxury);
  border-radius: 50%;
  box-shadow: 0 0 15px var(--emerald-luxury);
  transition: all 0.2s ease;
}

.logo a:hover::before {
  background: var(--gold-premium);
  box-shadow: 0 0 20px var(--gold-premium);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2.5rem;
}

.nav-links a {
  color: var(--platinum-elite);
  text-decoration: none;
  font-weight: 500;
  font-size: 1.1rem;
  transition: all 0.2s ease;
  position: relative;
  padding: 0.5rem 0;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--emerald-luxury);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--emerald-luxury);
  transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  border: none;
  position: relative;
  overflow: hidden;
  z-index: 1;
  min-height: 56px;
  min-width: 180px;
  text-align: center;
}

.btn-primary {
  background: var(--gradient-button-primary);
  color: white;
  box-shadow: var(--shadow-lg);
}

.btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: 0.6s;
  z-index: -1;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-secondary {
  background: transparent;
  color: var(--platinum-elite);
  border: 2px solid rgba(255, 255, 255, 0.25);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

/* Hero Section */
.rules-hero {
  padding: 180px 0 100px;
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(100, 100, 200, 0.1);
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 10% 20%, rgba(0, 204, 153, 0.1) 0%, transparent 25%),
    radial-gradient(circle at 80% 70%, rgba(26, 31, 255, 0.1) 0%, transparent 25%),
    radial-gradient(circle at 40% 40%, rgba(255, 215, 0, 0.05) 0%, transparent 30%);
  z-index: 1;
}

.hero-grid-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    linear-gradient(rgba(10, 11, 26, 0.95) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 11, 26, 0.95) 1px, transparent 1px);
  background-size: 30px 30px;
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-preheading {
  font-family: 'Space Grotesk', monospace;
  font-size: 1rem;
  font-weight: 600;
  color: #00cc99;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  position: relative;
  padding: 0.5rem 1.5rem;
  background: rgba(0, 204, 153, 0.1);
  border-radius: 30px;
  border: 1px solid rgba(0, 204, 153, 0.2);
}

.hero-preheading::before {
  content: '◆';
  color: #00cc99;
  margin-right: 0.75rem;
}

.hero-preheading::after {
  content: '◆';
  color: #00cc99;
  margin-left: 0.75rem;
}

.hero-main-heading {
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 1;
  margin-bottom: 1.75rem;
  background: linear-gradient(90deg, #ffffff 0%, #a0a0ff 50%, #00ffaa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.04em;
  text-shadow: 0 0 30px rgba(0, 204, 153, 0.2);
}

.hero-main-heading .highlight {
  background: linear-gradient(90deg, var(--gold-premium) 0%, #ffaa00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subheading {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  max-width: 800px;
  margin: 0 auto 3rem;
  color: #b0b0c0;
  line-height: 1.5;
  font-weight: 400;
}

.hero-stats {
  display: flex;
  gap: 3rem;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 900px;
}

.stat-item {
  text-align: center;
  min-width: 200px;
}

.stat-number {
  font-family: 'Space Grotesk', monospace;
  font-size: 3rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 1.1rem;
  color: #9090b0;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Rules Navigation */
.rules-navigation {
  background: linear-gradient(135deg, #0f0f23 0%, #1a1a3a 100%);
  padding: 1rem 0;
  position: sticky;
  top: 80px;
  z-index: 99;
  border-bottom: 1px solid rgba(100, 100, 200, 0.1);
}

.nav-tabs {
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.tab-btn {
  background: transparent;
  border: none;
  color: #b0b0c0;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.tab-btn::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: var(--emerald-luxury);
  border-radius: 3px;
  transition: all 0.3s ease;
}

.tab-btn:hover {
  color: #f0f0f0;
}

.tab-btn.active {
  color: var(--emerald-luxury);
  background: rgba(0, 204, 153, 0.1);
}

.tab-btn.active::after {
  width: 70%;
}

/* Section Header */
.section-header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 4rem;
  position: relative;
}

.section-header h2 {
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 800;
  margin-bottom: 1.5rem;
  background: linear-gradient(90deg, #ffffff 0%, #a0a0ff 50%, #00ffaa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.03em;
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, #00cc99, #1a1fff, #ffd700);
  border-radius: 2px;
}

.section-subheading {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  color: #b0b0c0;
  max-width: 750px;
  margin: 2rem auto 0;
  text-align: center;
  line-height: 1.7;
  font-weight: 400;
}

/* Rules Grid */
.rules-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  margin-bottom: 5rem;
}

.rule-card {
  background: linear-gradient(145deg, rgba(15, 15, 35, 0.85) 0%, rgba(25, 25, 50, 0.85) 100%);
  border-radius: 24px;
  padding: 2.5rem;
  border: 1px solid rgba(100, 100, 200, 0.2);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  backdrop-filter: blur(15px);
  box-shadow: 
    0 25px 45px rgba(0, 0, 0, 0.3),
    inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  z-index: 2;
  perspective: 1000px;
}

.rule-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #00cc99, #1a1fff, #ffd700);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  z-index: 3;
}

.rule-card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: rgba(100, 100, 200, 0.4);
  box-shadow: 
    0 35px 60px rgba(0, 0, 0, 0.4),
    inset 0 0 0 1px rgba(255, 255, 255, 0.15);
}

.rule-card:hover::before {
  transform: scaleX(1);
}

.rule-icon-container {
  width: 80px;
  height: 80px;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  position: relative;
  z-index: 2;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.rule-icon-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1a1fff 0%, #2d0a5a 100%);
  border-radius: 24px;
  z-index: -1;
  box-shadow: 0 15px 30px rgba(26, 31, 255, 0.4);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.rule-icon-container::after {
  content: '';
  position: absolute;
  top: 5px;
  left: 5px;
  width: calc(100% - 10px);
  height: calc(100% - 10px);
  background: linear-gradient(135deg, #0f0f23 0%, #1a1a35 100%);
  border-radius: 19px;
  z-index: -1;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.rule-card:hover .rule-icon-container::before {
  box-shadow: 0 20px 40px rgba(26, 31, 255, 0.6);
  transform: scale(1.05);
}

.rule-card:hover .rule-icon-container::after {
  transform: scale(0.95);
}

.rule-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--royal-sapphire) 0%, var(--imperial-purple) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  color: white;
  box-shadow: 0 5px 15px rgba(26, 31, 255, 0.5);
  z-index: 2;
}

.rule-card h3 {
  margin-bottom: 1.25rem;
  font-size: 1.75rem;
  font-weight: 700;
  color: #f0f0f0;
  letter-spacing: -0.02em;
  position: relative;
  padding-bottom: 1rem;
}

.rule-card h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #00cc99, transparent);
  border-radius: 2px;
}

.rule-card p {
  margin-bottom: 1.5rem;
  flex-grow: 1;
  color: #b8b8d0;
  line-height: 1.7;
  font-size: 1.1rem;
  font-weight: 400;
}

.rule-example {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 16px;
  padding: 1.25rem;
  border: 1px solid rgba(100, 100, 200, 0.1);
}

.example-label {
  font-size: 0.9rem;
  color: #9090b0;
  margin-bottom: 0.5rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.example-content {
  font-family: var(--font-mono);
  font-size: 0.95rem;
  color: #00cc99;
  line-height: 1.5;
}

.rule-details {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.detail-item {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(100, 100, 200, 0.1);
}

.detail-item:last-child {
  border-bottom: none;
}

.detail-label {
  color: #9090b0;
  font-weight: 500;
}

.detail-value {
  color: #f0f0f0;
  font-weight: 600;
}

/* Rules Philosophy */
.rules-philosophy {
  background: linear-gradient(145deg, rgba(15, 15, 35, 0.7) 0%, rgba(25, 25, 50, 0.7) 100%);
  border-radius: 24px;
  padding: 3rem;
  border: 1px solid rgba(100, 100, 200, 0.15);
  backdrop-filter: blur(15px);
  box-shadow: 
    0 25px 45px rgba(0, 0, 0, 0.3),
    inset 0 0 0 1px rgba(255, 255, 255, 0.1);
  margin-bottom: 5rem;
}

.philosophy-content h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #f0f0f0;
  margin-bottom: 1.5rem;
  text-align: center;
}

.philosophy-content p {
  color: #b8b8d0;
  font-size: 1.2rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.philosophy-content ul {
  list-style: none;
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.philosophy-content li {
  padding: 1.25rem;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 16px;
  border: 1px solid rgba(100, 100, 200, 0.1);
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.1rem;
  color: #b8b8d0;
  line-height: 1.6;
}

.philosophy-content li::before {
  content: '✓';
  color: var(--emerald-luxury);
  font-weight: bold;
  font-size: 1.5rem;
  flex-shrink: 0;
}

/* Profit Cap Rule Explanation */
.profit-cap-explanation {
  background: linear-gradient(145deg, rgba(15, 15, 35, 0.7) 0%, rgba(25, 25, 50, 0.7) 100%);
  border-radius: 24px;
  padding: 3rem;
  border: 1px solid rgba(100, 100, 200, 0.15);
  backdrop-filter: blur(15px);
  box-shadow: 
    0 25px 45px rgba(0, 0, 0, 0.3),
    inset 0 0 0 1px rgba(255, 255, 255, 0.1);
  margin-bottom: 5rem;
  border-top: 3px solid rgba(255, 184, 0, 0.5);
  box-shadow: 
    0 -8px 20px -5px rgba(255, 184, 0, 0.4),
    0 25px 45px rgba(0, 0, 0, 0.3),
    inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.explanation-content h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #f0f0f0;
  margin-bottom: 2rem;
  text-align: center;
  background: linear-gradient(90deg, #ffffff 0%, #ffb800 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.03em;
}

.explanation-content > p {
  color: #b8b8d0;
  font-size: 1.2rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.explanation-section {
  margin-bottom: 2.5rem;
}

.explanation-section h4 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #f0f0f0;
  margin-bottom: 1.5rem;
  text-align: center;
}

.explanation-section > p {
  color: #b8b8d0;
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.example-box {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid rgba(100, 100, 200, 0.1);
  max-width: 600px;
  margin: 0 auto;
}

.example-header {
  font-size: 1.2rem;
  color: #ffb800;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-align: center;
}

.example-details ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.example-details li {
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(100, 100, 200, 0.1);
  color: #b8b8d0;
  font-size: 1rem;
  line-height: 1.6;
}

.example-details li:last-child {
  border-bottom: none;
}

.reasons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 1.5rem;
}

.reason-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 16px;
  padding: 1.5rem;
  border: 1px solid rgba(100, 100, 200, 0.1);
}

.reason-icon {
  margin-bottom: 1rem;
  color: #00cc99;
}

.reason-icon svg {
  width: 32px;
  height: 32px;
}

.reason-content h5 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #f0f0f0;
  margin-bottom: 0.75rem;
}

.reason-content p {
  color: #b8b8d0;
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
}

.key-takeaway {
  background: rgba(255, 184, 0, 0.1);
  border-radius: 16px;
  padding: 1.5rem;
  border: 1px solid rgba(255, 184, 0, 0.2);
  margin-top: 2rem;
}

.key-takeaway p {
  color: #f0f0f0;
  font-size: 1.1rem;
  line-height: 1.6;
  margin: 0;
  text-align: center;
}

.key-takeaway strong {
  color: #ffb800;
  font-weight: 700;
}

/* Strategies Section */
.strategies-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, #0a0b1a 0%, #1a1fff 100%);
  position: relative;
  border-top: 1px solid rgba(100, 100, 200, 0.1);
}

.strategies-content {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.strategy-category {
  background: linear-gradient(145deg, rgba(15, 15, 35, 0.7) 0%, rgba(25, 25, 50, 0.7) 100%);
  border-radius: 24px;
  padding: 3rem;
  border: 1px solid rgba(100, 100, 200, 0.15);
  backdrop-filter: blur(15px);
  box-shadow: 
    0 25px 45px rgba(0, 0, 0, 0.3),
    inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.strategy-category.allowed {
  border-top: 3px solid rgba(0, 204, 153, 0.5);
  box-shadow: 
    0 -8px 20px -5px rgba(0, 204, 153, 0.4),
    0 25px 45px rgba(0, 0, 0, 0.3),
    inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.strategy-category.prohibited {
  border-top: 3px solid rgba(255, 184, 0, 0.5);
  box-shadow: 
    0 -8px 20px -5px rgba(255, 184, 0, 0.4),
    0 25px 45px rgba(0, 0, 0, 0.3),
    inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.category-title {
  font-size: 2.5rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 1rem;
  background: linear-gradient(90deg, #ffffff 0%, #a0a0ff 50%, #00ffaa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.03em;
  display: flex;
  align-items: center;
  justify-content: center;
}

.strategy-category.prohibited .category-title {
  background: linear-gradient(90deg, #ffffff 0%, #ffb800 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.category-description {
  font-size: 1.25rem;
  color: #b8b8d0;
  text-align: center;
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.strategy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.strategy-item {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid rgba(100, 100, 200, 0.1);
  transition: all 0.3s ease;
}

.strategy-item:hover {
  transform: translateY(-5px);
  border-color: rgba(100, 100, 200, 0.3);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.strategy-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  text-align: center;
  color: #00cc99;
}

.strategy-icon svg {
  width: 40px;
  height: 40px;
}

.strategy-item h4 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #f0f0f0;
  margin-bottom: 1rem;
  text-align: center;
}

.strategy-item p {
  color: #b8b8d0;
  line-height: 1.6;
  text-align: center;
}

/* Conditions Section */
.conditions-section {
  padding: 6rem 0;
  background: linear-gradient(165deg, #0f0f23 0%, #1a1a3a 100%);
  position: relative;
  border-top: 1px solid rgba(100, 100, 200, 0.1);
}

.conditions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.condition-card {
  background: linear-gradient(145deg, rgba(15, 15, 35, 0.7) 0%, rgba(25, 25, 50, 0.7) 100%);
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid rgba(100, 100, 200, 0.15);
  backdrop-filter: blur(15px);
  box-shadow: 
    0 15px 30px rgba(0, 0, 0, 0.3),
    inset 0 0 0 1px rgba(255, 255, 255, 0.1);
  text-align: center;
  transition: all 0.3s ease;
}

.condition-card:hover {
  transform: translateY(-8px);
  border-color: rgba(100, 100, 200, 0.3);
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.4),
    inset 0 0 0 1px rgba(255, 255, 255, 0.2);
}

.condition-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: #00cc99;
}

.condition-icon svg {
  width: 40px;
  height: 40px;
}

.condition-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #f0f0f0;
  margin-bottom: 1rem;
}

.condition-card p {
  color: #00cc99;
  font-family: var(--font-mono);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.payout-process {
  background: linear-gradient(145deg, rgba(15, 15, 35, 0.7) 0%, rgba(25, 25, 50, 0.7) 100%);
  border-radius: 24px;
  padding: 3rem;
  border: 1px solid rgba(100, 100, 200, 0.15);
  backdrop-filter: blur(15px);
  box-shadow: 
    0 25px 45px rgba(0, 0, 0, 0.3),
    inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.payout-process h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #f0f0f0;
  text-align: center;
  margin-bottom: 3rem;
}

.process-steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  min-width: 200px;
  position: relative;
}

.step:not(:last-child)::after {
  content: '→';
  position: absolute;
  right: -20px;
  top: 30px;
  font-size: 2rem;
  color: #9090b0;
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--royal-sapphire) 0%, var(--imperial-purple) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  color: white;
  box-shadow: 0 5px 15px rgba(26, 31, 255, 0.5);
  margin-bottom: 1.5rem;
}

.step-content h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #f0f0f0;
  margin-bottom: 0.5rem;
}

.step-content p {
  color: #b8b8d0;
  font-size: 1rem;
}

/* CTA Section */
.rules-cta {
  padding: 6rem 0;
  background: var(--gradient-section-02);
  text-align: center;
  position: relative;
  border-top: 1px solid rgba(100, 100, 200, 0.1);
}

.rules-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(255, 215, 0, 0.15) 0%, transparent 40%);
  z-index: 1;
}

.rules-cta .container {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.rules-cta h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: 1.5rem;
  background: linear-gradient(90deg, #ffffff 0%, #a0a0ff 50%, #00ffaa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.03em;
}

.cta-subheading {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  margin-bottom: 3rem;
  color: #c2c2d6;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

/* Footer */
footer {
  background: #000;
  padding: 5rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logo h3 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--emerald-luxury);
  margin-bottom: 1rem;
  letter-spacing: -0.04em;
  position: relative;
  padding-left: 2rem;
}

.footer-logo h3::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1.25rem;
  height: 1.25rem;
  background: var(--emerald-luxury);
  border-radius: 50%;
  box-shadow: 0 0 15px var(--emerald-luxury);
}

.footer-logo p {
  color: #a0a0c0;
  max-width: 300px;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.footer-links h4 {
  font-size: 1.35rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 1rem;
  color: #f0f0f0;
}

.footer-links h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--emerald-luxury);
  border-radius: 2px;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 1rem;
}

.footer-links a {
  color: #a0a0c0;
  text-decoration: none;
  transition: all 0.2s ease;
  font-size: 1.05rem;
  display: inline-block;
}

.footer-links a:hover {
  color: var(--emerald-luxury);
  padding-left: 5px;
  transform: translateX(3px);
}

.social-icons {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.social-icons a {
  color: #a0a0c0;
  font-size: 1.5rem;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
}

.social-icons a:hover {
  color: var(--emerald-luxury);
  background: rgba(0, 204, 153, 0.1);
  transform: translateY(-5px);
}

.social-icons svg {
  width: 24px;
  height: 24px;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #a0a0c0;
  font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .hero-main-heading {
    font-size: 3.5rem;
  }
  
  .rules-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 992px) {
  .navbar {
    padding: 1rem 0;
  }
  
  .nav-links {
    gap: 1.5rem;
  }
  
  .rules-hero {
    padding: 150px 0 80px;
  }
  
  .hero-main-heading {
    font-size: 3rem;
  }
  
  .hero-stats {
    gap: 2rem;
  }
  
  .stat-item {
    min-width: 160px;
  }
  
  .stat-number {
    font-size: 2.5rem;
  }
  
  .nav-tabs {
    gap: 1rem;
  }
  
  .tab-btn {
    font-size: 1rem;
    padding: 0.5rem 1rem;
  }
  
  .rules-grid {
    gap: 2rem;
  }
  
  .rule-card {
    padding: 2rem;
  }
  
  .rules-philosophy {
    padding: 2rem;
  }
  
  .philosophy-content ul {
    grid-template-columns: 1fr;
  }
  
  .strategy-category {
    padding: 2rem;
  }
  
  .category-title {
    font-size: 2rem;
  }
  
  .strategy-grid {
    gap: 1.5rem;
  }
  
  .strategy-item {
    padding: 1.5rem;
  }
  
  .conditions-grid {
    gap: 1.5rem;
  }
  
  .condition-card {
    padding: 1.5rem;
  }
  
  .payout-process {
    padding: 2rem;
  }
  
  .process-steps {
    gap: 1.5rem;
  }
  
  .cta-buttons {
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 1.5rem;
  }
  
  .navbar .container {
    flex-direction: column;
    gap: 1rem;
  }
  
  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }
  
  .rules-hero {
    padding: 130px 0 60px;
  }
  
  .hero-main-heading {
    font-size: 2.5rem;
  }
  
  .hero-subheading {
    font-size: 1.25rem;
  }
  
  .hero-stats {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .stat-item {
    min-width: 100%;
  }
  
  .rules-navigation {
    top: 70px;
  }
  
  .nav-tabs {
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  
  .tab-btn {
    font-size: 0.9rem;
    padding: 0.5rem 0.75rem;
  }
  
  .section-header h2 {
    font-size: 2.5rem;
  }
  
  .rules-grid {
    grid-template-columns: 1fr;
  }
  
  .rule-card {
    padding: 1.75rem;
  }
  
  .rule-icon-container {
    width: 70px;
    height: 70px;
  }
  
  .rule-icon {
    width: 45px;
    height: 45px;
    font-size: 1.25rem;
  }
  
  .rule-card h3 {
    font-size: 1.5rem;
  }
  
  .rules-philosophy {
    padding: 1.75rem;
  }
  
  .philosophy-content h3 {
    font-size: 1.75rem;
  }
  
  .philosophy-content p {
    font-size: 1.1rem;
  }
  
  .strategy-category {
    padding: 1.75rem;
  }
  
  .category-title {
    font-size: 1.75rem;
  }
  
  .category-description {
    font-size: 1.1rem;
  }
  
  .strategy-grid {
    grid-template-columns: 1fr;
  }
  
  .strategy-item {
    padding: 1.5rem;
  }
  
  .conditions-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
  
  .condition-card {
    padding: 1.5rem;
  }
  
  .payout-process {
    padding: 1.75rem;
  }
  
  .process-steps {
    flex-direction: column;
    gap: 2rem;
  }
  
  .step:not(:last-child)::after {
    content: '↓';
    position: absolute;
    right: 50%;
    top: auto;
    bottom: -30px;
    transform: translateX(50%);
  }
  
  .cta-buttons {
    flex-direction: column;
    gap: 1rem;
  }
  
  .btn {
    width: 100%;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }
  
  .rules-hero {
    padding: 120px 0 50px;
  }
  
  .hero-main-heading {
    font-size: 2rem;
  }
  
  .hero-subheading {
    font-size: 1.1rem;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .stat-label {
    font-size: 0.9rem;
  }
  
  .section-header h2 {
    font-size: 2rem;
  }
  
  .rule-card {
    padding: 1.5rem;
  }
  
  .rule-icon-container {
    width: 60px;
    height: 60px;
    margin-bottom: 1.5rem;
  }
  
  .rule-icon {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }
  
  .rule-card h3 {
    font-size: 1.35rem;
  }
  
  .rule-card p {
    font-size: 1rem;
  }
  
  .rules-philosophy {
    padding: 1.5rem;
  }
  
  .philosophy-content h3 {
    font-size: 1.5rem;
  }
  
  .philosophy-content ul {
    gap: 1rem;
  }
  
  .philosophy-content li {
    padding: 1rem;
    font-size: 1rem;
  }
  
  .strategy-category {
    padding: 1.5rem;
  }
  
  .category-title {
    font-size: 1.5rem;
  }
  
  .strategy-item {
    padding: 1.25rem;
  }
  
  .strategy-item h4 {
    font-size: 1.25rem;
  }
  
  .condition-card {
    padding: 1.25rem;
  }
  
  .condition-card h3 {
    font-size: 1.25rem;
  }
  
  .condition-card p {
    font-size: 1.1rem;
  }
  
  .payout-process {
    padding: 1.5rem;
  }
  
  .payout-process h3 {
    font-size: 1.5rem;
  }
  
  .step-number {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }
  
  .step-content h4 {
    font-size: 1.1rem;
  }
  
  .rules-cta h2 {
    font-size: 2rem;
  }
  
  .cta-subheading {
    font-size: 1rem;
  }
}