/* ============================================
   Resistance Demoscene - New Website
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@400;500;600;700&family=Orbitron:wght@400;500;700;900&display=swap');

:root {
  --bg-primary: #0a0c0f;
  --bg-secondary: #12151a;
  --bg-card: #181c22;
  --bg-card-hover: #1e2329;
  --accent: #e63946;
  --accent-glow: rgba(230, 57, 70, 0.4);
  --accent-soft: #ff4a4e;
  --text-primary: #e8e8e8;
  --text-secondary: #8a9099;
  --text-muted: #555b63;
  --border: rgba(255, 255, 255, 0.08);
  --border-accent: rgba(230, 57, 70, 0.3);
  --font-display: 'Orbitron', sans-serif;
  --font-body: 'Rajdhani', sans-serif;
  --max-width: 90vw;
  --radius: 8px;
  --radius-lg: 12px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: clamp(16px, 1.1vw, 22px);
  font-weight: 500;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--bg-primary);
  min-height: 100vh;
  overflow-x: hidden;
}

a {
  color: var(--accent-soft);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: #ff8a8d;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.5px;
}

/* ============================================
   Background Effects
   ============================================ */

.bg-grid {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  background-image:
    linear-gradient(rgba(230, 57, 70, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(230, 57, 70, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridDrift 20s ease-in-out infinite;
}

@keyframes gridDrift {
  0%, 100% { background-position: 0 0, 0 0; }
  50% { background-position: 30px 30px, 30px 30px; }
}

.bg-glow {
  position: fixed;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 60vw;
  max-width: 1200px;
  height: 400px;
  background: radial-gradient(ellipse, var(--accent-glow), transparent 70%);
  opacity: 0.15;
  pointer-events: none;
  z-index: 0;
  animation: glowPulse 6s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.10; transform: translateX(-50%) scale(1); }
  50% { opacity: 0.20; transform: translateX(-50%) scale(1.1); }
}

/* ============================================
   Header
   ============================================ */

.Header {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 40px 20px 0;
}

.Header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  border: 1px solid var(--border);
  border-bottom: none;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  background: var(--bg-secondary);
  padding: 40px 40px 0;
  position: relative;
  overflow: hidden;
}

.Header-inner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.logo-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 10px;
  text-decoration: none;
  animation: logoPulse 4s ease-in-out infinite;
}

@keyframes logoPulse {
  0%, 100% { filter: drop-shadow(0 0 20px rgba(230, 57, 70, 0.2)); }
  50% { filter: drop-shadow(0 0 35px rgba(230, 57, 70, 0.5)); }
}

.logo-text {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 900;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: white;
  text-shadow: 0 0 30px var(--accent-glow), 0 0 60px rgba(230, 57, 70, 0.2);
}

.tagline {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-secondary);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-top: -5px;
}

/* ============================================
   Navigation
   ============================================ */

.Nav {
  display: flex;
  justify-content: center;
  gap: 4px;
  padding: 20px 0 0;
  flex-wrap: wrap;
}

.Nav a {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-secondary);
  padding: 10px 20px;
  border-radius: var(--radius) var(--radius) 0 0;
  transition: all 0.25s;
  position: relative;
}

.Nav a:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.04);
}

.Nav a.active {
  color: white;
  background: var(--bg-primary);
}

.Nav a.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 20%;
  right: 20%;
  height: 2px;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent-glow);
}

/* ============================================
   Mobile Navigation
   ============================================ */

.MobileNav {
  display: none;
  position: relative;
  z-index: 10;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

.MobileNav select {
  width: 100%;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-primary);
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 16px;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238a9099' fill='none' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  cursor: pointer;
}

/* ============================================
   Content Area
   ============================================ */

.Content {
  position: relative;
  z-index: 1;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 0 60px;
}

.Content-inner {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-top: none;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  padding: 40px;
  min-height: 400px;
}

/* ============================================
   Page Sections (SPA-style)
   ============================================ */

.Page {
  display: none;
  animation: fadeIn 0.3s ease;
}

.Page.active {
  display: block;
}

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

/* ============================================
   Home Page
   ============================================ */

.Welcome {
  margin-bottom: 40px;
}

.Welcome-text p {
  color: var(--text-secondary);
  margin-bottom: 15px;
  font-size: clamp(15px, 1vw, 18px);
}

.Welcome-text p:first-child {
  font-size: clamp(17px, 1.1vw, 20px);
  color: var(--text-primary);
}

.Welcome-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.Stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
}

.Stat-card .number {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 900;
  color: var(--accent-soft);
  line-height: 1;
}

.Stat-card .label {
  font-size: 13px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 6px;
}

.Latest-release {
  display: flex;
  align-items: center;
  gap: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 40px;
  text-decoration: none;
  transition: border-color 0.2s;
}

.Latest-release:hover {
  border-color: var(--accent);
}

.Latest-release img {
  width: clamp(80px, 8vw, 140px);
  height: clamp(80px, 8vw, 140px);
  border-radius: var(--radius);
  object-fit: cover;
  flex-shrink: 0;
  background: var(--bg-secondary);
}

