:root {
  --primary-color: #e63946;
  --primary-hover: #f25c67;
  --primary-dark: #d62828;
  --bg-color: #0a0a0a;
  --bg-secondary: #141414;
  --bg-tertiary: #1a1a1a;
  --bg-card: #252525;
  --text-color: #ffffff;
  --text-secondary: #c0c0c0;
  --text-tertiary: #909090;
  --border-color: #3a3a3a;
  --transition: all 0.3s ease;
  --shadow-glow: 0 0 30px rgba(230, 57, 70, 0.3);
  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.8);
}

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

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: var(--bg-color);
  color: var(--text-color);
  line-height: 1.6;
  font-weight: 400;
  overflow-x: hidden;
  position: relative;
}

/* Background Images on Sides */
body::before,
body::after {
  content: '';
  position: fixed;
  top: 0;
  width: 20vw;
  height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.1;
  z-index: 0;
  pointer-events: none;
}

body::before {
  left: 0;
  background-image: url('./assets/backgroundab1.jpg');
}

body::after {
  right: 0;
  background-image: url('./assets/backgroundab2.jpg');
}

/* Additional decorative backgrounds */
.hero::before,
.roleplay-section::before {
  content: '';
  position: absolute;
  width: 15vw;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0.08;
  z-index: 0;
  pointer-events: none;
}

.hero::before {
  left: 0;
  background-image: url('./assets/backgroundab3.jpg');
}

.roleplay-section::before {
  right: 0;
  background-image: url('./assets/backgroundab4.jpg');
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 max(20px, 3vw);
  width: 100%;
  position: relative;
  z-index: 2;
}

/* Section Decorative Patterns */
.servers-section::before,
.servers-section::after,
.features-section::before,
.features-section::after,
.donation-section::before,
.donation-section::after,
.getting-started::before,
.getting-started::after,
.streamers-section::before,
.streamers-section::after,
.faq::before,
.faq::after,
.newsletter::before,
.newsletter::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  opacity: 0.03;
  z-index: 0;
  pointer-events: none;
}

/* Left side patterns */
.servers-section::before,
.features-section::before,
.donation-section::before,
.getting-started::before,
.streamers-section::before,
.faq::before,
.newsletter::before {
  left: -150px;
  top: 10%;
  background: radial-gradient(circle, rgba(233, 14, 32, 0.4) 0%, transparent 70%);
  background-image: url('./assets/back.png');
  box-shadow: 0 0 100px rgba(230, 57, 70, 0.3);
}

/* Right side patterns */
.servers-section::after,
.features-section::after,
.donation-section::after,
.getting-started::after,
.streamers-section::after,
.faq::after,
.newsletter::after {
  right: -150px;
  bottom: 10%;
  background: radial-gradient(circle, rgba(230, 57, 70, 0.3) 0%, transparent 70%);
  background-image: url('./assets/back.png');
  box-shadow: 0 0 120px rgba(230, 57, 70, 0.2);
}

/* Alternating pattern positions */
.servers-section::before {
  top: auto;
  bottom: 20%;
}

.servers-section::after {
  bottom: auto;
  top: 20%;
}

.donation-section::before {
  top: 50%;
  transform: translateY(-50%);
}

.donation-section::after {
  bottom: auto;
  top: 30%;
}

.streamers-section::before {
  top: 15%;
}

.streamers-section::after {
  bottom: 15%;
}

/* Typography */
h1 {
  font-size: clamp(36px, 6vw, 72px);
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -1px;
  color: var(--text-color);
}

h2 {
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: var(--text-color);
}

h3 {
  font-size: clamp(20px, 2.5vw, 28px);
  line-height: 1.3;
  font-weight: 600;
  color: var(--text-color);
}

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

@keyframes fadeInScale {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(1.15); }
}

/* Navigation */
.navbar {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 9999;
  border-bottom: 1px solid var(--border-color);
}

.navbar .container {
  max-width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: clamp(60px, 8vh, 70px);
}

.logo-text {
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 700;
  color: var(--text-color);
  letter-spacing: -0.5px;
  cursor: pointer;
}

.logo-text:hover {
  color: var(--primary-color);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: clamp(20px, 3vw, 40px);
  align-items: center;
  margin: 0;
}

.nav-links a {
  color: var(--text-color);
  text-decoration: none;
  font-size: clamp(13px, 1.5vw, 15px);
  font-weight: 500;
  transition: var(--transition);
  opacity: 0.9;
  white-space: nowrap;
}

