@import url('https://fonts.cdnfonts.com/css/supercell-magic');

/* 
  Lineage 2 Server Theme
  Theme: Medieval / Fantasy / Gold & Dark
*/

:root {
  /* Colors */
  --bg-dark: #0a0a0a;
  --bg-panel: #141414;
  --bg-overlay: rgba(0, 0, 0, 0.85);

  --primary-gold: #d4af37;
  --primary-gold-bright: #f1c40f;
  --primary-gold-dim: #8a6d3b;

  --accent-red: #800000;
  --accent-copper: #b87333;

  --text-main: #ecf0f1;
  --text-muted: #95a5a6;
  --text-highlight: #ffffff;

  /* Borders & Glows */
  --border-gold: 1px solid var(--primary-gold-dim);
  --box-shadow-gold: 0 0 10px rgba(212, 175, 55, 0.2);
  --box-shadow-glow: 0 0 20px rgba(212, 175, 55, 0.4);

  /* Fonts */
  --font-heading: 'Supercell-Magic', serif;
  --font-body: 'Roboto', sans-serif;

  /* Transitions */
  --transition-fast: 0.3s ease;
}

/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Specific tweaks */
.hero {
  min-height: 100vh;
  /* Ensure hero takes full height */
  border-bottom: none;
  /* Remove border as it might look weird in horizontal */
}

.section-padding {
  padding-top: 100px;
  /* More padding for content */
  padding-bottom: 40px;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

ul {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  text-transform: uppercase;
  color: var(--primary-gold);
  letter-spacing: 1px;
}

/* Utilities */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-padding {
  padding: 80px 0;
}

.text-center {
  text-align: center;
}

.glow-text {
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.gold-border {
  border: 1px solid var(--primary-gold-dim);
  box-shadow: var(--box-shadow-gold);
}

/* Button Base */
.btn {
  display: inline-block;
  padding: 12px 30px;
  font-family: var(--font-heading);
  text-transform: uppercase;
  font-weight: 700;
  border: 1px solid var(--primary-gold);
  background: linear-gradient(to bottom, rgba(212, 175, 55, 0.2), rgba(0, 0, 0, 0.8));
  color: var(--primary-gold-bright);
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.3s, border-color 0.3s;
  position: relative;
  overflow: hidden;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--box-shadow-glow);
  border-color: var(--primary-gold-bright);
  color: #fff;
}

.btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: 0.5s;
}


/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), transparent);
  transition: var(--transition-fast);
  border-bottom: 1px solid transparent;
  flex-direction: row;
  height: auto;
}

.navbar.scrolled {
  background: rgba(10, 10, 10, 0.95);
  padding: 10px 0;
  border-bottom: 1px solid var(--primary-gold-dim);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo a {
  display: flex;
  align-items: center;
}

.nav-logo-img {
  height: 100px;
  /* Standardized size */
  width: auto;
  filter: drop-shadow(0 0 5px rgba(212, 175, 55, 0.5));
  transition: transform 0.3s ease;
  transform: translateY(10px);
  /* Moderate push down */
}

.nav-logo-img:hover {
  transform: scale(1.05) translateY(15px);
  filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.8));
}

.nav-links {
  display: flex;
  flex-direction: row;
  gap: 30px;
  margin-top: 0;
  width: auto;
}

.nav-links a {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-muted);
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary-gold);
}

.nav-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 50%;
  background: var(--primary-gold);
  transition: var(--transition-fast);
  transform: translateX(-50%);
}

.nav-links a:hover::after {
  width: 100%;
}

.btn-sm {
  padding: 8px 20px;
  font-size: 0.8rem;
}

.mobile-menu-toggle {
  display: none;
  font-size: 1.5rem;
  color: var(--primary-gold);
  cursor: pointer;
}

/* Hero Section */
.hero {
  height: 100vh;
  min-height: 600px;
  background: url('../assets/hero-bg-new.png') no-repeat center center/cover;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-bottom: 2px solid var(--primary-gold-dim);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.7) 100%), linear-gradient(to bottom, transparent 80%, var(--bg-dark) 100%);
}

.hero-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1400px;
  /* Wider for 3 columns */
  padding: 0 20px;
  gap: 20px;
  position: relative;
  z-index: 2;
}

.hero-left,
.hero-right {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-center {
  flex: 1.5;
  /* Center text takes a bit more space */
  text-align: center;
  padding: 0 20px;
}

.hero-logo-img {
  max-width: 100%;
  height: auto;
  max-height: 550px;
  /* Increased size to match "red square" */
  filter: drop-shadow(0 0 15px rgba(0, 0, 0, 0.8));
  animation: float 6s ease-in-out infinite;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.hero-logo-img:hover {
  transform: scale(1.05) rotate(2deg);
  filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.6));
}