.Latest-release-info {
  flex: 1;
  min-width: 0;
}

.Latest-release-info .badge {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  background: var(--accent);
  padding: 3px 8px;
  border-radius: 4px;
  margin-bottom: 8px;
}

.Latest-release-info .title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.Latest-release-info .meta {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.Latest-release-info .credits {
  font-size: 13px;
  color: var(--text-secondary);
}

.Latest-release-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.Latest-release-actions a {
  padding: 10px 20px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.2s;
}

.Latest-release-actions a.primary {
  background: var(--accent);
  color: #fff;
}

.Latest-release-actions a.secondary {
  background: var(--bg-secondary);
  color: var(--text-secondary);
  border: 1px solid var(--border);
}

.Latest-release-actions a:hover {
  opacity: 0.85;
}

/* ============================================
   Section Headings
   ============================================ */

.Section-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 30px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.Section-header h2 {
  font-size: clamp(18px, 1.2vw, 24px);
  letter-spacing: 3px;
  text-transform: uppercase;
}

.Section-header .line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--border-accent), transparent);
}

/* ============================================
   News
   ============================================ */

.News-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.News-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.3s, transform 0.2s;
  cursor: default;
}

.News-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-2px);
}

.News-card-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-bottom: 1px solid var(--border);
}

.News-card-body {
  padding: 20px;
}

.News-card-meta {
  font-size: 13px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.News-card-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  color: white;
}

.News-card-text {
  color: var(--text-secondary);
  font-size: 15px;
}

/* News teasers on homepage (compact, clickable) */
.News-teaser {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  cursor: pointer;
  transition: border-color 0.2s;
}

.News-teaser:hover {
  border-color: var(--border-accent);
}

.News-teaser-header {
  display: flex;
  align-items: center;
  gap: 14px;
}

.News-teaser-img {
  width: 56px;
  height: 56px;
  border-radius: 6px;
  object-fit: cover;
  flex-shrink: 0;
  background: var(--bg-secondary);
}

.News-teaser-title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--text-primary);
  flex: 1;
}

.News-teaser-date {
  font-size: 13px;
  color: var(--text-muted);
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.News-teaser-text {
  display: none;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.6;
}

.News-teaser.expanded .News-teaser-text {
  display: block;
}

.View-all-link {
  display: inline-block;
  color: var(--accent-soft);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.2s;
}

.View-all-link:hover {
  color: var(--text-primary);
}

/* News items on #news page */
.News-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 16px;
  cursor: pointer;
  transition: border-color 0.2s;
}

.News-item:hover {
  border-color: var(--border-accent);
}

.News-item-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
}

.News-item-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
}

.News-item-date {
  font-size: 13px;
  color: var(--text-muted);
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.News-item-text {
  display: none;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.7;
}

.News-item.expanded .News-item-text {
  display: block;
}

/* ============================================
   Platforms Grid
   ============================================ */

.Platforms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(280px, 100%), 1fr));
  gap: 16px;
}

.Platform-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16/10;
  cursor: pointer;
  transition: all 0.3s;
}

.Platform-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.Platform-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s, filter 0.3s;
}

.Platform-card:hover img {
  transform: scale(1.08);
  filter: brightness(0.7);
}

.Platform-card .overlay {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.6) 40%, transparent 70%);
  padding: 14px 16px 20px;
}

.Platform-card .name {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fff;
}

.Platform-card .count {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  margin-top: 2px;
}

/* ============================================
   Releases Grid
   ============================================ */

.Releases-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.Releases-header .back-btn {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-secondary);
  padding: 8px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all 0.2s;
}

.Releases-header .back-btn:hover {
  color: white;
  border-color: var(--accent);
  background: rgba(230, 57, 70, 0.1);
}

.Releases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(280px, 100%), 1fr));
  gap: 20px;
}

.Release-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s;
  cursor: pointer;
}

.Release-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.Release-card-image {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  border-bottom: 1px solid var(--border);
}

.Release-card-body {
  padding: 16px;
}

.Release-card-title {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
}

.Release-card-date {
  font-size: 13px;
  color: var(--text-muted);
}

/* ============================================
   Release Detail
   ============================================ */

.Release-detail {
  display: none;
}

.Release-detail.active {
  display: block;
  animation: fadeIn 0.3s ease;
}

.Release-detail-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 30px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.Release-detail-header h2 {
  font-size: 24px;
}

.Release-detail-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.Release-preview {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border);
}

.Release-preview img,
.Release-preview video {
  width: 100%;
  display: block;
}

.Release-info {
  padding: 0;
}

.Release-info h3 {
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.Info-grid {
  display: grid;
  gap: 12px;
  margin-bottom: 30px;
}

.Info-row {
  display: flex;
  gap: 12px;
  align-items: baseline;
}

.Info-row .label {
  font-size: 13px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  min-width: 90px;
}

.Info-row .value {
  color: var(--text-primary);
}

.Release-links {
  margin-top: 30px;
}

.Release-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: white;
  background: var(--accent);
  padding: 12px 24px;
  border-radius: var(--radius);
  transition: all 0.2s;
  margin-right: 12px;
  margin-bottom: 12px;
}