.nav-links a:hover {
  opacity: 1;
  color: var(--primary-color);
}

.btn-nav {
  padding: clamp(8px, 1.2vh, 10px) clamp(16px, 2vw, 24px) !important;
  font-size: clamp(12px, 1.3vw, 14px) !important;
  border-radius: 6px;
  background: var(--primary-color);
  color: #fff;
  border: none;
  font-weight: 600;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  position: relative;
  overflow: hidden;
  margin-top: clamp(60px, 8vh, 70px);
  padding: clamp(40px, 8vh, 80px) 0;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('./assets/back.png');
  background-size: cover;
  background-position: center;
  opacity: 0.05;
  z-index: 1;
}

.hero-content {
  text-align: center;
  z-index: 10;
  position: relative;
  max-width: 900px;
  padding: 0 max(20px, 5vw);
  width: 100%;
}

.hero-logo {
  margin-bottom: clamp(30px, 5vh, 50px);
  animation: fadeInScale 1s ease both;
}

.logo-image {
  max-width: clamp(100px, 15vw, 150px);
  width: 100%;
  height: auto;
  filter: drop-shadow(0 8px 32px rgba(230, 57, 70, 0.4));
  margin: 0 auto;
}

.hero h1 {
  margin-bottom: clamp(15px, 2.5vh, 20px);
  animation: fadeInUp 1s ease 0.2s both;
  text-transform: uppercase;
}

.hero .subtitle {
  font-size: clamp(16px, 2.5vw, 24px);
  line-height: 1.4;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: clamp(10px, 2vh, 15px);
  letter-spacing: clamp(1px, 0.2vw, 2px);
  animation: fadeInUp 1s ease 0.3s both;
  text-transform: uppercase;
}

.hero-description {
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: clamp(30px, 5vh, 50px);
  animation: fadeInUp 1s ease 0.4s both;
}

/* Online Counter */
.online-counter {
  margin: clamp(30px, 5vh, 50px) 0;
  display: flex;
  justify-content: center;
  animation: fadeInUp 1s ease 0.5s both;
}

.counter-box {
  background: var(--bg-card);
  padding: clamp(20px, 3vh, 30px) clamp(40px, 8vw, 80px);
  border-radius: 12px;
  border: 3px solid var(--border-color);
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.counter-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(230, 57, 70, 0.2), transparent);
  transition: left 0.5s;
}

.counter-box:hover::before { left: 100%; }
.counter-box:hover {
  border-color: var(--primary-color);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}

.counter-label {
  font-size: clamp(12px, 1.5vw, 14px);
  color: var(--text-tertiary);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.counter-number {
  font-size: clamp(36px, 6vw, 56px);
  font-weight: 700;
  color: var(--primary-color);
  letter-spacing: -1px;
  line-height: 1;
}

.hero-buttons {
  display: flex;
  gap: clamp(12px, 2vw, 20px);
  justify-content: center;
  flex-wrap: wrap;
  margin-top: clamp(25px, 4vh, 40px);
  animation: fadeInUp 1s ease 0.6s both;
}

/* Buttons */
.btn {
  padding: clamp(12px, 1.8vh, 16px) clamp(24px, 4vw, 36px);
  border: none;
  border-radius: 8px;
  font-size: clamp(14px, 1.5vw, 16px);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  min-width: clamp(120px, 15vw, 160px);
  font-family: inherit;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-primary {
  background: var(--primary-color);
  color: #fff;
  box-shadow: 0 4px 16px rgba(230, 57, 70, 0.4);
}

.btn-primary:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(230, 57, 70, 0.5);
}

.btn-secondary {
  background: transparent;
  color: var(--text-color);
  border: 3px solid var(--border-color);
}

.btn-secondary:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
  background: rgba(230, 57, 70, 0.1);
}

.btn-large {
  padding: clamp(14px, 2vh, 18px) clamp(28px, 4.5vw, 40px);
  font-size: clamp(15px, 1.8vw, 18px);
}