.hero-char-img {
  max-width: 100%;
  height: auto;
  max-height: 500px;
}

.hero h1 {
  font-size: 2.8rem;
  /* Decreased size */
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.8), 0 0 20px rgba(212, 175, 55, 0.3);
}

.hero p {
  font-size: 1.3rem;
  margin-bottom: 40px;
  color: var(--text-highlight);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
  font-weight: 300;
}

/* Animations */
.floating-effect {
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translateY(0px);
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.2));
  }

  50% {
    transform: translateY(-20px);
    filter: drop-shadow(0 0 25px rgba(212, 175, 55, 0.5));
  }

  100% {
    transform: translateY(0px);
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.2));
  }
}

.fade-in-up {
  animation: fadeInUp 1s ease-out forwards;
  opacity: 0;
  transform: translateY(30px);
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-left {
  animation: fadeInLeft 1s ease-out forwards;
  opacity: 0;
  transform: translateX(-30px);
}

@keyframes fadeInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.fade-in-right {
  animation: fadeInRight 1s ease-out forwards;
  opacity: 0;
  transform: translateX(30px);
}

@keyframes fadeInRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.btn-lg {
  padding: 15px 40px;
  font-size: 1.2rem;
}

.btn-discord {
  border-color: #7289da;
  background: linear-gradient(to bottom, rgba(114, 137, 218, 0.2), rgba(0, 0, 0, 0.8));
  color: #7289da;
}

.btn-discord:hover {
  border-color: #fff;
  box-shadow: 0 0 15px rgba(114, 137, 218, 0.4);
}

/* Section Common */
.section-title {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.separator-gold {
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--primary-gold), transparent);
  margin: 0 auto;
  position: relative;
}

.separator-gold::after {
  content: '♦';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--primary-gold);
  background: var(--bg-dark);
  padding: 0 10px;
}

/* Features - Server Status */
.section-features {
  position: relative;
  background: url('../assets/features-bg.png') no-repeat center center/cover;
  padding: 100px 0;
}

.section-features::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  /* Dark overlay to ensure text readability */
  z-index: 1;
}

.section-features .container {
  position: relative;
  z-index: 2;
  overflow: hidden;
  /* Hide overflow for carousel */
}

/* 3D Carousel Styles */
.carousel-container {
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  perspective: 1000px;
  padding: 40px 0;
}

.carousel-track-container {
  width: 100%;
  overflow: hidden;
  padding: 20px 0;
  /* Space for scaling */
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease-out;
  list-style: none;
  padding: 0;
  margin: 0;
  width: fit-content;
  /* Allow track to grow */
  will-change: transform;
}

.carousel-card {
  width: 300px;
  flex-shrink: 0;
  margin: 0 15px;
  /* Spacing between cards */
  background: var(--bg-panel);
  border: 1px solid rgba(212, 175, 55, 0.2);
  padding: 30px 20px;
  text-align: center;
  transition: all 0.5s ease;
  opacity: 0.5;
  transform: scale(0.85);
  filter: blur(1px) grayscale(0.5);
  border-radius: 8px;
  position: relative;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

.carousel-card.active {
  opacity: 1;
  transform: scale(1.1);
  filter: none;
  border-color: var(--primary-gold);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.3), 0 10px 30px rgba(0, 0, 0, 0.6);
  z-index: 10;
  background: linear-gradient(to bottom, #1a1a1a, #0e0e0e);
}

.carousel-card i {
  font-size: 2.5rem;
  margin-bottom: 20px;
  background: linear-gradient(to bottom, var(--primary-gold-bright), var(--primary-gold));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
}

.carousel-card h3 {
  font-size: 1.4rem;
  margin-bottom: 20px;
  color: var(--primary-gold-bright);
}

.carousel-card .feature-list {
  padding: 0;
  list-style: none;
  text-align: left;
  display: inline-block;
  width: 100%;
}

.carousel-card .feature-list li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--text-muted);
  font-size: 0.95rem;
  display: flex;
  justify-content: space-between;
}

.carousel-card .feature-list li:last-child {
  border-bottom: none;
}

/* Navigation Buttons */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid var(--primary-gold-dim);
  color: var(--primary-gold);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 100;
  pointer-events: auto;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.carousel-btn:hover {
  background: var(--primary-gold);
  color: #000;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
}

.carousel-btn.prev {
  left: 0;
}

.carousel-btn.next {
  right: 0;
}

/* Indicators */
.carousel-indicators {
  text-align: center;
  margin-top: 20px;
}

