/* Reset & Base Styles */
:root {
  --primary-bg: #0a0b0f;
  --secondary-bg: #11131e;
  --card-bg: #1a1d2d;
  --card-border: #2a2f45;
  --accent-primary: #00d4ff;
  --accent-secondary: #8a2be2;
  --accent-tertiary: #00ff9d;
  --text-primary: #ffffff;
  --text-secondary: #b0b7d9;
  --text-muted: #737aa3;
  --success: #00ff9d;
  --warning: #ffb300;
  --danger: #ff4d4d;
  --font-main: 'Space Grotesk', sans-serif;
  --font-mono: 'IBM Plex Mono', monospace;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  background-color: var(--primary-bg);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Background Elements */
.bg-elements {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  overflow: hidden;
}

.bg-circle {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.15;
}

.circle-1 {
  width: 500px;
  height: 500px;
  background: var(--accent-primary);
  top: -200px;
  right: -100px;
}

.circle-2 {
  width: 400px;
  height: 400px;
  background: var(--accent-secondary);
  bottom: -150px;
  left: -100px;
}

.bg-hex {
  position: absolute;
  width: 300px;
  height: 300px;
  background: linear-gradient(45deg, transparent 40%, var(--accent-tertiary));
  opacity: 0.05;
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
}

.hex-1 {
  top: 40%;
  left: 10%;
}

.hex-2 {
  bottom: 20%;
  right: 15%;
  transform: rotate(30deg);
}

/* Navigation */
.cyber-nav {
  background: rgba(10, 11, 15, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(42, 47, 69, 0.3);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  width: 40px;
  height: 40px;
  position: relative;
}

.logo-dot {
  position: absolute;
  width: 12px;
  height: 12px;
  background: var(--accent-primary);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.logo-ring {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 2px solid var(--accent-secondary);
  border-radius: 50%;
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.5px;
}

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

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

.nav-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s;
  padding: 0.5rem 1rem;
  border-radius: 8px;
}

.nav-link:hover {
  color: var(--accent-primary);
  background: rgba(0, 212, 255, 0.1);
}

.nav-link i {
  font-size: 1.1rem;
}

/* Cyber Buttons */
.cyber-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  border-radius: 4px;
}

.cyber-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  transition: left 0.5s;
}

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

.cyber-btn.primary {
  background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
  color: var(--primary-bg);
}

.cyber-btn.outline {
  background: transparent;
  color: var(--accent-primary);
  border: 1px solid var(--accent-primary);
}

.cyber-btn.small {
  padding: 8px 16px;
  font-size: 0.8rem;
}

/* Hero Section */
.cyber-hero {
  padding: 6rem 2rem 8rem;
  position: relative;
}

.hero-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 212, 255, 0.1);
  padding: 8px 16px;
  border-radius: 20px;
  margin-bottom: 2rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
}

