:root {
  /* Light mode colors */
  --bg-primary: #fafafa;
  --bg-secondary: #ffffff;
  --bg-card: #ffffff;
  --text-primary: #1a1a1a;
  --text-secondary: #666666;
  --border-color: #e5e5e5;

  /* Clodsire accent colors */
  --accent-primary: #a47c5e;
  --accent-secondary: #8b5a8f;
  --accent-light: #d4b5a0;
  --accent-hover: #8d6a4f;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
}

[data-theme="dark"] {
  /* Dark mode colors */
  --bg-primary: #0d0d0d;
  --bg-secondary: #1a1a1a;
  --bg-card: #1f1f1f;
  --text-primary: #f5f5f5;
  --text-secondary: #a0a0a0;
  --border-color: #2a2a2a;

  /* Adjusted accents for dark mode */
  --accent-primary: #c99977;
  --accent-secondary: #a67aae;
  --accent-light: #e5c9b3;
  --accent-hover: #b08a6a;

  /* Shadows for dark mode */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.5);
}

body {
  --bg-primary: #0d0d0d;
  --bg-secondary: #1a1a1a;
  --bg-card: #1f1f1f;
  --text-primary: #f5f5f5;
  --text-secondary: #a0a0a0;
  --border-color: #2a2a2a;
  --accent-primary: #c99977;
  --accent-secondary: #a67aae;
  --accent-light: #e5c9b3;
  --accent-hover: #b08a6a;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.5);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Outfit", sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  transition: background-color 0.3s ease, color 0.3s ease;
}

/* Navigation */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border-color);
  z-index: 1000;
  padding: 1rem 0;
  box-shadow: var(--shadow-sm);
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

nav .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-content {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.logo:hover {
  opacity: 0.8;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(
    135deg,
    var(--accent-primary),
    var(--accent-secondary)
  );
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

nav ul {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
}

nav a {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  font-size: 0.95rem;
}

nav a:hover {
  color: var(--accent-primary);
}

.theme-toggle {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1.2rem;
}

.theme-toggle:hover {
  background: var(--accent-primary);
  border-color: var(--accent-primary);
  transform: translateY(-2px);
}

/* Hero Section */
.hero {
  margin-top: 80px;
  padding: 5rem 2rem 4rem;
  text-align: center;
}

.hero h1 {
  font-size: 4rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
  animation: fadeInUp 0.6s ease;
}

.hero .gradient-text {
  background: linear-gradient(
    135deg,
    var(--accent-primary),
    var(--accent-secondary)
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  font-size: 1.25rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 2rem;
  animation: fadeInUp 0.6s ease 0.1s both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.cta-button {
  display: inline-block;
  padding: 1rem 2rem;
  background: var(--accent-primary);
  color: white;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-md);
  animation: fadeInUp 0.6s ease 0.2s both;
}

.cta-button:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* Features Section */
.features {
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s ease;
  animation: fadeInUp 0.6s ease both;
}

.feature-card:nth-child(1) {
  animation-delay: 0.1s;
}
.feature-card:nth-child(2) {
  animation-delay: 0.15s;
}
.feature-card:nth-child(3) {
  animation-delay: 0.2s;
}
.feature-card:nth-child(4) {
  animation-delay: 0.25s;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent-primary);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.feature-card h3 {
  font-size: 1.3rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.feature-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Content Sections */
.content-section {
  max-width: 900px;
  margin: 3rem auto;
  padding: 3rem;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
}

.content-section h2 {
  font-size: 2.5rem;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--accent-primary);
  font-weight: 700;
}

.content-section h3 {
  font-size: 1.5rem;
  color: var(--accent-secondary);
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.content-section p {
  color: var(--text-secondary);
  margin-bottom: 1rem;
  font-size: 1rem;
  line-height: 1.7;
}

.content-section ul,
.content-section ol {
  margin: 1rem 0 1rem 2rem;
  color: var(--text-secondary);
}

.content-section li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.content-section strong {
  color: var(--text-primary);
  font-weight: 600;
}

.content-section a {
  color: var(--accent-primary);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease;
}

.content-section a:hover {
  border-bottom-color: var(--accent-primary);
}

.code-inline {
  font-family: "DM Mono", monospace;
  background: var(--bg-primary);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  color: var(--accent-primary);
  font-size: 0.9rem;
  border: 1px solid var(--border-color);
}

.last-updated {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-color);
}

/* Footer */
footer {
  background: var(--bg-card);
  border-top: 1px solid var(--border-color);
  padding: 3rem 2rem 2rem;
  margin-top: 4rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h4 {
  color: var(--text-primary);
  margin-bottom: 1rem;
  font-size: 1.1rem;
  font-weight: 600;
}

.footer-section p,
.footer-section a {
  color: var(--text-secondary);
  font-size: 0.95rem;
  text-decoration: none;
  display: block;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: var(--accent-primary);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }

  .hero p {
    font-size: 1.1rem;
  }

  nav ul {
    gap: 1rem;
  }

  nav .container {
    padding: 0 1rem;
  }

  .content-section {
    padding: 2rem 1.5rem;
    margin: 2rem 1rem;
  }

  .content-section h2 {
    font-size: 2rem;
  }

  .features {
    padding: 3rem 1rem;
  }
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Style Switcher */
.style-switcher {
  position: fixed;
  top: 50%;
  right: 2rem;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  z-index: 999;
  background: var(--bg-card);
  padding: 1rem;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-lg);
}

.style-btn {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border-color);
  background: var(--bg-primary);
  color: var(--text-secondary);
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.style-btn:hover {
  background: var(--accent-primary);
  color: white;
  border-color: var(--accent-primary);
}

.style-btn.active {
  background: var(--accent-primary);
  color: white;
  border-color: var(--accent-primary);
}

/* STYLE 1: Asymmetric Grid */
.features-asymmetric {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.features-asymmetric .feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.features-asymmetric .feature-card.large {
  grid-column: span 2;
}

.features-asymmetric .feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent-primary);
}

.style-bot {
    padding: 2rem;
}

.bot-status-container {
  max-width: 1200px;
  margin: 0 auto 3rem;
}

.bot-status {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 2rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
}

.bot-status:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--accent-primary);
}

