:root {
  --bg-primary: #000000;
  --bg-secondary: #0a0a0a;
  --accent-primary: #ffffff;
  --text-primary: #f8fafc;
  --text-secondary: #94a3b8;
  --border-color: rgba(255, 255, 255, 0.05);
  --transition: all 0.2s ease;
  --sidebar-width: 280px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none !important;
}

html {
  font-size: 13px;
  -webkit-text-size-adjust: 100%;
}

html, body {
  width: 100%;
  margin: 0 !important;
  padding: 0 !important;
  background-color: var(--bg-primary);
  text-align: left !important;
  overflow-x: hidden;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text-primary);
  background: #000;
  line-height: 1.5;
}

.main-content-wrapper {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto !important;
  padding: 20px 15px !important;
  flex: 1 0 auto;
  display: block;
  transition: filter 0.3s ease;
}

.main-content-wrapper.full-width-page {
  max-width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
}

i[data-lucide] {
  color: var(--accent-primary);
}

@media (max-width: 1024px) {
  .main-content-wrapper {
    padding: 20px 30px !important;
  }
}

@media (max-width: 768px) {
  body {
    padding-bottom: 80px !important;
  }
  .main-content-wrapper {
    padding: 20px 15px !important;
  }
}

@media (max-width: 480px) {
  .main-content-wrapper {
    padding: 15px 10px !important;
  }
}

/* Global Anime Card Styles (OniAnime Style) */
.anime-card {
    background: transparent;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.anime-cover {
    position: relative;
    aspect-ratio: 2/3;
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
    background: #0a0a0a;
    margin-bottom: 12px;
}

.anime-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.anime-card:hover .anime-cover img {
    transform: scale(1.05);
}

.anime-badge {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: #ffffff;
    color: #000;
    padding: 6px 14px;
    border-radius: 10px;
    font-size: 0.8rem;
    font-weight: 900;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.anime-status {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(15, 23, 42, 0.85);
    color: #fff;
    padding: 6px 16px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 2;
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.anime-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0a0a0a;
    color: rgba(255, 255, 255, 0.1);
}

.anime-info {
    padding: 0 5px;
    text-align: center;
}

.anime-meta-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 6px;
    padding: 0 2px;
}

.anime-type, .anime-ep-count {
    font-size: 0.75rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.anime-title {
    font-size: 1rem;
    font-weight: 800;
    color: #fff;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.2;
}

.anime-card:hover .anime-title {
    color: #fff;
}