.badge-pulse {
  width: 8px;
  height: 8px;
  background: var(--accent-primary);
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

.hero-title {
  font-size: 3.5rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.title-line {
  display: block;
}

.gradient-text {
  background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.hero-description strong {
  color: var(--accent-primary);
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 3rem;
}

.stat {
  text-align: center;
}

.stat-value {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-primary);
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--card-border);
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Hero Visual */
.hero-visual {
  position: relative;
}

.visual-container {
  background: var(--secondary-bg);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.blockchain-visual {
  position: relative;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.node {
  position: absolute;
  width: 60px;
  height: 60px;
  background: var(--card-bg);
  border: 2px solid var(--accent-primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--accent-primary);
}

.node::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.7rem;
  color: var(--text-muted);
  white-space: nowrap;
}

.node-1 {
  left: 15%;
  top: 50%;
  transform: translateY(-50%);
}

.node-2 {
  right: 15%;
  top: 30%;
}

.node-3 {
  right: 15%;
  bottom: 30%;
}

.mixer-core {
  width: 100px;
  height: 100px;
  background: var(--card-bg);
  border: 2px solid var(--accent-secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--accent-secondary);
  position: relative;
  z-index: 2;
}

.core-glow {
  position: absolute;
  width: 120px;
  height: 120px;
  background: var(--accent-secondary);
  border-radius: 50%;
  filter: blur(20px);
  opacity: 0.3;
  z-index: 1;
}

.connection {
  position: absolute;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
  z-index: 1;
}

.conn-1 {
  width: 20%;
  left: 15%;
  top: 50%;
}

.conn-2 {
  width: 20%;
  right: 15%;
  top: 30%;
}

.conn-3 {
  width: 20%;
  right: 15%;
  bottom: 30%;
}

.visual-label {
  text-align: center;
  margin-top: 1.5rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  letter-spacing: 1px;
}

/* Sections */
.section-dark, .section-light {
  padding: 6rem 2rem;
}

.section-dark {
  background: var(--secondary-bg);
}

.section-light {
  background: var(--primary-bg);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
}

.text-gradient {
  background: linear-gradient(90deg, var(--accent-primary), var(--accent-tertiary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto;
}

.section-subtitle strong {
  color: var(--accent-primary);
}

/* Tech Cards */
.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.tech-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.tech-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, var(--accent-primary), var(--accent-secondary));
}

.tech-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-primary);
  box-shadow: 0 10px 30px rgba(0, 212, 255, 0.1);
}

.tech-icon {
  width: 60px;
  height: 60px;
  background: rgba(0, 212, 255, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  color: var(--accent-primary);
}

.tech-card h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.tech-card p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  background: rgba(138, 43, 226, 0.1);
  color: var(--accent-secondary);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
}

/* Comparison Table */
.comparison-table {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 2rem;
}

.table-header {
  display: grid;
  grid-template-columns: 2fr 1fr 0.8fr 1fr 0.8fr;
  background: rgba(42, 47, 69, 0.5);
  padding: 1.5rem 2rem;
  font-weight: 600;
  color: var(--accent-primary);
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
}

.table-row {
  display: grid;
  grid-template-columns: 2fr 1fr 0.8fr 1fr 0.8fr;
  padding: 1.5rem 2rem;
  border-bottom: 1px solid var(--card-border);
  align-items: center;
  transition: background 0.3s;
}

.table-row:last-child {
  border-bottom: none;
}

.table-row:hover {
  background: rgba(0, 212, 255, 0.05);
}

.table-row.featured {
  background: linear-gradient(90deg, rgba(0, 212, 255, 0.05), transparent);
  position: relative;
}

.table-row.featured::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 4px;
  background: var(--accent-primary);
}

.service-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.service-icon {
  width: 50px;
  height: 50px;
  background: rgba(0, 212, 255, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--accent-primary);
}

.service-info h4 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.service-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.service-tag {
  font-size: 0.7rem;
  padding: 3px 8px;
  border-radius: 4px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.service-tag.best {
  background: rgba(0, 255, 157, 0.1);
  color: var(--accent-tertiary);
}

.service-tag.non-custodial {
  background: rgba(0, 212, 255, 0.1);
  color: var(--accent-primary);
}

.service-tag.open-source {
  background: rgba(255, 179, 0, 0.1);
  color: var(--warning);
}

.service-tag.easy, .service-tag.fast, .service-tag.web {
  background: rgba(138, 43, 226, 0.1);
  color: var(--accent-secondary);
}

.table-col {
  padding: 0 10px;
}

.status {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.status.success {
  background: rgba(0, 255, 157, 0.1);
  color: var(--accent-tertiary);
}

.status.warning {
  background: rgba(255, 179, 0, 0.1);
  color: var(--warning);
}

.stars {
  color: #ffb300;
  font-size: 1.2rem;
  letter-spacing: 2px;
}

.table-note {
  background: rgba(255, 179, 0, 0.1);
  border-left: 4px solid var(--warning);
  padding: 1.5rem;
  border-radius: 8px;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.table-note i {
  color: var(--warning);
  font-size: 1.5rem;
  margin-top: 2px;
}

.table-note p {
  color: var(--text-secondary);
  margin: 0;
}

/* Steps */
.steps-container {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.step-tracker {
  position: absolute;
  left: 30px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--accent-primary), var(--accent-secondary));
  z-index: 1;
}

.step {
  display: flex;
  gap: 2rem;
  margin-bottom: 4rem;
  position: relative;
  z-index: 2;
}

.step:last-child {
  margin-bottom: 0;
}

.step-number {
  font-family: var(--font-mono);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent-primary);
  background: var(--card-bg);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--accent-primary);
  flex-shrink: 0;
  position: relative;
}