.Release-links a:hover {
  background: #ff3344;
  color: white;
  box-shadow: 0 0 20px var(--accent-glow);
}

.Release-links a.secondary {
  background: var(--bg-card);
  border: 1px solid var(--border);
}

.Release-links a.secondary:hover {
  border-color: var(--accent);
  background: var(--bg-card-hover);
}

/* ============================================
   Members
   ============================================ */

.Members-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(300px, 100%), 1fr));
  gap: 16px;
}

.Member-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 16px;
  transition: all 0.3s;
}

.Member-card:hover {
  border-color: var(--border-accent);
  background: var(--bg-card-hover);
}

.Member-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border);
  flex-shrink: 0;
  background: var(--bg-primary);
}

.Member-info {
  flex: 1;
  min-width: 0;
}

.Member-handle {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: white;
  margin-bottom: 2px;
}

.Member-meta {
  font-size: 13px;
  color: var(--text-muted);
}

.Member-role {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent-soft);
  background: rgba(230, 57, 70, 0.12);
  padding: 3px 10px;
  border-radius: 20px;
  margin-top: 6px;
}

.ExMembers {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid var(--border);
}

.ExMembers h3 {
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.ExMembers-list {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 2;
}

/* ============================================
   Sources
   ============================================ */

.Sources-content {
  text-align: center;
  padding: 60px 20px;
}

.Sources-content p {
  color: var(--text-secondary);
  font-size: 18px;
  margin-bottom: 30px;
}

.GitHub-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1px;
  color: white;
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 16px 32px;
  border-radius: var(--radius-lg);
  transition: all 0.3s;
}

.GitHub-link:hover {
  border-color: var(--accent);
  background: var(--bg-card-hover);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.GitHub-link svg {
  width: 24px;
  height: 24px;
  fill: white;
}

/* ============================================
   Footer
   ============================================ */

.Footer {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 30px 20px 40px;
  font-size: 13px;
  color: var(--text-muted);
}

.Footer a {
  color: var(--text-secondary);
}

.Footer a:hover {
  color: var(--accent-soft);
}

/* ============================================
   Animations & Micro-interactions
   ============================================ */

/* Scroll-reveal: sections fade and slide up */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered card entry */
.stagger {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.stagger.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Hover glow on cards */
.Platform-card,
.Release-card,
.Member-card,
.News-teaser,
.News-item,
.Latest-release {
  transition: border-color 0.3s, transform 0.25s, box-shadow 0.3s;
}

.Platform-card:hover,
.Release-card:hover,
.Member-card:hover,
.News-teaser:hover,
.News-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(230, 57, 70, 0.12), 0 2px 8px rgba(0, 0, 0, 0.3);
  border-color: var(--border-accent);
}

.Latest-release:hover {
  box-shadow: 0 8px 30px rgba(230, 57, 70, 0.12), 0 2px 8px rgba(0, 0, 0, 0.3);
  border-color: var(--border-accent);
}

/* Button press effect */
.btn:active,
.Latest-release-actions a:active,
.View-all-link:active {
  transform: scale(0.96);
}

/* Page content fade-in */
.Page.active {
  animation: pageFadeIn 0.35s ease;
}

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

/* Section header line glow */
.Section-header .line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--border), var(--accent), var(--border));
  opacity: 0.5;
}

/* ============================================
   Responsive
   ============================================ */

@media (max-width: 900px) {
  .Latest-release {
    flex-direction: column;
    text-align: center;
  }

  .Latest-release-actions {
    width: 100%;
    justify-content: center;
  }

  .Release-detail-content {
    grid-template-columns: 1fr;
  }

  .News-grid {
    grid-template-columns: 1fr;
  }

  .Content-inner {
    padding: 24px;
  }

  .logo-text {
    font-size: 28px;
    letter-spacing: 4px;
  }

  .Nav {
    display: none;
  }

  .MobileNav {
    display: block;
    padding-bottom: 16px;
  }
}

@media (max-width: 600px) {
  .Content {
    padding: 0 0 40px;
  }

  .Content-inner {
    padding: 20px;
    border-radius: 0;
    border-left: none;
    border-right: none;
  }

  .Header {
    padding: 20px 12px 0;
  }

  .Header-inner {
    padding: 24px 20px 0;
    border-radius: 0;
    border-left: none;
    border-right: none;
  }

  .logo-text {
    font-size: 22px;
    letter-spacing: 3px;
  }

  .Welcome-stats {
    grid-template-columns: 1fr;
  }

  .Platforms-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  }

  .Members-grid {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 1600px) {
  .Platforms-grid {
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  }

  .Releases-grid {
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  }

  .News-grid {
    grid-template-columns: 1fr 1fr;
  }

  .Content-inner {
    padding: 50px 60px;
  }

  .Header-inner {
    padding: 50px 60px 0;
  }
}

@media (min-width: 2400px) {
  .Platforms-grid {
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
  }

  .Releases-grid {
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
  }

  .Content-inner {
    padding: 60px 80px;
  }

  .Header-inner {
    padding: 60px 80px 0;
  }
}
