@font-face {
  font-family: 'ITC Avant Garde Gothic';
  src: url('../fonts/ITC Avant Garde Gothic Medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'ITC Avant Garde Gothic';
  src: url('../fonts/ITC Avant Garde Gothic Medium Oblique.otf') format('opentype');
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'ITC Avant Garde Gothic';
  src: url('../fonts/ITC Avant Garde Gothic Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'ITC Avant Garde Gothic';
  src: url('../fonts/ITC Avant Garde Gothic Bold Oblique.otf') format('opentype');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

/* public/css/styles.css */
:root {
  --bg-color: #0a0a0a;
  --accent-color: #00ff88;
  --accent-secondary: #00ff88;
  --text-color: #e8e8e8;
  --secondary-color: #1a1a1a;
  --border-color: #2a2a2a;
  --header-bg: rgba(20, 20, 20, 0.95);
  --card-bg: rgba(26, 26, 26, 0.85);
}

* {
  box-sizing: border-box;
}

html {
  background-color: #0a0a0a;
}

body {
  margin: 0;
  padding: 0;
  background-color: #0a0a0a;
  color: var(--text-color);
  font-family: 'ITC Avant Garde Gothic', sans-serif;
  min-height: 100vh;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(0, 255, 136, 0.02) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(0, 255, 136, 0.02) 0%, transparent 50%);
  background-attachment: fixed;
  overflow-x: hidden;
}

/* Header Styles */
header {
  background: linear-gradient(135deg, #141414 0%, #1a1a1a 100%);
  backdrop-filter: blur(10px);
  /* padding: 1.2rem 2rem; */
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 3px solid var(--accent-color);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.8);
  position: relative;
}

header h1 {
  margin: 0;
  font-family: 'ITC Avant Garde Gothic', sans-serif;
  font-weight: 700;
  padding: 1.2rem 2rem;
  color: var(--accent-color);
  text-shadow:
    0 0 10px rgba(0, 255, 136, 0.5),
    0 0 20px rgba(0, 255, 136, 0.3);
  letter-spacing: 1px;
}

nav {
  display: flex;
  gap: 0;
  align-items: stretch;
  margin-left: auto;
  width: fit-content;
  align-self: stretch;
}

nav a {
  color: #d0d0d0;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  position: relative;
  padding: 0 1.2rem;
  border-radius: 0;
  background: linear-gradient(135deg, #141414 0%, #1a1a1a 100%);
  border: 1px solid transparent;
  flex: 1;
  text-align: center;
  min-width: 100px;
  min-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

nav a::before {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: var(--accent-color);
  transition: width 0.3s ease;
  box-shadow: 0 0 10px var(--accent-color);
}

nav a:hover {
  color: var(--accent-color);
  background: linear-gradient(135deg, #161616 0%, #1c1c1c 100%);
  border-color: rgba(0, 255, 136, 0.2);
  transform: translateY(-1px);
}

nav a:hover::before {
  width: 100%;
}

/* Burger Menu */
.burger-menu {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.burger-menu span {
  width: 25px;
  height: 3px;
  background: var(--accent-color);
  margin: 3px 0;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.burger-menu.active span:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.burger-menu.active span:nth-child(2) {
  opacity: 0;
}

.burger-menu.active span:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

/* Main Content */
main {
  max-width: 1100px;
  margin: 2rem auto;
  padding: 2rem;
}

/* Card Styles */
.card {
  background: var(--card-bg);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 2rem;
  border: 1px solid var(--border-color);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 255, 136, 0.15);
}

/* Image Placeholders */
.image-placeholder {
  background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
  /* border: 2px dashed rgba(0, 255, 136, 0.3); */
  /* border-radius: 8px; */
  height: auto;
  padding: 0;
  text-align: center;
  color: #666;
  font-style: italic;
  margin: 1.5rem 0;
  position: relative;
  overflow: hidden;
}

.image-placeholder::before {
  content: '';
  font-size: 3rem;
  display: block;
  animation: float 3s ease-in-out infinite;
}

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

.image-placeholder::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent,
    rgba(0, 255, 136, 0.05),
    transparent
  );
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
  100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

/* Buttons */
button, .btn {
  background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-secondary) 100%);
  color: #000;
  padding: 0.8rem 1.8rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 4px 15px rgba(0, 255, 136, 0.3);
}

button:hover, .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 255, 136, 0.5);
}

button:active, .btn:active {
  transform: translateY(0);
}

button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

/* Inputs */
input, textarea, select {
  width: 100%;
  padding: 0.8rem;
  margin-top: 0.5rem;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  background-color: rgba(17, 17, 17, 0.9);
  color: var(--text-color);
  font-family: 'ITC Avant Garde Gothic', sans-serif;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 2px rgba(0, 255, 136, 0.2);
}

/* Footer */
footer {
  background: var(--header-bg);
  backdrop-filter: blur(10px);
  border-top: 2px solid var(--accent-color);
  text-align: center;
  padding: 2rem;
  margin-top: 4rem;
  color: #999;
}

footer a {
  color: var(--accent-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

footer a:hover {
  color: #fff;
  text-decoration: underline;
}

/* Utility Classes */
.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }

h2, h3 {
  color: var(--accent-color);
}

h2 {
  font-size: 2rem;
}

p {
  line-height: 1.6;
  color: #ccc;
}

.discord-embed-field-name {
  font-weight: 600;
  color: white;
}

.discord-embed-field-value {
  color: #b9bbbe;
}

.discord-embed-thumb {
  max-width: 80px;
  float: right;
  border-radius: 4px;
}

.discord-embed-image {
  max-width: 100%;
  border-radius: 4px;
  margin-top: 4px;
}

.discord-embed-footer {
  margin-top: 4px;
  font-size: 0.75rem;
  color: #b9bbbe;
}

/* Responsive */
@media (max-width: 768px) {
  header {
    padding: 1rem;
  }

  header h1 {
    font-size: 0.9rem;
  }

  /* Desktop nav hidden on mobile */
  nav {
    position: absolute;
    top: 100%;
    right: 0;
    width: 200px;
    background: linear-gradient(135deg, #141414 0%, #1a1a1a 100%);
    backdrop-filter: blur(10px);
    flex-direction: column;
    gap: 0;
    padding: 0;
    margin: 0;
    border: 1px solid var(--accent-color);
    border-top: none;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.8);
    transform: translateY(-10px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
  }

  nav.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  nav a {
    padding: 0.75rem 1rem;
    font-size: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    text-align: center;
    margin: 0;
    border-radius: 0;
    min-height: auto;
    height: auto;
  }

  nav a:last-child {
    border-bottom: none;
  }

  nav a:hover {
    transform: none;
    background: rgba(0, 255, 136, 0.1);
  }

  /* Show burger menu on mobile */
  .burger-menu {
    display: flex;
  }

  main {
    padding: 1rem;
  }
}