.step-content {
  flex: 1;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 2rem;
  margin-top: 1rem;
}

.step h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: var(--accent-primary);
}

.step p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.step-tip {
  background: rgba(0, 212, 255, 0.1);
  border-left: 4px solid var(--accent-primary);
  padding: 1rem;
  border-radius: 0 8px 8px 0;
  margin-top: 1.5rem;
}

.step-warning {
  background: rgba(255, 77, 77, 0.1);
  border: 1px solid var(--danger);
  padding: 1rem;
  border-radius: 8px;
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-top: 1.5rem;
}

.step-warning i {
  color: var(--danger);
  font-size: 1.2rem;
}

/* Tech Deep Dive */
.tech-deepdive {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.tech-diagram {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 3rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.diagram-node {
  background: var(--secondary-bg);
  border: 2px solid var(--accent-primary);
  padding: 1.5rem 2rem;
  border-radius: 12px;
  font-weight: 600;
  color: var(--accent-primary);
  min-width: 200px;
  text-align: center;
}

.diagram-mixer {
  background: var(--secondary-bg);
  border: 2px solid var(--accent-secondary);
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  min-width: 300px;
}

.mixer-title {
  font-family: var(--font-mono);
  color: var(--accent-secondary);
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  letter-spacing: 1px;
}

.mixer-pool {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.pool-coin {
  width: 40px;
  height: 40px;
  background: linear-gradient(45deg, var(--accent-primary), var(--accent-secondary));
  border-radius: 50%;
  animation: float 3s infinite ease-in-out;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.pool-coin:nth-child(2) { animation-delay: 0.2s; }
.pool-coin:nth-child(3) { animation-delay: 0.4s; }
.pool-coin:nth-child(4) { animation-delay: 0.6s; }
.pool-coin:nth-child(5) { animation-delay: 0.8s; }

.diagram-arrow {
  display: flex;
  align-items: center;
  width: 100%;
  position: relative;
}

.arrow-line {
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
}

.arrow-head {
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 12px solid var(--accent-secondary);
}

.tech-content h3 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: var(--accent-primary);
}

.tech-content p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.tech-specs {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 1.5rem;
  margin: 2rem 0;
}

.spec {
  display: flex;
  justify-content: space-between;
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--card-border);
}

.spec:last-child {
  border-bottom: none;
}

.spec-label {
  color: var(--text-secondary);
  font-weight: 500;
}

.spec-value {
  color: var(--accent-primary);
  font-family: var(--font-mono);
  font-weight: 600;
}

/* FAQ */
.faq-section {
  padding-bottom: 8rem;
}

.faq-grid {
  max-width: 900px;
  margin: 0 auto;
}

.faq-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: all 0.3s;
}

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

.faq-question {
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question h4 {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.1rem;
}

.faq-question i {
  color: var(--accent-primary);
}

.faq-toggle {
  font-size: 1.5rem;
  color: var(--accent-primary);
  transition: transform 0.3s;
}

.faq-answer {
  padding: 0 2rem;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s;
}

.faq-card.active .faq-answer {
  padding: 0 2rem 1.5rem;
  max-height: 500px;
}

.faq-card.active .faq-toggle {
  transform: rotate(45deg);
}

/* Footer */
.cyber-footer {
  background: #08090d;
  border-top: 1px solid var(--card-border);
  padding: 4rem 2rem 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 3rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1.5rem;
}

.logo-icon.small {
  width: 30px;
  height: 30px;
}

.footer-description {
  color: var(--text-secondary);
  line-height: 1.8;
}

.footer-description strong {
  color: var(--accent-primary);
}

.footer-col h5 {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: var(--accent-primary);
}

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

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

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s;
}

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

.footer-bottom {
  border-top: 1px solid var(--card-border);
  padding-top: 2rem;
  text-align: center;
}

.disclaimer {
  background: rgba(255, 179, 0, 0.1);
  border-left: 4px solid var(--warning);
  padding: 1.5rem;
  border-radius: 0 8px 8px 0;
  margin-bottom: 2rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.disclaimer i {
  color: var(--warning);
  font-size: 1.5rem;
  margin-top: 2px;
}

.disclaimer strong {
  color: var(--accent-primary);
}

.copyright {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-container,
  .tech-deepdive,
  .footer-grid {
      grid-template-columns: 1fr;
  }
  
  .hero-title {
      font-size: 2.8rem;
  }
  
  .nav-menu {
      display: none;
  }
  
  .comparison-table {
      overflow-x: auto;
  }
  
  .table-header,
  .table-row {
      min-width: 800px;
  }
}

@media (max-width: 768px) {
  .section-header h2 {
      font-size: 2.2rem;
  }
  
  .hero-title {
      font-size: 2.2rem;
  }
  
  .hero-stats {
      flex-direction: column;
      gap: 1.5rem;
  }
  
  .stat-divider {
      display: none;
  }
  
  .step {
      flex-direction: column;
      gap: 1rem;
  }
  
  .step-number {
      align-self: flex-start;
  }
  
  .step-tracker {
      display: none;
  }
  
  .footer-grid {
      grid-template-columns: 1fr;
      gap: 2rem;
  }
}
/* Bitcoin Mixers Gallery - Minimal */
.mixers-gallery {
  padding: 6rem 2rem;
  background: var(--primary-bg);
}

.mixers-gallery h2 {
  text-align: center;
  font-size: 2.8rem;
  margin-bottom: 3rem;
  color: var(--accent-primary);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-item {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 180px;
}

.gallery-item:hover {
  transform: translateY(-8px);
  border-color: var(--accent-primary);
  box-shadow: 0 15px 30px rgba(0, 212, 255, 0.15);
}

.mixer-logo {
  width: 60px;
  height: 60px;
  background: rgba(0, 212, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 1.8rem;
  color: var(--accent-primary);
  transition: all 0.3s;
}

.gallery-item:hover .mixer-logo {
  background: var(--accent-primary);
  color: var(--primary-bg);
  transform: scale(1.1);
}

.mixer-name {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.mixer-tag {
  font-size: 0.8rem;
  color: var(--accent-secondary);
  background: rgba(138, 43, 226, 0.1);
  padding: 4px 12px;
  border-radius: 20px;
  font-weight: 500;
}

/* Different colors for each mixer */
.gallery-item:nth-child(1) .mixer-logo { color: #00d4ff; }
.gallery-item:nth-child(2) .mixer-logo { color: #8a2be2; }
.gallery-item:nth-child(3) .mixer-logo { color: #00ff9d; }
.gallery-item:nth-child(4) .mixer-logo { color: #ffb300; }
.gallery-item:nth-child(5) .mixer-logo { color: #ff4d4d; }
.gallery-item:nth-child(6) .mixer-logo { color: #9c27b0; }
.gallery-item:nth-child(7) .mixer-logo { color: #00bcd4; }
.gallery-item:nth-child(8) .mixer-logo { color: #4caf50; }

/* Responsive Gallery */
@media (max-width: 1024px) {
  .gallery-grid {
      grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
      gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .gallery-grid {
      grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
      gap: 1rem;
  }
  
  .gallery-item {
      padding: 1.5rem 1rem;
      min-height: 160px;
  }
  
  .mixer-logo {
      width: 50px;
      height: 50px;
      font-size: 1.5rem;
  }
  
  .mixer-name {
      font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
      grid-template-columns: repeat(2, 1fr);
  }
  
  .mixers-gallery h2 {
      font-size: 2.2rem;
  }
}
.mixer-logo img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}