.status-indicator {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.status-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  position: relative;
  box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.7);
}

.status-dot.online {
  background: #4caf50;
  animation: pulse 2s infinite;
}

.status-dot.offline {
  background: #f44336;
  animation: pulse-offline 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(76, 175, 80, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(76, 175, 80, 0);
  }
}

@keyframes pulse-offline {
  0% {
    box-shadow: 0 0 0 0 rgba(175, 76, 76, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(175, 76, 76, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(175, 76, 76, 0);
  }
}

.status-text {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
}

.status-stats {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.stat-item {
  text-align: center;
}

.stat-value {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent-primary);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border-color);
}

.masonry {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  grid-auto-rows: 120px;
}

.masonry-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.masonry-item.short {
  grid-row: span 2;
}

.masonry-item.medium {
  grid-row: span 3;
}

.masonry-item.tall {
  grid-row: span 4;
}

.masonry-item:hover {
  border-color: var(--accent-primary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.masonry-item .feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.masonry-item h3 {
  font-size: 1.3rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.masonry-item p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  flex: 1;
}

/* Support Section */
.support-section {
  max-width: 1200px;
  margin: 4rem auto 0;
  padding: 4rem 0;
  border-top: 1px solid var(--border-color);
}

.support-content {
  text-align: center;
}

.support-header h2 {
  font-size: 2.5rem;
  color: var(--text-primary);
  margin-bottom: 1rem;
  font-weight: 700;
}

.support-header p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 3rem;
}

.support-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.support-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 2.5rem;
  text-align: left;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.support-card:hover {
  border-color: var(--accent-primary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-8px);
}

.support-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.support-card h3 {
  font-size: 1.4rem;
  color: var(--text-primary);
  margin-bottom: 1rem;
  font-weight: 600;
}

.support-card p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.7;
  flex: 1;
}

.support-link {
  color: var(--accent-primary);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  border-bottom: 2px solid transparent;
}

.support-link:hover {
  gap: 0.75rem;
  border-bottom-color: var(--accent-primary);
}

/* Responsive adjustments for style 8 */
@media (max-width: 968px) {
  .bot-status {
    flex-direction: column;
    gap: 2rem;
    padding: 2rem;
    text-align: center;
  }

  .status-stats {
    flex-wrap: wrap;
    justify-content: center;
  }

  .stat-divider {
    display: none;
  }

  .masonry {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .masonry-item.short,
  .masonry-item.medium,
  .masonry-item.tall {
    grid-row: span 1;
  }

  .support-cards {
    grid-template-columns: 1fr;
  }

  .support-section {
    padding: 3rem 0;
  }
}

/* STYLE 9: Floating Cards */
.floating-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

.feature-float {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 2rem;
  animation: float 6s ease-in-out infinite;
  animation-delay: var(--float-delay);
  transition: all 0.3s ease;
}

.feature-float:hover {
  border-color: var(--accent-primary);
  box-shadow: var(--shadow-lg);
  animation-play-state: paused;
}

/* STYLE 10: Minimalist List */
.minimal-list {
  max-width: 900px;
  margin: 0 auto;
}

.feature-minimal {
  display: flex;
  gap: 3rem;
  padding: 3rem 0;
  border-bottom: 1px solid var(--border-color);
  align-items: flex-start;
  transition: all 0.3s ease;
}

.feature-minimal:last-child {
  border-bottom: none;
}

.minimal-number {
  font-size: 4rem;
  font-weight: 700;
  color: var(--accent-primary);
  opacity: 0.3;
  line-height: 1;
  min-width: 120px;
}

.minimal-content {
  flex: 1;
}

.feature-minimal:hover {
  padding-left: 2rem;
}

.feature-minimal:hover .minimal-number {
  opacity: 1;
}

/* Shared feature styles */
.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.3rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  font-weight: 600;
}

p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* COMMANDS PAGE */
 /* Sidebar Navigation */
 .sidebar-nav {
  position: fixed;
  left: 2rem;
  top: 50%;
  transform: translateY(-50%) translateX(-250px);
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 1.5rem;
  width: 200px;
  box-shadow: var(--shadow-md);
  z-index: 100;
  animation: slideIn 0.6s ease forwards 0.3s;
}

@keyframes slideIn {
  to {
      transform: translateY(-50%) translateX(0);
  }
}

.sidebar-header {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border-color);
}