.btn-small {
  padding: clamp(8px, 1.2vh, 10px) clamp(16px, 2.5vw, 20px);
  font-size: clamp(12px, 1.3vw, 13px);
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: clamp(40px, 7vh, 70px);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.section-label {
  color: var(--text-tertiary);
  font-size: clamp(11px, 1.3vw, 13px);
  font-weight: 600;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.section-header h2 {
  margin-bottom: 20px;
  text-transform: uppercase;
}

.highlight { color: var(--primary-color); }

.section-subtitle {
  color: var(--text-secondary);
  font-size: clamp(15px, 1.8vw, 18px);
  line-height: 1.7;
}

/* RolePlay Section */
.roleplay-section {
  padding: clamp(60px, 12vh, 120px) 0;
  background: var(--bg-secondary);
  position: relative;
  overflow: hidden;
}

.roleplay-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 400px), 1fr));
  gap: clamp(40px, 8vw, 80px);
  align-items: center;
}

.lead-text {
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.7;
  margin-bottom: clamp(20px, 3vh, 30px);
  color: var(--text-color);
}

.roleplay-text p {
  color: var(--text-secondary);
  font-size: clamp(14px, 1.6vw, 16px);
  line-height: 1.7;
}

.text-highlight {
  color: var(--primary-color);
  font-weight: 600;
}

.roleplay-image .image-placeholder {
  background: url('./assets/back2.png') center/cover, var(--bg-card);
  border: 3px solid var(--border-color);
  border-radius: 12px;
  padding: clamp(60px, 10vh, 100px) clamp(20px, 4vw, 40px);
  text-align: center;
  min-height: clamp(300px, 50vh, 450px);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.roleplay-image .image-placeholder:hover {
  border-color: var(--primary-color);
  transform: translateY(-4px);
}

.placeholder-text {
  font-size: clamp(12px, 1.5vw, 16px);
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 2px;
  z-index: 1;
}

/* Servers Section */
.servers-section {
  padding: clamp(60px, 12vh, 120px) 0;
  background: var(--bg-color);
  position: relative;
  overflow: hidden;
}

.servers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: clamp(20px, 3vw, 30px);
}

.server-card {
  background: var(--bg-card);
  border: 3px solid var(--border-color);
  border-radius: 12px;
  padding: clamp(25px, 4vh, 40px);
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.server-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--primary-color);
  transform: scaleX(0);
  transition: transform 0.3s;
}

.server-card:hover::before { transform: scaleX(1); }
.server-card:hover {
  border-color: var(--primary-color);
  transform: translateY(-6px);
  box-shadow: var(--shadow-glow);
}

.server-status {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin-bottom: clamp(15px, 2.5vh, 25px);
  animation: pulse 2s ease-in-out infinite;
}

.server-status.online {
  background: #22c55e;
  box-shadow: 0 0 20px rgba(34, 197, 94, 0.8);
}

.server-name {
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-color);
}

.server-ip {
  color: var(--primary-color);
  font-family: 'Courier New', monospace;
  font-size: clamp(13px, 1.5vw, 16px);
  margin-bottom: clamp(15px, 2.5vh, 25px);
  font-weight: 600;
  word-break: break-all;
}

.server-stats {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(15px, 3vw, 30px);
  margin: clamp(15px, 2.5vh, 25px) 0;
}

.stat {
  color: var(--text-secondary);
  font-size: clamp(12px, 1.4vw, 14px);
  font-weight: 500;
}

.btn-copy {
  width: 100%;
  margin-top: clamp(15px, 2.5vh, 25px);
  background: transparent;
  color: var(--text-color);
  border: 3px solid var(--border-color);
}

.btn-copy:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
  background: rgba(230, 57, 70, 0.1);
}

/* Features Section */
.features-section {
  padding: clamp(60px, 12vh, 120px) 0;
  background: var(--bg-secondary);
  position: relative;
  overflow: hidden;
}