.indicator {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 5px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.indicator.active {
  background-color: var(--primary-gold);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.8);
  transform: scale(1.2);
}

/* Mobile Tweaks */
@media (max-width: 768px) {
  .carousel-card {
    width: 260px;
    /* Smaller cards on mobile */
  }

  .carousel-btn {
    width: 35px;
    height: 35px;
  }
}

/* Play Now */
.section-play {
  background: linear-gradient(to right, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.6)), url('../assets/hero-bg.png') no-repeat center bottom/cover;
  /* Reusing hero bg for texture */
  background-attachment: fixed;
  border-top: 1px solid var(--primary-gold-dim);
  border-bottom: 1px solid var(--primary-gold-dim);
}

.play-options {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 50px;
  flex-wrap: wrap;
}

.play-card {
  background: rgba(0, 0, 0, 0.8);
  border: 1px solid var(--primary-gold);
  padding: 40px;
  width: 300px;
  text-align: center;
  position: relative;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}

.play-card::before {
  content: '';
  position: absolute;
  top: 5px;
  left: 5px;
  right: 5px;
  bottom: 5px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  pointer-events: none;
}

.play-card h3 {
  color: var(--primary-gold-bright);
  margin-bottom: 10px;
}

.play-card .btn {
  margin-top: 20px;
  width: 100%;
}

/* Champions */
.champions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.champion-card {
  background: var(--bg-panel);
  border: 1px solid #333;
  display: flex;
  align-items: center;
  padding: 15px;
  transition: var(--transition-fast);
}

.champion-card:hover {
  border-color: var(--primary-gold-dim);
  background: rgba(212, 175, 55, 0.05);
}

.champion-card .rank {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: bold;
  color: var(--primary-gold-dim);
  margin-right: 20px;
  width: 40px;
  text-align: center;
}

.champion-card .avatar {
  width: 60px;
  height: 60px;
  background: #222;
  border-radius: 50%;
  border: 2px solid var(--primary-gold-dim);
  margin-right: 15px;
  /* Placeholder for avatar image */
}

.champion-card .info h4 {
  font-size: 1.1rem;
  color: var(--text-main);
  margin-bottom: 2px;
}

.champion-card .info p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Media */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
}

.gallery-item {
  aspect-ratio: 16/9;
  overflow: hidden;
  border: 1px solid #333;
  cursor: pointer;
  position: relative;
  transition: var(--transition-fast);
}

.gallery-item:hover {
  border-color: var(--primary-gold);
}