.sidebar-link {
  display: block;
  padding: 0.75rem 1rem;
  color: var(--text-secondary);
  text-decoration: none;
  border-radius: 8px;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  margin-bottom: 0.25rem;
  position: relative;
}

.sidebar-link:hover {
  background: var(--bg-primary);
  color: var(--accent-primary);
  transform: translateX(4px);
}

.sidebar-link.active {
  background: var(--bg-primary);
  color: var(--accent-primary);
  font-weight: 600;
}

.sidebar-link.active::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 60%;
  background: var(--accent-primary);
  border-radius: 0 2px 2px 0;
}

/* Commands Section */
.commands-section {
  padding: 3rem 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.category-header {
  margin-bottom: 2rem;
}

.category-header h2 {
  font-size: 2rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.category-header p {
  color: var(--text-secondary);
  font-size: 1.05rem;
}

/* Clean List Layout */
.commands-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 3rem;
}

.command-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.command-item:hover {
  border-color: var(--accent-primary);
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}

.command-header {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 0.75rem;
  flex-wrap: wrap;
}

.command-name {
  font-family: 'DM Mono', monospace;
  font-size: 1rem;
  color: var(--accent-primary);
  font-weight: 500;
  background: var(--bg-primary);
  padding: 0.25rem 0.75rem;
  border-radius: 6px;
  border: 1px solid var(--border-color);
}

.command-title {
  font-size: 1.2rem;
  color: var(--text-primary);
  font-weight: 600;
}

.command-description {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.command-params {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.75rem;
  align-items: center;
}

.params-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-right: 0.25rem;
}

.param {
  font-family: 'DM Mono', monospace;
  font-size: 0.85rem;
  color: var(--text-secondary);
  background: var(--bg-primary);
  padding: 0.35rem 0.85rem;
  border-radius: 6px;
  border: 1px solid var(--border-color);
}

.param-none {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-style: italic;
}

.param-name {
  color: var(--accent-secondary);
  font-weight: 600;
}

/* Responsive */
@media (max-width: 1400px) {
  .sidebar-nav {
      display: none;
  }
}

@media (max-width: 968px) {
  .hero h1 {
      font-size: 2.5rem;
  }

  .hero p {
      font-size: 1.1rem;
  }

  nav ul {
      gap: 1rem;
  }

  nav .container {
      padding: 0 1rem;
  }

  .commands-section {
      padding: 2rem 1rem;
  }

  .command-header {
      flex-direction: column;
      align-items: flex-start;
      gap: 0.5rem;
  }

  .command-params {
      flex-direction: column;
      gap: 0.5rem;
  }
}

/* Scroll offset for fixed nav */
section {
  scroll-margin-top: 100px;
}

/* Responsive adjustments */
@media (max-width: 968px) {
  .style-switcher {
    right: 1rem;
    padding: 0.75rem;
  }

  .style-btn {
    width: 35px;
    height: 35px;
    font-size: 0.85rem;
  }

  .features-asymmetric {
    grid-template-columns: 1fr;
  }

  .features-asymmetric .feature-card.large {
    grid-column: span 1;
  }

  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .timeline::before {
    left: 2rem;
  }

  .timeline-item {
    width: calc(100% - 4rem);
    margin-left: 4rem !important;
  }

  .timeline-item::before {
    left: -3.5rem !important;
  }

  .magazine-layout {
    grid-template-columns: 1fr;
  }

  .diagonal-grid {
    grid-template-columns: 1fr;
    transform: rotate(0);
  }

  .feature-diagonal {
    transform: rotate(0);
  }

  .floating-container {
    grid-template-columns: 1fr;
  }

  .feature-minimal {
    flex-direction: column;
    gap: 1rem;
  }

  .minimal-number {
    font-size: 2.5rem;
  }
}

/* Support Server Section - Unique Centered Design */
.support-server-section {
  max-width: 1200px;
  margin: 6rem auto;
  padding: 0 2rem;
  position: relative;
}

.support-server-content {
  position: relative;
  background: linear-gradient(135deg, rgba(155, 107, 79, 0.1), rgba(125, 78, 122, 0.1));
  border: 2px solid var(--border-color);
  border-radius: 32px;
  padding: 5rem 3rem;
  text-align: center;
  overflow: hidden;
  transition: all 0.4s ease;
}

.support-server-content:hover {
  border-color: var(--accent-primary);
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(201, 153, 119, 0.2);
}

/* Decorative elements */
.support-server-content::after {
  content: '💬';
  position: absolute;
  top: 2rem;
  right: 3rem;
  font-size: 4rem;
  opacity: 0.1;
  transform: rotate(15deg);
}

.community-icon-large {
  width: 120px;
  height: 120px;
  margin: 0 auto 2rem;
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  box-shadow: 0 12px 30px rgba(155, 107, 79, 0.3);
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
      transform: translateY(0px);
  }
  50% {
      transform: translateY(-10px);
  }
}