/* Features Hero Image */
.features-hero {
  margin-bottom: clamp(50px, 8vh, 80px);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.features-image {
  width: 100%;
  max-width: 900px;
  height: auto;
  border-radius: 16px;
  border: 3px solid var(--border-color);
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  background: linear-gradient(180deg, rgba(230, 57, 70, 0.1) 0%, transparent 100%);
  padding: 20px;
  object-fit: contain;
}

.features-image:hover {
  border-color: var(--primary-color);
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(230, 57, 70, 0.4);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: clamp(20px, 3vw, 30px);
}

.feature-card {
  background: var(--bg-card);
  padding: clamp(30px, 5vh, 50px) clamp(25px, 4vw, 40px);
  border-radius: 12px;
  border: 3px solid var(--border-color);
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.feature-card:hover {
  border-color: var(--primary-color);
  transform: translateY(-6px);
  box-shadow: var(--shadow-glow);
}

.feature-icon {
  font-size: clamp(36px, 5vw, 48px);
  margin-bottom: clamp(15px, 2.5vh, 25px);
  font-weight: 700;
}

.feature-card h3 {
  font-size: clamp(18px, 2.2vw, 22px);
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--text-color);
}

.feature-card p {
  color: var(--text-secondary);
  font-size: clamp(13px, 1.5vw, 15px);
  line-height: 1.7;
}

/* Donation Section */
.donation-section {
  padding: clamp(60px, 12vh, 120px) 0;
  background: var(--bg-color);
  position: relative;
  overflow: hidden;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  gap: clamp(25px, 4vw, 40px);
  margin-bottom: clamp(40px, 6vh, 60px);
}

.pricing-card {
  background: var(--bg-card);
  border: 3px solid var(--border-color);
  border-radius: 16px;
  padding: clamp(35px, 5vh, 50px) clamp(30px, 4vw, 40px);
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
  transform: scaleX(0);
  transition: transform 0.3s;
}

.pricing-card:hover::before { transform: scaleX(1); }
.pricing-card:hover {
  border-color: var(--primary-color);
  transform: translateY(-8px);
  box-shadow: var(--shadow-glow);
}

.pricing-card.featured {
  border-color: var(--primary-color);
  border-width: 4px;
}

.pricing-card.featured::before {
  transform: scaleX(1);
}

.pricing-card.featured:hover {
  transform: translateY(-8px);
}

.plan-badge {
  display: inline-block;
  padding: clamp(6px, 1vh, 8px) clamp(16px, 2.5vw, 24px);
  background: var(--border-color);
  color: var(--text-color);
  border-radius: 20px;
  font-size: clamp(11px, 1.2vw, 13px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: clamp(20px, 3vh, 30px);
}

.plan-badge.popular {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  box-shadow: 0 4px 16px rgba(230, 57, 70, 0.5);
}

.plan-name {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 700;
  margin-bottom: clamp(15px, 2.5vh, 25px);
  color: var(--text-color);
  text-transform: uppercase;
}

.plan-price {
  margin-bottom: clamp(30px, 4vh, 40px);
}

.price-amount {
  font-size: clamp(48px, 7vw, 64px);
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1;
}

.price-currency {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 600;
  color: var(--text-secondary);
  margin-left: 5px;
}

.plan-features {
  list-style: none;
  margin-bottom: clamp(30px, 4vh, 40px);
  text-align: left;
}

.plan-features li {
  padding: clamp(10px, 1.5vh, 12px) 0;
  font-size: clamp(14px, 1.6vw, 16px);
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border-color);
  line-height: 1.6;
}

.plan-features li:last-child {
  border-bottom: none;
}

.btn-donate {
  width: 100%;
  padding: clamp(14px, 2vh, 18px) clamp(24px, 4vw, 36px);
  font-size: clamp(14px, 1.6vw, 16px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.donation-note {
  text-align: center;
  padding: clamp(25px, 4vh, 40px);
  background: var(--bg-card);
  border-radius: 12px;
  border: 2px solid var(--border-color);
}

.donation-note p {
  color: var(--text-secondary);
  font-size: clamp(14px, 1.6vw, 16px);
  margin: clamp(8px, 1.5vh, 12px) 0;
  line-height: 1.7;
}

.donation-note strong {
  color: var(--primary-color);
  font-weight: 700;
}

/* Getting Started Section */
.getting-started {
  padding: clamp(60px, 12vh, 120px) 0;
  background: var(--bg-secondary);
  position: relative;
  overflow: hidden;
}

.steps-container {
  display: grid;
  gap: clamp(25px, 4vh, 40px);
  max-width: 1000px;
  margin: 0 auto;
}

.step-card {
  background: var(--bg-card);
  padding: clamp(30px, 5vh, 50px);
  border-radius: 12px;
  border: 3px solid var(--border-color);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(25px, 4vw, 40px);
  align-items: center;
  transition: var(--transition);
  position: relative;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.step-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--primary-color);
  opacity: 0;
  transition: opacity 0.3s;
}

.step-card:hover::before { opacity: 1; }
.step-card:hover { 
  border-color: var(--primary-color);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}

.step-number {
  width: clamp(50px, 8vw, 70px);
  height: clamp(50px, 8vw, 70px);
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(24px, 4vw, 32px);
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 4px 20px rgba(230, 57, 70, 0.5);
}

.step-content h3 {
  margin-bottom: 15px;
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 700;
  color: var(--text-color);
}

.step-content p {
  color: var(--text-secondary);
  margin-bottom: clamp(15px, 2.5vh, 25px);
  font-size: clamp(14px, 1.6vw, 16px);
  line-height: 1.7;
}

.platform-links {
  display: flex;
  gap: clamp(10px, 1.5vw, 15px);
  flex-wrap: wrap;
}

.platform-btn {
  padding: clamp(8px, 1.2vh, 10px) clamp(16px, 2.5vw, 24px);
  background: transparent;
  color: var(--text-color);
  text-decoration: none;
  border-radius: 6px;
  border: 2px solid var(--border-color);
  transition: var(--transition);
  font-size: clamp(12px, 1.4vw, 14px);
  font-weight: 600;
}

.platform-btn:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
  background: rgba(230, 57, 70, 0.1);
}

.btn-download {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.download-icon { font-size: clamp(16px, 2vw, 20px); }

/* Streamers Section */
.streamers-section {
  padding: clamp(60px, 12vh, 120px) 0;
  background: var(--bg-color);
  position: relative;
  overflow: hidden;
}

.streamers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: clamp(20px, 3vw, 30px);
  margin-bottom: clamp(40px, 7vh, 70px);
}

.streamer-card {
  background: var(--bg-card);
  border-radius: 12px;
  overflow: hidden;
  border: 3px solid var(--border-color);
  transition: var(--transition);
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.streamer-card:hover {
  border-color: var(--primary-color);
  transform: translateY(-6px);
  box-shadow: var(--shadow-glow);
}

.streamer-preview {
  position: relative;
  height: clamp(160px, 25vh, 220px);
  background: linear-gradient(135deg, var(--bg-tertiary) 0%, var(--bg-card) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.preview-placeholder {
  color: var(--text-tertiary);
  font-size: clamp(11px, 1.3vw, 14px);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.live-badge {
  position: absolute;
  top: clamp(12px, 2vh, 20px);
  left: clamp(12px, 2vw, 20px);
  background: #ef4444;
  color: #fff;
  padding: clamp(4px, 0.8vh, 6px) clamp(10px, 1.5vw, 16px);
  border-radius: 6px;
  font-size: clamp(10px, 1.2vw, 12px);
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  box-shadow: 0 2px 10px rgba(239, 68, 68, 0.5);
}

.streamer-info { padding: clamp(20px, 3vh, 30px); }

.streamer-name {
  font-size: clamp(15px, 1.8vw, 18px);
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-color);
}

.streamer-viewers {
  color: var(--text-secondary);
  font-size: clamp(12px, 1.4vw, 14px);
}

.streamers-cta { text-align: center; margin-top: clamp(40px, 7vh, 70px); }

.streamers-cta p {
  color: var(--text-secondary);
  margin-bottom: clamp(20px, 3vh, 30px);
  font-size: clamp(15px, 1.8vw, 18px);
  line-height: 1.7;
}

/* FAQ Section */
.faq {
  background: var(--bg-secondary);
  padding: clamp(60px, 12vh, 120px) 0;
  position: relative;
  overflow: hidden;
}

.faq-items { max-width: 1000px; margin: 0 auto; }

.faq-item {
  margin-bottom: clamp(15px, 2vh, 20px);
  border: 3px solid var(--border-color);
  border-radius: 12px;
  overflow: hidden;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.faq-item:hover { border-color: var(--primary-color); }

.faq-question {
  background: var(--bg-card);
  padding: clamp(20px, 3vh, 30px) clamp(25px, 4vw, 40px);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  transition: var(--transition);
}

.faq-question:hover { background: var(--bg-tertiary); }

.faq-question h3 {
  margin: 0;
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 600;
  color: var(--text-color);
}

.toggle {
  font-size: clamp(24px, 3vw, 28px);
  color: var(--primary-color);
  transition: var(--transition);
  font-weight: 300;
}

.faq-answer {
  padding: 0 clamp(25px, 4vw, 40px);
  max-height: 0;
  overflow: hidden;
  background: var(--bg-card);
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-answer.active {
  padding: clamp(20px, 3vh, 30px) clamp(25px, 4vw, 40px);
  max-height: 1000px;
}

.faq-answer p {
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.7;
  font-size: clamp(14px, 1.6vw, 16px);
}

/* Newsletter Section */
.newsletter {
  background: var(--bg-color);
  padding: clamp(60px, 10vh, 100px) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.newsletter h2 {
  font-size: clamp(28px, 4vw, 42px);
  margin-bottom: 15px;
  font-weight: 700;
  text-transform: uppercase;
}

.newsletter p {
  color: var(--text-secondary);
  margin-bottom: clamp(25px, 4vh, 40px);
  font-size: clamp(15px, 1.8vw, 18px);
  line-height: 1.7;
}

.newsletter-form {
  display: flex;
  gap: clamp(10px, 1.5vw, 15px);
  justify-content: center;
  flex-wrap: wrap;
  max-width: 600px;
  margin: 0 auto;
}

.newsletter-form input {
  flex: 1;
  min-width: min(100%, 250px);
  padding: clamp(12px, 1.8vh, 16px) clamp(18px, 2.5vw, 24px);
  border: 3px solid var(--border-color);
  border-radius: 8px;
  background: var(--bg-card);
  color: var(--text-color);
  font-size: clamp(14px, 1.6vw, 16px);
  font-family: inherit;
  transition: var(--transition);
}

.newsletter-form input::placeholder { color: var(--text-tertiary); }
.newsletter-form input:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 20px rgba(230, 57, 70, 0.3);
}

.newsletter-form .btn {
  background: var(--primary-color);
  color: #fff;
}

.newsletter-form .btn:hover { background: var(--primary-hover); }

/* Footer */
.footer {
  background: var(--bg-secondary);
  border-top: 2px solid var(--border-color);
  padding: clamp(50px, 8vh, 80px) 0 clamp(30px, 4vh, 40px);
  color: var(--text-secondary);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
  gap: clamp(30px, 5vw, 50px);
  margin-bottom: clamp(30px, 5vh, 50px);
}

.footer-section h4 {
  color: var(--text-color);
  margin-bottom: 20px;
  font-size: clamp(14px, 1.6vw, 16px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-section p {
  line-height: 1.7;
  font-size: clamp(13px, 1.4vw, 14px);
}

.footer-section ul { list-style: none; }
.footer-section ul li { margin-bottom: 15px; }

.footer-section a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: var(--transition);
  font-size: clamp(13px, 1.4vw, 14px);
}

.footer-section a:hover { color: var(--primary-color); }

.social-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.social-link {
  display: inline-block;
  padding: clamp(10px, 1.5vh, 12px) clamp(16px, 2.5vw, 20px);
  background: var(--bg-card);
  border-radius: 8px;
  border: 2px solid var(--border-color);
  transition: var(--transition);
  text-align: center;
  font-weight: 600;
}

.social-link:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
  background: rgba(230, 57, 70, 0.1);
}

.footer-bottom {
  padding-top: clamp(25px, 4vh, 40px);
  border-top: 2px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-bottom p { font-size: clamp(12px, 1.3vw, 13px); }

.footer-links {
  display: flex;
  gap: clamp(15px, 3vw, 30px);
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: var(--transition);
  font-size: clamp(12px, 1.3vw, 13px);
}

.footer-links a:hover { color: var(--primary-color); }

/* Mobile Responsive */
@media (max-width: 768px) {
  .nav-links li:nth-child(n+5) { display: none; }
  .step-card {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 25px;
  }
  .step-number { margin: 0 auto; }
  .hero-buttons { width: 100%; }
  .hero-buttons .btn { width: 100%; }
  .newsletter-form { flex-direction: column; }
  .newsletter-form input,
  .newsletter-form .btn { width: 100%; }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .footer-links { justify-content: center; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card.featured { transform: none; }
  
  /* Hide patterns on mobile */
  body::before,
  body::after,
  .hero::before,
  .roleplay-section::before,
  .servers-section::before,
  .servers-section::after,
  .features-section::before,
  .features-section::after,
  .donation-section::before,
  .donation-section::after,
  .getting-started::before,
  .getting-started::after,
  .streamers-section::before,
  .streamers-section::after,
  .faq::before,
  .faq::after,
  .newsletter::before,
  .newsletter::after {
    display: none;
  }
}

@media (max-width: 480px) {
  .btn-nav { display: none; }
  .nav-links li:nth-child(n+3) { display: none; }
  .features-grid,
  .servers-grid,
  .streamers-grid { grid-template-columns: 1fr; }
}

@media (min-width: 1920px) {
  html { font-size: 18px; }
  .container { max-width: 1400px; }
}