.img-placeholder {
  width: 100%;
  height: 100%;
  background: #1a1a1a;
  background-image: linear-gradient(45deg, #222 25%, transparent 25%, transparent 75%, #222 75%, #222),
    linear-gradient(45deg, #222 25%, transparent 25%, transparent 75%, #222 75%, #222);
  background-size: 20px 20px;
  background-position: 0 0, 10px 10px;
  transition: transform 0.5s;
}

.gallery-item:hover .img-placeholder {
  transform: scale(1.1);
}

/* Donate */
.section-donate {
  background: linear-gradient(to top, #1a0500, var(--bg-dark));
  border-top: 1px solid var(--accent-red);
}

.section-donate h2 {
  color: var(--accent-copper);
}

.donate-actions {
  margin-top: 40px;
}

/* Footer */
.footer {
  background: #050505;
  padding: 60px 0 20px;
  border-top: 1px solid #222;
}

.footer-content {
  text-align: center;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--primary-gold-dim);
  margin-bottom: 20px;
}

.social-links {
  margin-bottom: 30px;
}

.social-links a {
  font-size: 1.5rem;
  margin: 0 15px;
  color: var(--text-muted);
}

.social-links a:hover {
  color: var(--primary-gold);
}

.footer p {
  color: #444;
  font-size: 0.8rem;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
  .hero-container {
    flex-direction: column;
    padding-top: 100px;
    padding-bottom: 50px;
  }

  .hero-left,
  .hero-right {
    order: 2;
    /* Move images below text on mobile if desired, or mix */
  }

  .hero-center {
    order: 1;
    margin-bottom: 40px;
  }

  .hero-right {
    display: flex;
    order: 3;
  }

  .hero-logo-img {
    max-height: 200px;
  }

  body {
    padding-left: 0;
    overflow-x: hidden;
    overflow-y: auto;
  }

  .hero {
    min-height: 100vh;
  }

  .nav-links {
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    background: var(--bg-dark);
    flex-direction: column;
    padding: 20px;
    gap: 20px;
    border-bottom: 1px solid var(--primary-gold-dim);
    transform: translateY(-150%);
    opacity: 0;
    transition: 0.3s ease;
    z-index: 999;
  }

  .nav-links.active {
    transform: translateY(0);
    opacity: 1;
  }

  .nav-actions {
    display: none;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .play-options {
    flex-direction: column;
    align-items: center;
  }
}

/* Guide Page Styles */
.hero-small {
  min-height: 40vh;
  height: 400px;
  background: url('../assets/hero-bg.png') no-repeat center center/cover;
}

.guide-content {
  color: var(--text-main);
  max-width: 1000px;
}

.guide-section {
  margin-bottom: 60px;
}

.guide-section h2 {
  font-size: 2rem;
  border-bottom: 2px solid var(--primary-gold-dim);
  padding-bottom: 15px;
  margin-bottom: 30px;
  color: var(--primary-gold);
}

.guide-section h3,
.guide-section h4 {
  color: var(--primary-gold-bright);
  margin-bottom: 15px;
}

.guide-card {
  background: var(--bg-panel);
  border: 1px solid rgba(212, 175, 55, 0.2);
  padding: 30px;
  border-radius: 5px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.guide-card ol,
.guide-card ul {
  margin-left: 20px;
}

.guide-card li {
  margin-bottom: 15px;
}

.guide-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.guide-item {
  background: rgba(20, 20, 20, 0.8);
  padding: 20px;
  border: 1px solid var(--primary-gold-dim);
  text-align: center;
}

.guide-item i {
  font-size: 2rem;
  color: var(--primary-gold);
  margin-bottom: 15px;
}

/* Guide Table */
.guide-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-panel);
}

.guide-table th,
.guide-table td {
  padding: 15px;
  text-align: left;
  border-bottom: 1px solid #333;
}

.guide-table th {
  background: var(--primary-gold-dim);
  color: #fff;
  font-family: var(--font-heading);
}

.guide-table tr:hover {
  background: rgba(212, 175, 55, 0.1);
}

/* Guide Alert */
.guide-alert {
  padding: 15px;
  margin-bottom: 20px;
  border-left: 5px solid;
  background: rgba(0, 0, 0, 0.3);
}

.guide-alert.warning {
  border-color: var(--accent-red);
  color: #ffcccc;
}

.guide-alert i {
  margin-right: 10px;
  color: var(--accent-red);
}

/* Steps */
.guide-steps {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.step {
  display: flex;
  align-items: center;
  background: var(--bg-panel);
  padding: 15px;
  border-radius: 5px;
}

.step-number {
  background: var(--primary-gold);
  color: #000;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  margin-right: 15px;
  flex-shrink: 0;
}

/* ZOE PRO STYLES */
.page-zoe {
  background-color: #0b0b0b;
}

.zoe-hero-pro {
  padding: 180px 0 60px;
  background: radial-gradient(circle at top, #1a1a1a 0%, #0b0b0b 70%);
  text-align: center;
}

.zoe-badge {
  display: inline-block;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--primary-gold-dim);
  color: var(--primary-gold);
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.zoe-hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 15px;
  font-weight: 700;
  letter-spacing: -1px;
}

.zoe-hero-content .text-gold {
  color: var(--primary-gold);
}

.zoe-subtitle {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 40px;
  font-family: 'Inter', sans-serif;
}

/* Quick Search Box */
.zoe-search-box {
  max-width: 700px;
  margin: 0 auto;
}

.search-input-wrapper {
  position: relative;
  display: flex;
  background: #151515;
  border: 1px solid #333;
  border-radius: 8px;
  /* More rectangular, professional */
  padding: 5px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  transition: border-color 0.3s;
}

.search-input-wrapper:focus-within {
  border-color: var(--primary-gold);
}

.search-input-wrapper i {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
}

.search-input-wrapper input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 15px 15px 15px 50px;
  color: #fff;
  font-size: 1rem;
  outline: none;
}

.btn-zoe-pro {
  background: var(--primary-gold);
  color: #000;
  border: none;
  padding: 0 25px;
  border-radius: 5px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s;
}

.btn-zoe-pro:hover {
  background: var(--primary-gold-bright);
}

.zoe-suggestions {
  margin-top: 15px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.zoe-suggestions span {
  margin-right: 10px;
}

.zoe-suggestions button {
  background: transparent;
  border: 1px solid #333;
  color: #888;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 0.8rem;
  margin-right: 8px;
  cursor: pointer;
  transition: 0.2s;
}

.zoe-suggestions button:hover {
  border-color: #666;
  color: #ccc;
}

/* Workspace */
.zoe-workspace {
  min-height: 600px;
  padding-bottom: 60px;
}

.zoe-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 30px;
  border-bottom: 1px solid #222;
  padding-bottom: 20px;
}

.tab-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  padding: 10px 20px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 500;
  border-bottom: 2px solid transparent;
  transition: 0.3s;
}

.tab-btn:hover {
  color: #fff;
}

.tab-btn.active {
  color: var(--primary-gold);
  border-bottom-color: var(--primary-gold);
}

.zoe-panel {
  display: none;
}

.zoe-panel.active {
  display: block;
  animation: fadeIn 0.4s ease;
}

/* Panel Layouts */
.chat-pro-layout,
.gen-pro-layout {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 20px;
  height: 600px;
  background: #111;
  border: 1px solid #222;
  border-radius: 8px;
  overflow: hidden;
}

/* Sidebar */
.chat-history-sidebar,
.gen-sidebar {
  background: #0e0e0e;
  border-right: 1px solid #222;
  padding: 20px;
  display: flex;
  flex-direction: column;
}

.chat-history-sidebar h3,
.gen-sidebar h3 {
  font-size: 0.8rem;
  text-transform: uppercase;
  color: #555;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

.history-item {
  padding: 10px;
  color: #ccc;
  cursor: pointer;
  border-radius: 4px;
  font-size: 0.9rem;
}

.history-item.active,
.history-item:hover {
  background: #1a1a1a;
  color: #fff;
}

.history-item i {
  margin-right: 8px;
}

.knowledge-indicator {
  margin-top: auto;
  font-size: 0.8rem;
  color: #444;
  text-align: center;
}

/* Chat Main */
.chat-main-area {
  display: flex;
  flex-direction: column;
  background: #111;
}

.chat-feed {
  flex: 1;
  padding: 30px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.zoe-welcome {
  text-align: center;
  margin-top: 100px;
  color: #444;
}

.zoe-welcome img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-bottom: 20px;
  opacity: 0.8;
}

.chat-bubble {
  max-width: 70%;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 0.95rem;
  line-height: 1.5;
}

.chat-bubble.user {
  align-self: flex-end;
  background: #252525;
  color: #fff;
}

.chat-bubble.bot {
  align-self: flex-start;
  background: transparent;
  color: #ddd;
  padding-left: 0;
}

.chat-input-bar {
  padding: 20px;
  border-top: 1px solid #222;
  display: flex;
  gap: 10px;
}

.chat-input-bar input {
  flex: 1;
  background: #0e0e0e;
  border: 1px solid #333;
  padding: 12px;
  border-radius: 4px;
  color: #fff;
  outline: none;
}

.chat-input-bar input:focus {
  border-color: #555;
}

.chat-input-bar button {
  background: transparent;
  border: 1px solid #333;
  color: var(--primary-gold);
  width: 45px;
  border-radius: 4px;
  cursor: pointer;
}

.chat-input-bar button:hover {
  background: #111;
}

/* Image Gen Sidebar & Canvas */
.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  margin-bottom: 8px;
  color: #888;
}

.form-group textarea {
  width: 100%;
  background: #1a1a1a;
  border: 1px solid #333;
  border-radius: 4px;
  padding: 10px;
  color: #fff;
  resize: none;
  font-family: inherit;
}

.style-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.style-option {
  background: #1a1a1a;
  border: 1px solid #333;
  padding: 8px;
  text-align: center;
  font-size: 0.8rem;
  cursor: pointer;
  border-radius: 4px;
}

.style-option.selected {
  border-color: var(--primary-gold);
  color: var(--primary-gold);
}

.full-width {
  width: 100%;
  padding: 12px;
}

.gen-canvas {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #000;
  position: relative;
}

.gen-empty-state {
  text-align: center;
  color: #333;
}

.gen-empty-state i {
  font-size: 4rem;
  margin-bottom: 20px;
}

#gen-result {
  max-width: 90%;
  max-height: 90%;
  border-radius: 4px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}

.pro-loader {
  border: 3px solid #333;
  border-top: 3px solid var(--primary-gold);
  border-radius: 50%;
  width: 30px;
  height: 30px;
  animation: spin 1s infinite linear;
  margin: 0 auto 10px;
}

/* Footer Tech */
.zoe-footer {
  background: #0a0a0a;
  border-top: 1px solid #222;
  padding: 40px 0;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.footer-grid h4 {
  font-size: 0.9rem;
  color: #fff;
  margin-bottom: 5px;
}

.footer-grid p {
  font-size: 0.8rem;
  color: #666;
}

.status-ok {
  color: #2ecc71 !important;
}

.footer-copy {
  text-align: center;
  font-size: 0.75rem;
  color: #333;
  border-top: 1px solid #151515;
  padding-top: 20px;
}