.support-server-header h2 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.2;
}

.support-server-header p {
  font-size: 1.3rem;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto 3rem;
  line-height: 1.7;
}

.support-server-cta {
  margin-top: 3rem;
}

.discord-button {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 3.5rem;
  background: #5865F2;
  color: white;
  text-decoration: none;
  border-radius: 16px;
  font-weight: 700;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(88, 101, 242, 0.4);
  position: relative;
  overflow: hidden;
}

.discord-button::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.discord-button:hover::before {
  width: 300px;
  height: 300px;
}

.discord-button:hover {
  background: #4752C4;
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 12px 32px rgba(88, 101, 242, 0.5);
}

.discord-button svg {
  width: 28px;
  height: 28px;
  position: relative;
  z-index: 1;
}

.discord-button span {
  position: relative;
  z-index: 1;
}

/* Responsive */
@media (max-width: 968px) {
  .support-server-section {
      margin: 3rem 1rem;
  }

  .support-server-content {
      padding: 3rem 1.5rem;
  }

  .support-server-header h2 {
      font-size: 2.5rem;
  }

  .support-server-header p {
      font-size: 1.1rem;
  }

  .community-icon-large {
      width: 100px;
      height: 100px;
      font-size: 3rem;
  }

  .discord-button {
      padding: 1.25rem 2rem;
      font-size: 1rem;
  }
}

/* Coming Soon Badge - Option 1 */
.coming-soon-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.9rem;
  background: linear-gradient(135deg, rgba(201, 153, 119, 0.15), rgba(166, 122, 174, 0.15));
  border: 1px solid var(--accent-primary);
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent-primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-left: auto;
  animation: pulse-glow 2s ease-in-out infinite;
}

.coming-soon-badge::before {
  content: '🚧';
  font-size: 0.9rem;
}

@keyframes pulse-glow {
  0%, 100% {
      box-shadow: 0 0 0 0 rgba(201, 153, 119, 0.4);
  }
  50% {
      box-shadow: 0 0 0 8px rgba(201, 153, 119, 0);
  }
}

/* Disabled state for coming soon commands */
.command-item.coming-soon {
  opacity: 0.6;
  position: relative;
}

.command-item.coming-soon::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(13, 13, 13, 0.3), rgba(31, 31, 31, 0.3));
  border-radius: 16px;
  pointer-events: none;
}

.command-item.coming-soon:hover {
  transform: none;
  border-color: var(--border-color);
}

.premium-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.9rem;
  background: linear-gradient(135deg, rgba(255, 200, 50, 0.15), rgba(255, 150, 0, 0.15));
  border: 1px solid #f0b429;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #f0b429;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-left: auto;
}

.premium-badge::before {
  content: '⭐';
  font-size: 0.9rem;
}

.command-item.premium {
  border-color: rgba(240, 180, 41, 0.3);
}

.command-item.premium:hover {
  border-color: #f0b429;
  box-shadow: 0 4px 12px rgba(240, 180, 41, 0.15);
}