/* VARIÁVEIS DE CORES */
:root {
  /* Cores principais do Tibia */
  --tibia-bg-dark: #241d13;
  --tibia-bg-medium: #241d13;
  --tibia-bg-light: #3d3420;
  --tibia-border: #5a4a2f;
  --tibia-gold: #d4af37;
  --tibia-text: #e8d5b7;
  --tibia-text-light: #fff5e6;
  --tibia-highlight: #8b7355;

  /* Cores dos elementos */
  --element-fire-start: #ff6b35;
  --element-fire-end: #ff4500;
  --element-ice-start: #00bfff;
  --element-ice-end: #1e90ff;
  --element-energy-start: #ffd700;
  --element-energy-end: #ffa500;
  --element-holy-start: #fffacd;
  --element-holy-end: #ffd700;
  --element-hit-start: #808080;
  --element-hit-end: #696969;

  /* Boss */
  --boss-badge-start: #dc3545;
  --boss-badge-end: #8b0000;

  /* Sombras */
  --shadow-light: rgba(0, 0, 0, 0.3);
  --shadow-medium: rgba(0, 0, 0, 0.5);
  --shadow-heavy: rgba(0, 0, 0, 0.7);
  --shadow-gold: rgba(212, 175, 55, 0.3);

  /* Tamanhos */
  --border-radius-small: 8px;
  --border-radius-medium: 12px;
  --border-radius-large: 20px;
  --border-width: 2px;
  --border-width-thick: 3px;

  --menu-gold: #ffd700;
  --menu-gold-dark: #d4af37;
  --menu-orange: #ff8c00;
  --menu-orange-dark: #ff6347;
  --menu-brown: #3d2817;
  --menu-brown-dark: #2d1810;
  --menu-bronze: #8b6914;
  --menu-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
  --menu-glow: 0 0 15px rgba(255, 215, 0, 0.4);
}

/* RESET E BASE */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: linear-gradient(135deg, var(--tibia-bg-dark) 0%, var(--tibia-bg-medium) 100%);
  color: var(--tibia-text);
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  min-height: 100vh;
  background-attachment: fixed;
  overflow-x: hidden;
}

/* SCROLLBAR CUSTOMIZADO */
::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}

::-webkit-scrollbar-track {
  background: #1a1510;
  border-radius: var(--border-radius-small);
}

::-webkit-scrollbar-thumb {
  background: #fef0d9;
  border-radius: var(--border-radius-small);
  transition: background 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--tibia-gold);
}

/* HEADER */
.wiki-header {
  background: linear-gradient(180deg, var(--tibia-bg-medium) 0%, var(--tibia-bg-dark) 100%);
  padding: 1.5rem 0 1rem 0;
  box-shadow: 0 4px 20px var(--shadow-medium);
}

.wiki-header .container {
  justify-content: space-between;
  display: flex;
  align-items: center;
}

.logo-big img {
  height: 100px;
  width: auto;
}
.header-data {
  display: none;
  text-align: right;
}
.header-data a {
  display: inline-block;
  margin-top: 10px;
  margin-left: 10px;
  color: var(--menu-orange);
  transition: transform 0.3s ease;
}
.header-data a:hover {
  transform: rotate(10deg);
  color: var(--menu-gold);
  text-shadow: 0 0 10px rgba(255, 140, 0, 0.8);
}
.header-data i {
  font-size: 30px;
  vertical-align: middle;
}
.header-data i.bi-whatsapp {
  font-size: 24px;
}
.header-data i.bi-youtube {
  font-size: 33px;
}

/* Status Indicator (bolinha de status do servidor) */
.status-indicator {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-right: 5px;
  background-color: #dc3545;
  box-shadow: 0 0 8px rgba(220, 53, 69, 0.8);
  animation: pulse-red 2s ease-in-out infinite;
}

.status-indicator.online {
  background-color: #28a745;
  box-shadow: 0 0 8px rgba(40, 167, 69, 0.8);
  animation: pulse-green 2s ease-in-out infinite;
}

@keyframes pulse-red {
  0%,
  100% {
    box-shadow: 0 0 8px rgba(220, 53, 69, 0.8);
  }
  50% {
    box-shadow: 0 0 15px rgba(220, 53, 69, 1);
  }
}

@keyframes pulse-green {
  0%,
  100% {
    box-shadow: 0 0 8px rgba(40, 167, 69, 0.8);
  }
  50% {
    box-shadow: 0 0 15px rgba(40, 167, 69, 1);
  }
}

.wiki-title {
  color: var(--tibia-gold);
  font-size: 2.5rem;
  font-weight: bold;
  text-shadow: 2px 2px 1px #ec4c02;
  margin: 0;
  letter-spacing: 1px;
  font-family: "Vinque Regular";
}

.wiki-subtitle {
  color: var(--tibia-text);
  font-size: 1.2rem;
  margin-top: 0.5rem;
  opacity: 0.9;
  font-weight: bold;
}

.nav-tabs {
  border-bottom: var(--border-width) solid var(--tibia-border);
  margin-bottom: 2rem;
}

.nav-tabs .nav-link {
  background: var(--tibia-bg-light);
  border: var(--border-width) solid var(--tibia-border);
  color: var(--tibia-text);
  margin-right: 0.5rem;
  border-radius: var(--border-radius-small) var(--border-radius-small) 0 0;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.nav-tabs .nav-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, var(--tibia-gold), transparent);
  opacity: 0.3;
  transition: left 0.5s ease;
}

.nav-tabs .nav-link:hover::before {
  left: 100%;
}

.nav-tabs .nav-link:hover {
  background: var(--tibia-bg-medium);
  color: var(--tibia-gold);
  transform: translateY(-2px);
}

.nav-tabs .nav-link.active {
  background: var(--tibia-bg-medium);
  border-bottom-color: var(--tibia-bg-medium);
  color: var(--tibia-gold);
  box-shadow: 0 -2px 10px var(--shadow-gold);
}

.search-container {
  background: var(--tibia-bg-medium);
  border: var(--border-width) solid var(--tibia-border);
  border-radius: var(--border-radius-medium);
  padding: 1.5rem;
  margin-bottom: 2rem;
  box-shadow: 0 4px 15px var(--shadow-light);
  animation: slideDown 0.5s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.content {
  position: relative;
}

.form-control,
.form-select {
  background: var(--tibia-bg-dark);
  border: var(--border-width) solid var(--tibia-border);
  color: var(--tibia-text);
  padding: 0.75rem 1rem;
  border-radius: var(--border-radius-small);
  transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
  background: var(--tibia-bg-dark);
  border-color: var(--tibia-gold);
  color: var(--tibia-text-light);
  box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
  outline: none;
}

.form-control::placeholder {
  color: var(--tibia-highlight);
  opacity: 0.7;
}

.form-select option {
  background: var(--tibia-bg-dark);
  color: var(--tibia-text);
}

/* CARDS */
.entity-card {
  background: var(--tibia-bg-medium);
  border: var(--border-width) solid var(--tibia-border);
  border-radius: var(--border-radius-medium);
  padding: 1rem;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
  cursor: pointer;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.entity-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, transparent 0%, var(--tibia-gold) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.entity-card:hover::before {
  opacity: 0.05;
}

.entity-card:hover {
  border-color: var(--tibia-gold);
  box-shadow: 0 6px 20px var(--shadow-gold);
  transform: translateY(-4px);
}

.entity-card:active {
  transform: translateY(-2px);
}

.entity-img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  image-rendering: pixelated;
  image-rendering: -moz-crisp-edges;
  image-rendering: crisp-edges;
  margin: 0 auto 1rem;
  filter: drop-shadow(2px 2px 4px var(--shadow-medium));
  transition: transform 0.3s ease;
}

.entity-card:hover .entity-img {
  transform: scale(1.1);
}

.entity-name {
  color: var(--tibia-gold);
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  text-align: center;
  text-shadow: 1px 1px 2px var(--shadow-medium);
}

.entity-stats {
  font-size: 0.9rem;
  color: var(--tibia-text);
  margin-top: auto;
}

.stat-label {
  color: var(--tibia-highlight);
  font-weight: 600;
}

.entity-stats-container {
  display: flex;
  gap: 1rem;
  margin-top: auto;
  font-size: 0.9rem;
  color: var(--tibia-text);
}

.entity-stats-left {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.entity-drops-right {
  flex: 1;
  display: flex;

  overflow-x: auto;
  overflow-y: hidden;
  padding: 0.25rem 0;
  align-items: flex-end;
  border-left: solid rgb(90, 74, 47) 2px;
  padding-left: 0.5rem;
}

.entity-drops-right::-webkit-scrollbar {
  height: 4px;
}

.entity-drops-right::-webkit-scrollbar-track {
  background: var(--tibia-bg-dark);
  border-radius: 4px;
}

.entity-drops-right::-webkit-scrollbar-thumb {
  background: var(--tibia-border);
  border-radius: 4px;
}

.entity-drops-right::-webkit-scrollbar-thumb:hover {
  background: var(--tibia-gold);
}

.drop-item-img {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  object-fit: contain;
  image-rendering: pixelated;
  image-rendering: -moz-crisp-edges;
  image-rendering: crisp-edges;
  filter: drop-shadow(1px 1px 2px var(--shadow-medium));
  transition: transform 0.2s ease;
  cursor: pointer;
}

.drop-item-img:hover {
  transform: scale(1.2);
  filter: drop-shadow(2px 2px 4px var(--tibia-gold));
}

.boss-badge {
  background: linear-gradient(135deg, var(--boss-badge-start) 0%, var(--boss-badge-end) 100%);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: var(--border-radius-large);
  font-size: 0.75rem;
  font-weight: bold;
  display: inline-block;
  margin-bottom: 0.5rem;
  box-shadow: 0 2px 8px rgba(220, 53, 69, 0.4);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 2px 8px rgba(220, 53, 69, 0.4);
  }
  50% {
    box-shadow: 0 4px 16px rgba(220, 53, 69, 0.6);
  }
}

.element-badge {
  padding: 0.25rem 0.75rem;
  border-radius: var(--border-radius-large);
  font-size: 0.75rem;
  font-weight: bold;
  display: inline-block;
  margin: 0.25rem;
  text-transform: uppercase;
  box-shadow: 0 2px 4px var(--shadow-light);
  transition: transform 0.2s ease;
}

.element-badge:hover {
  transform: scale(1.05);
}

.element-fire {
  background: linear-gradient(135deg, var(--element-fire-start) 0%, var(--element-fire-end) 100%);
  color: white;
}

.element-ice {
  background: linear-gradient(135deg, var(--element-ice-start) 0%, var(--element-ice-end) 100%);
  color: white;
}

.element-energy {
  background: linear-gradient(135deg, var(--element-energy-start) 0%, var(--element-energy-end) 100%);
  color: #000;
}

.element-holy {
  background: linear-gradient(135deg, var(--element-holy-start) 0%, var(--element-holy-end) 100%);
  color: #000;
}

.element-hit {
  background: linear-gradient(135deg, var(--element-hit-start) 0%, var(--element-hit-end) 100%);
  color: white;
}

/* TYPE BADGE */
.type-badge {
  background: var(--tibia-bg-light);
  color: var(--tibia-text);
  padding: 0.25rem 0.75rem;
  border-radius: 15px;
  font-size: 0.8rem;
  border: 1px solid var(--tibia-border);
  text-transform: capitalize;
}

/* MODAL */
.modal-content {
  background: var(--tibia-bg-medium);
  border: var(--border-width-thick) solid var(--tibia-gold);
  color: var(--tibia-text);
  border-radius: var(--border-radius-medium);
}

.modal-header {
  border-bottom: var(--border-width) solid var(--tibia-border);
  padding: 1.5rem;
}

.modal-title {
  color: var(--tibia-gold);
  font-weight: bold;
  text-shadow: 1px 1px 2px var(--shadow-medium);
}

.modal-body {
  padding: 1.5rem;
}

.btn-close {
  filter: invert(1) brightness(2);
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.btn-close:hover {
  opacity: 1;
}

/* LIST GROUP */
.list-group-item {
  background: var(--tibia-bg-light);
  border: 1px solid var(--tibia-border);
  color: var(--tibia-text);
  margin-bottom: 0.5rem;
  border-radius: var(--border-radius-small);
  transition: all 0.2s ease;
}

.list-group-item:hover {
  background: var(--tibia-bg-dark);
  border-color: var(--tibia-gold);
}

/* LOADING */
.loading {
  text-align: center;
  padding: 3rem;
  color: var(--tibia-gold);
  font-size: 1.5rem;
  animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.spinner-border {
  color: var(--tibia-gold);
  width: 3rem;
  height: 3rem;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* STATS GRID */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.stat-box {
  background: var(--tibia-bg-light);
  border: 1px solid var(--tibia-border);
  border-radius: var(--border-radius-small);
  padding: 1rem;
  text-align: center;
  transition: all 0.3s ease;
}

.stat-box:hover {
  border-color: var(--tibia-gold);
  transform: scale(1.02);
}

.stat-value {
  color: var(--tibia-gold);
  font-size: 1.5rem;
  font-weight: bold;
  text-shadow: 1px 1px 2px var(--shadow-medium);
}

.tutorial-content {
  padding: 4rem 0;
  background: var(--tibia-bg-dark);
}

.breadcrumb-nav {
  margin-bottom: 2rem;
}

.breadcrumb-nav a {
  color: var(--tibia-text);
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb-nav a:hover {
  color: var(--menu-orange);
}

.breadcrumb-nav span {
  color: var(--tibia-gold);
}

.breadcrumb-nav i {
  margin: 0 0.5rem;
  color: var(--tibia-border);
  font-size: 0.8rem;
}

.intro-box {
  background: linear-gradient(135deg, rgba(61, 220, 132, 0.1) 0%, rgba(0, 200, 83, 0.05) 100%);
  border: 2px solid #3ddc84;
  border-radius: var(--border-radius-medium);
  padding: 1.5rem 2rem;
  margin-bottom: 3rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.intro-box-icon {
  font-size: 3rem;
  color: #3ddc84;
  flex-shrink: 0;
}

.intro-box-content h2 {
  color: var(--tibia-gold);
  font-size: 1.25rem;
  margin: 0 0 0.5rem 0;
}

.intro-box-content p {
  color: var(--tibia-text);
  margin: 0;
  line-height: 1.6;
}

.requirements-box {
  background: var(--tibia-bg-medium);
  border: 2px solid var(--tibia-border);
  border-radius: var(--border-radius-medium);
  padding: 1.5rem 2rem;
  margin-bottom: 3rem;
}

.requirements-box h3 {
  color: var(--tibia-gold);
  font-size: 1.1rem;
  margin: 0 0 1rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.requirements-list {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.requirement-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--tibia-text);
}

.requirement-item i {
  color: #00bfff;
}

.step-item {
  background: var(--tibia-bg-medium);
  border: 2px solid var(--tibia-border);
  border-radius: var(--border-radius-medium);
  padding: 2rem;
  margin-bottom: 2rem;
  position: relative;
  transition: all 0.3s ease;
}

.step-item:hover {
  border-color: #3ddc84;
  box-shadow: 0 10px 30px rgba(61, 220, 132, 0.15);
}

.step-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #3ddc84, #00c853);
  border-radius: 4px 0 0 4px;
}

.step-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.step-number {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #3ddc84, #00c853);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--menu-brown-dark);
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(61, 220, 132, 0.4);
}

.step-title {
  color: var(--tibia-gold);
  font-size: 1.25rem;
  font-weight: bold;
  margin: 0;
}

.step-content {
  color: var(--tibia-text);
  font-size: 1rem;
  line-height: 1.7;
}

.step-content p {
  margin-bottom: 1rem;
}

.step-content p:last-child {
  margin-bottom: 0;
}

.step-content strong {
  color: var(--tibia-gold);
}

.step-content .highlight {
  color: #3ddc84;
  font-weight: 600;
}

.step-content .warning {
  color: #ffc107;
  font-weight: 600;
}

.step-content .danger {
  color: #dc3545;
  font-weight: 600;
}

/* Link Button */
.btn-link-external {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.25rem;
  background: linear-gradient(135deg, #3ddc84, #00c853);
  color: var(--menu-brown-dark);
  font-weight: bold;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  margin-top: 0.5rem;
}

.btn-link-external:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(61, 220, 132, 0.4);
  color: var(--menu-brown-dark);
}

.dns-box {
  background: var(--tibia-bg-dark);
  border: 2px solid var(--tibia-gold);
  border-radius: var(--border-radius-small);
  padding: 1.25rem;
  margin-top: 1rem;
  text-align: center;
}

.dns-box-label {
  color: var(--tibia-text);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.dns-value {
  font-family: "Courier New", monospace;
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--tibia-gold);
  background: var(--tibia-bg-medium);
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  display: inline-block;
  margin-bottom: 0.75rem;
  border: 1px solid var(--tibia-border);
  user-select: all;
  cursor: pointer;
}

.dns-copy-hint {
  color: var(--tibia-text);
  font-size: 0.8rem;
  opacity: 0.8;
}

.url-box {
  background: var(--tibia-bg-dark);
  border: 2px solid #00bfff;
  border-radius: var(--border-radius-small);
  padding: 1rem 1.5rem;
  margin-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.url-value {
  font-family: "Courier New", monospace;
  font-size: 1rem;
  color: #00bfff;
  word-break: break-all;
}

.btn-copy {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: linear-gradient(135deg, #00bfff, #1e90ff);
  color: white;
  font-weight: bold;
  font-size: 0.85rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.btn-copy:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 191, 255, 0.4);
}

.path-highlight {
  background: var(--tibia-bg-dark);
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-family: "Courier New", monospace;
  font-size: 0.9rem;
  color: #00bfff;
}

.note-box {
  background: var(--tibia-bg-dark);
  border: 1px solid var(--tibia-border);
  border-left: 4px solid #ffc107;
  border-radius: var(--border-radius-small);
  padding: 1rem 1.25rem;
  margin-top: 1rem;
}

.note-box i {
  color: #ffc107;
  margin-right: 0.5rem;
}

.note-box p {
  margin: 0;
  font-size: 0.95rem;
}

.warning-box {
  background: linear-gradient(135deg, rgba(255, 193, 7, 0.1) 0%, rgba(255, 152, 0, 0.05) 100%);
  border: 2px solid #ffc107;
  border-radius: var(--border-radius-medium);
  padding: 1.5rem;
  margin-top: 2rem;
}

.warning-box h4 {
  color: #ffc107;
  font-size: 1.1rem;
  margin: 0 0 0.75rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.warning-box p {
  color: var(--tibia-text);
  margin: 0;
  line-height: 1.6;
}

.success-box {
  background: linear-gradient(135deg, rgba(40, 167, 69, 0.15) 0%, rgba(32, 201, 151, 0.1) 100%);
  border: 2px solid #28a745;
  border-radius: var(--border-radius-medium);
  padding: 2rem;
  text-align: center;
  margin-top: 2rem;
}

.success-box i {
  color: #28a745;
  display: block;
}

.success-box h3 {
  color: var(--tibia-gold);
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.success-box p {
  color: var(--tibia-text);
  margin-bottom: 1.5rem;
}

.btn-back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, var(--menu-gold), var(--menu-orange));
  color: var(--menu-brown-dark);
  font-weight: bold;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.btn-back:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
  color: var(--menu-brown-dark);
}

.iphone-tutorial .intro-box {
  background: linear-gradient(135deg, rgba(168, 168, 168, 0.1) 0%, rgba(224, 224, 224, 0.05) 100%);
  border: 2px solid #a8a8a8;
}

.iphone-tutorial .intro-box-icon {
  color: #a8a8a8;
}

.iphone-tutorial .step-item:hover {
  border-color: #a8a8a8;
  box-shadow: 0 10px 30px rgba(168, 168, 168, 0.15);
}

.iphone-tutorial .step-item::before {
  background: linear-gradient(180deg, #a8a8a8, #e0e0e0);
}

.iphone-tutorial .step-number {
  background: linear-gradient(135deg, #a8a8a8, #e0e0e0);
  box-shadow: 0 4px 15px rgba(168, 168, 168, 0.4);
}
.iphone-tutorial .step-content .highlight {
  color: #00bfff;
}

.pc-tutorial .intro-box {
  background: linear-gradient(135deg, rgba(0, 191, 255, 0.1) 0%, rgba(30, 144, 255, 0.05) 100%);
  border: 2px solid #00bfff;
}

.pc-tutorial .intro-box-icon {
  color: #00bfff;
}

.pc-tutorial .step-item:hover {
  border-color: #00bfff;
  box-shadow: 0 10px 30px rgba(0, 191, 255, 0.15);
}

.pc-tutorial .step-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #00bfff, #1e90ff);
  border-radius: 4px 0 0 4px;
}

.pc-tutorial .step-number {
  background: linear-gradient(135deg, #00bfff, #1e90ff);
  color: white;
  box-shadow: 0 4px 15px rgba(0, 191, 255, 0.4);
}

.pc-tutorial .step-content .highlight {
  color: #00bfff;
  font-weight: 600;
}

.video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100dvh - 60px);
  overflow: hidden;
  pointer-events: none;
}

.video-background iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 100vh;
  min-width: 177.78vh; /* 100 * 16/9 */
  min-height: 56.25vw; /* 100 * 9/16 */
  transform: translate(-50%, -50%);
  overflow: hidden;
}

@media (min-aspect-ratio: 16/9) {
  .video-background iframe {
    width: 213.34vh;
    height: 120vh;
    min-width: 100vw;
  }
}

/* Dark overlay sobre o vídeo */
.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

/* INDEX */
.index .hero-section {
  position: relative;
  height: calc(100dvh - 60px);
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, var(--tibia-bg-dark) 0%, var(--tibia-bg-medium) 50%, var(--tibia-bg-dark) 100%);
  overflow: hidden;
  padding: 120px 20px 60px;
}

/* YouTube Video Background */

/* Animated Background */
.index .hero-bg-effects {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}

.index .hero-bg-effects::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(ellipse at 30% 20%, rgba(212, 175, 55, 0.08) 0%, transparent 50%), radial-gradient(ellipse at 70% 80%, rgba(255, 140, 0, 0.06) 0%, transparent 50%);
  animation: heroGlow 15s ease-in-out infinite alternate;
}

@keyframes heroGlow {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }
  100% {
    transform: translate(2%, 2%) rotate(3deg);
  }
}

.index .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(5px);
  border-radius: var(--border-radius-large);

  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.index .hero-logo {
  max-width: 320px;
  height: auto;
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 10px 40px rgba(212, 175, 55, 0.3));
  animation: logoFloat 4s ease-in-out infinite;
}

@keyframes logoFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

.index .hero-tagline {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--tibia-gold);
  text-shadow: 2px 2px 1px #ec4c02;
  margin-bottom: 2rem;
  font-family: "Vinque Regular", serif;
  letter-spacing: 1px;
}

/* Stats Cards */
.index .hero-stats {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.index .hero-stat {
  background: linear-gradient(135deg, var(--tibia-bg-medium), var(--tibia-bg-light));
  border: 2px solid var(--tibia-border);
  border-radius: var(--border-radius-medium);
  padding: 1.25rem 2rem;
  min-width: 180px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.index .hero-stat::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--tibia-gold), var(--menu-orange));
}

.index .hero-stat:hover {
  border-color: var(--tibia-gold);
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
}

.index .hero-stat-online {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.index .status-indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #28a745;
  box-shadow: 0 0 10px #28a745;
  animation: statusPulse 1.5s ease-in-out infinite;
}

@keyframes statusPulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.2);
  }
}

.index .hero-stat-value {
  display: block;
  font-size: 2rem;
  font-weight: bold;
  color: var(--tibia-gold);
  line-height: 1.2;
}

.index .hero-stat-label {
  display: block;
  font-size: 0.85rem;
  color: var(--tibia-text);
  opacity: 0.9;
  margin-top: 0.25rem;
}

/* Download Button */
.index .btn-download-hero {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2.5rem;
  background: linear-gradient(135deg, var(--menu-gold), var(--menu-orange));
  color: var(--menu-brown-dark);
  font-size: 1.2rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  border-radius: 50px;
  border: 3px solid var(--menu-bronze);
  box-shadow: 0 8px 30px rgba(255, 140, 0, 0.4);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.index .btn-download-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

.index .btn-download-hero:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 50px rgba(255, 215, 0, 0.5);
  color: var(--menu-brown-dark);
}

.index .btn-download-hero:hover::before {
  left: 100%;
}

/* Scroll Indicator */
.index .scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--tibia-gold);
  opacity: 0.6;
  animation: scrollBounce 2s ease-in-out infinite;
  cursor: pointer;
  transition: opacity 0.3s ease;
  z-index: 100;
}

.index .scroll-indicator:hover {
  opacity: 1;
}

.index .scroll-indicator i {
  font-size: 2rem;
}

@keyframes scrollBounce {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(10px);
  }
}

.index .welcome-section {
  padding: 5rem 0;
  background: var(--tibia-bg-dark);
  position: relative;
}

.index .welcome-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--tibia-gold), transparent);
}

.index .welcome-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.index .welcome-content h2 {
  font-size: 2.25rem;
  color: var(--tibia-gold);
  font-weight: bold;
  text-shadow: 2px 2px 1px #ec4c02;
  margin-bottom: 1.5rem;
  font-family: "Vinque Regular", serif;
}

.index .welcome-content h2 i {
  color: var(--menu-orange);
  margin-right: 0.75rem;
}

.index .welcome-content p {
  color: var(--tibia-text);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.index .welcome-content strong {
  color: var(--tibia-gold);
}

.index .welcome-highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}

.index .highlight-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: var(--tibia-bg-medium);
  border: 1px solid var(--tibia-border);
  border-radius: var(--border-radius-small);
  transition: all 0.3s ease;
}

.index .highlight-item:hover {
  border-color: var(--tibia-gold);
  transform: translateX(5px);
}

.index .highlight-item i {
  font-size: 1.25rem;
  color: var(--menu-orange);
}

.index .highlight-item span {
  color: var(--tibia-text);
  font-weight: 500;
}

.index .welcome-image {
  position: relative;
  border-radius: var(--border-radius-large);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.index .welcome-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.index .welcome-image:hover img {
  transform: scale(1.05);
}

.index .welcome-image::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 3px solid var(--tibia-gold);
  border-radius: var(--border-radius-large);
  pointer-events: none;
  opacity: 0.5;
}

.index .features-section {
  padding: 5rem 0;
  position: relative;
  background: linear-gradient(180deg, var(--tibia-bg-medium) 0%, var(--tibia-bg-dark) 100%);
  overflow: hidden;
}
.index .features-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("../img/fundoindex.webp") center center;
  background-size: cover;
  opacity: 0.2;
  pointer-events: none;
}

.index .section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.index .section-title {
  font-size: 2rem;
  color: var(--tibia-gold);
  font-weight: bold;
  text-shadow: 2px 2px 1px #ec4c02;
  margin-bottom: 0.75rem;
  font-family: "Vinque Regular", serif;
}

.index .section-subtitle {
  color: var(--tibia-text);
  font-size: 1.1rem;
  opacity: 0.9;
}

.index .features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.index .feature-card {
  background: var(--tibia-bg-dark);
  border: 2px solid var(--tibia-border);
  border-radius: var(--border-radius-medium);
  padding: 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.index .feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--tibia-gold), var(--menu-orange), var(--tibia-gold));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.index .feature-card:hover {
  border-color: var(--tibia-gold);
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(212, 175, 55, 0.2);
}

.index .feature-card:hover::before {
  transform: scaleX(1);
}

.index .feature-icon-wrapper {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--tibia-bg-medium), var(--tibia-bg-light));
  border: 2px solid var(--tibia-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: all 0.4s ease;
}

.index .feature-card:hover .feature-icon-wrapper {
  background: linear-gradient(135deg, var(--menu-gold), var(--menu-orange));
  border-color: var(--tibia-gold);
  transform: rotateY(180deg);
}

.index .feature-icon-wrapper i {
  font-size: 2rem;
  color: var(--menu-orange);
  transition: all 0.4s ease;
}

.index .feature-card:hover .feature-icon-wrapper i {
  color: var(--menu-brown-dark);
  transform: rotateY(-180deg);
}

.index .feature-title {
  font-size: 1.25rem;
  color: var(--tibia-gold);
  font-weight: bold;
  margin-bottom: 0.75rem;
}

.index .feature-text {
  color: var(--tibia-text);
  font-size: 0.95rem;
  line-height: 1.6;
  opacity: 0.9;
}

.index .gallery-section {
  padding: 5rem 0;
  background: var(--tibia-bg-dark);
  margin-top: 0;
}

.index .gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.index .gallery-item {
  position: relative;
  border-radius: var(--border-radius-medium);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 16/10;
}

.index .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.index .gallery-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.8) 100%);
  z-index: 1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.index .gallery-item::after {
  content: "\F52A";
  font-family: "bootstrap-icons";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  font-size: 2.5rem;
  color: var(--tibia-gold);
  z-index: 2;
  transition: transform 0.3s ease;
}

.index .gallery-item:hover img {
  transform: scale(1.1);
}

.index .gallery-item:hover::before {
  opacity: 1;
}

.index .gallery-item:hover::after {
  transform: translate(-50%, -50%) scale(1);
}

.index .cta-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--tibia-bg-medium) 0%, var(--menu-brown-dark) 100%);
  position: relative;
  overflow: hidden;
  margin-bottom: 0;
  border-radius: 0%;
}

.index .cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--tibia-gold), var(--menu-orange), var(--tibia-gold), transparent);
}

.index .cta-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.index .cta-title {
  font-size: 2.25rem;
  color: var(--tibia-gold);
  font-weight: bold;
  text-shadow: 2px 2px 1px #ec4c02;
  margin-bottom: 1rem;
  font-family: "Vinque Regular", serif;
}

.index .cta-text {
  color: var(--tibia-text);
  font-size: 1.15rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.index .cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.index .btn-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, var(--menu-gold), var(--menu-orange));
  color: var(--menu-brown-dark);
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  border-radius: 8px;
  border: 2px solid var(--menu-bronze);
  transition: all 0.3s ease;
}

.index .btn-cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
  color: var(--menu-brown-dark);
}

.index .btn-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: transparent;
  color: var(--tibia-gold);
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  border-radius: 8px;
  border: 2px solid var(--tibia-gold);
  transition: all 0.3s ease;
}

.index .btn-cta-secondary:hover {
  background: var(--tibia-gold);
  color: var(--menu-brown-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .wiki-title {
    font-size: 2rem;
  }

  .entity-img {
    width: 64px;
    height: 64px;
  }

  .entity-name {
    font-size: 1rem;
  }

  .stats-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }

  .nav-tabs .nav-link {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 576px) {
  .search-container {
    padding: 1rem;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .wiki-title {
    font-size: 1.5rem;
  }
}

/* UTILITY CLASSES */
.text-shadow {
  text-shadow: 1px 1px 2px var(--shadow-medium);
}

.gold-glow {
  box-shadow: 0 0 20px var(--shadow-gold);
}

.fade-in {
  animation: fadeIn 0.5s ease;
}

.slide-up {
  animation: slideUp 0.5s ease;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* PRINT STYLES */
@media print {
  body {
    background: white;
    color: black;
  }

  .wiki-header,
  .search-container,
  .nav-tabs,
  .modal {
    display: none;
  }
}

@font-face {
  font-family: Vinque Regular;
  src: url("../fonts/Vinque Regular.woff2") format("woff2");
  font-display: swap;
}

* {
  scrollbar-color: #ff8c00 #1a1510;
  scrollbar-width: thin;
  -webkit-user-select: none; /* For Safari */
  -ms-user-select: none; /* For IE 10 and 11 */
  user-select: none; /* Standard syntax */
}
::-webkit-scrollbar {
  width: 0.5vw;
  height: 0.5vw;
  background: #1a1510;
}

::-webkit-scrollbar-thumb {
  background: -webkit-linear-gradient(transparent, #ff8c00);
  background: linear-gradient(transparent, #ff8c00);
  border-radius: 20px;
}

::selection {
  background: rgba(254, 240, 217, 1);
  color: #1a1510;
  text-shadow: none;
}
::placeholder {
  color: #ffffff !important;
  opacity: 0.5 !important;
}

:-ms-input-placeholder {
  color: #ffffff !important;
}

::-ms-input-placeholder {
  color: #ffffff !important;
}

@media (min-width: 1500px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1420px;
  }
}

/* MENU */
.jtme-navbar {
  background: linear-gradient(180deg, var(--menu-brown) 0%, var(--menu-brown-dark) 100%);
  border-top: 3px solid var(--menu-gold);
  border-bottom: 3px solid var(--menu-orange);
  box-shadow: var(--menu-shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  min-height: 50px;
}

.jtme-navbar .container {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  position: relative;
  min-height: 50px;
}

.navbar-logo {
  display: none;
}

.navbar-logo img {
  width: 1px;
  height: 1px;
  opacity: 0;
  filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.5));
  transition: 0.4s ease;
}

.navbar-logo:hover img {
  transform: scale(1.05);
}

.wiki-effect {
  position: absolute;
  transition: 0.4s ease;
  left: 10px;
}
.wiki-effect img {
  width: 1px;
  height: 1px;
  opacity: 0;
  transition: 0.4s ease;
}
@media (min-width: 1200px) {
  .wiki-effect {
    animation: wikishow 0.4s forwards;
  }
  .wiki-effect img {
    animation: wikiimgshow 0.4s forwards;

    /* opacity: 0; */
  }
  .wiki-effect.anime {
    animation: wikihidden 0.4s forwards;
    display: inline-block;
    transition: 0.4s ease;
  }
  .wiki-effect.anime img {
    animation: wikiimghidden 0.4s forwards;
    transition: 0.4s ease;
  }
  .jtme-navbar.anime .navbar-logo {
    display: inline-block;
    transition: 0.4s ease;
  }
  .jtme-navbar.anime .navbar-logo img {
    animation: wikilogoshow 0.4s forwards;
    transition: 0.4s ease;
  }
  .jtme-navbar.anime .container {
    justify-content: space-between;
  }
}
@keyframes wikihidden {
  0% {
    bottom: 62px;
  }

  100% {
    bottom: 0px;
  }
}
@keyframes wikiimghidden {
  0% {
    width: 1px;
    height: 1px;
    opacity: 0;
  }
  1% {
    width: 209px;
    height: 100px;
    opacity: 0.3;
  }
  99% {
    width: 105px;
    height: 50px;
    opacity: 0.8;
  }
  100% {
    width: 1px;
    height: 1px;
    opacity: 0;
  }
}
@keyframes wikishow {
  0% {
    bottom: 0px;
  }

  100% {
    bottom: 62px;
  }
}
@keyframes wikiimgshow {
  0% {
    width: 1px;
    height: 1px;
    opacity: 0;
  }
  1% {
    width: 105px;
    height: 50px;
    opacity: 0.3;
  }
  99% {
    width: 209px;
    height: 100px;
    opacity: 0.8;
  }
  100% {
    width: 1px;
    height: 1px;
    opacity: 0;
  }
}

@keyframes wikilogoshow {
  0% {
    width: 1px;
    height: 1px;
    opacity: 0;
  }
  80% {
    width: 95px;
    height: 50px;
    opacity: 0;
  }

  100% {
    width: 95px;
    height: 50px;
    opacity: 1;
  }
}

.navbar-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;

  justify-content: space-between;
  align-items: center;
}

.navbar-menu > li {
  position: relative;
  white-space: nowrap;
}

.navbar-menu a {
  display: flex;
  align-items: center;
  padding: 0.5rem 1.5rem;
  color: var(--tibia-gold);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  position: relative;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.navbar-menu a i {
  margin-right: 0.5rem;
  font-size: 1.1rem;
}

.navbar-menu > li > a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--menu-orange), var(--menu-gold), var(--menu-orange));
  transform: translateX(-50%);
  transition: width 0.3s ease;
}

.navbar-menu > li > a:hover::before {
  width: 80%;
}

.navbar-menu > li > a:hover {
  color: var(--menu-orange);
  text-shadow: 0 0 10px rgba(255, 140, 0, 0.8);
  background: rgba(255, 215, 0, 0.05);
}

.navbar-menu > li > a.active {
  color: var(--menu-orange);
  background: rgba(255, 140, 0, 0.1);
  border-left: 2px solid var(--menu-gold);
  border-right: 2px solid var(--menu-gold);
}

.navbar-menu .dropdown {
  position: relative;
}

.navbar-menu .dropdown > a::after {
  content: "▼";
  margin-left: 0.5rem;
  font-size: 0.7rem;
  transition: transform 0.3s ease;
}

.navbar-menu .dropdown:hover > a::after {
  transform: rotate(180deg);
}

.submenu {
  position: absolute;
  top: 100%;
  left: 0;
  background: linear-gradient(180deg, var(--menu-brown-dark) 0%, #1a1510 100%);
  border: 2px solid var(--menu-bronze);
  border-top: 3px solid var(--menu-gold);
  border-radius: 0 0 8px 8px;
  box-shadow: var(--menu-shadow);
  min-width: 220px;
  list-style: none;
  padding: 0.5rem 0;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1001;
}

.dropdown:hover .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.submenu li {
  width: 100%;
}

.submenu a {
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  color: var(--menu-gold-dark);
  font-size: 0.9rem;
  border-left: 3px solid transparent;
  transition: all 0.3s ease;
}

.submenu a i {
  margin-right: 0.75rem;
  font-size: 1rem;
  color: var(--menu-orange);
}

.submenu a:hover {
  background: rgba(255, 140, 0, 0.15);
  border-left-color: var(--menu-orange);
  color: var(--menu-orange);
  padding-left: 2rem;
}

.submenu a:hover i {
  transform: scale(1.2);
  color: var(--menu-gold);
}
.submenu li + li {
  border-top: 1px solid rgba(139, 105, 20, 0.3);
}

.navbar-toggle {
  display: none;
  background: linear-gradient(135deg, var(--menu-orange), var(--menu-gold));
  border: 2px solid var(--menu-bronze);
  color: var(--menu-brown);
  padding: 0.5rem 1rem;
  margin: 0.5rem 1rem;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}
.navbar-toggle:hover {
  background: linear-gradient(135deg, var(--menu-gold), var(--menu-orange));
  box-shadow: var(--menu-glow);
  transform: scale(1.05);
}

.navbar-toggle i {
  display: block;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .navbar-toggle {
    display: block;
  }

  .navbar-menu {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 300px;
    max-width: 80%;
    background: linear-gradient(180deg, var(--menu-brown) 0%, var(--menu-brown-dark) 100%);
    border-left: 3px solid var(--menu-gold);
    flex-direction: column;
    justify-content: flex-start;
    padding: 4rem 0 2rem;
    transition: right 0.3s ease;
    overflow-y: auto;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.5);
  }

  .navbar-menu.active {
    right: 0;
  }

  .navbar-menu > li {
    width: 100%;
    border-bottom: 1px solid rgba(139, 105, 20, 0.3);
  }

  .navbar-menu > li > a {
    padding: 1rem 1.5rem;
    justify-content: space-between;
  }

  .navbar-menu > li > a::before {
    display: none;
  }

  .navbar-menu > li > a.active {
    border-left: 4px solid var(--menu-orange);
    border-right: none;
    background: rgba(255, 140, 0, 0.1);
  }

  /* Dropdown Mobile */
  .submenu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    border: none;
    border-left: 3px solid var(--menu-bronze);
    border-radius: 0;
    box-shadow: none;
    background: rgba(0, 0, 0, 0.3);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0;
    margin-left: 1rem;
  }

  .dropdown.active .submenu {
    max-height: 500px;
    padding: 0.5rem 0;
  }

  .dropdown > a {
    cursor: pointer;
  }

  .submenu a {
    padding: 0.75rem 1.5rem;
  }

  .submenu a:hover {
    padding-left: 2rem;
  }

  /* Close Button Mobile */
  .navbar-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, var(--menu-orange), var(--menu-gold));
    border: 2px solid var(--menu-bronze);
    color: var(--menu-brown);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  }

  .navbar-close:hover {
    background: linear-gradient(135deg, var(--menu-gold), var(--menu-orange));
    box-shadow: var(--menu-glow);
    transform: rotate(90deg);
  }
}

@media (max-width: 768px) {
  .navbar-logo img {
    height: 40px;
  }

  .navbar-menu {
    width: 280px;
  }
}

/* Overlay Mobile */
.navbar-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 999;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.navbar-overlay.active {
  display: block;
  opacity: 1;
}

/* Animações */
@keyframes menuSlideIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.navbar-menu > li {
  animation: menuSlideIn 0.3s ease forwards;
}

.navbar-menu > li:nth-child(1) {
  animation-delay: 0.05s;
}
.navbar-menu > li:nth-child(2) {
  animation-delay: 0.1s;
}
.navbar-menu > li:nth-child(3) {
  animation-delay: 0.15s;
}
.navbar-menu > li:nth-child(4) {
  animation-delay: 0.2s;
}
.navbar-menu > li:nth-child(5) {
  animation-delay: 0.25s;
}
.navbar-menu > li:nth-child(6) {
  animation-delay: 0.3s;
}
.navbar-menu > li:nth-child(7) {
  animation-delay: 0.35s;
}
.navbar-menu > li:nth-child(8) {
  animation-delay: 0.4s;
}

/* Scrollbar do Menu Mobile */
.navbar-menu::-webkit-scrollbar {
  width: 8px;
}

.navbar-menu::-webkit-scrollbar-track {
  background: var(--menu-brown-dark);
}

.navbar-menu::-webkit-scrollbar-thumb {
  background: var(--menu-bronze);
  border-radius: 4px;
}

.navbar-menu::-webkit-scrollbar-thumb:hover {
  background: var(--menu-gold);
}

/* FIM DO MENU  */
.preview-content {
  max-width: 1200px;
  margin: 3rem auto;
  padding: 2rem;
  background: rgba(45, 36, 22, 0.8);
  border: 2px solid var(--menu-bronze);
  border-radius: 12px;
}

.preview-title {
  color: var(--menu-gold);
  font-family: "Vinque Regular", serif;
  font-size: 2.5rem;
  text-align: center;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  margin-bottom: 2rem;
}

.feature-list {
  color: #e8d5b7;
  line-height: 2;
}

.feature-list li {
  margin-bottom: 1rem;
}

.feature-list i {
  color: var(--menu-orange);
  margin-right: 0.5rem;
}
@media (max-width: 1400px) {
  .navbar-menu a {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
  }
}

@media (max-width: 992px) {
  .navbar-toggle {
    display: block;
  }
}
@media (min-width: 993px) {
  .header-data {
    display: block;
  }
}
@media (max-width: 768px) {
  .logo-big {
    display: none;
  }

  .jtme-navbar .container {
    justify-content: space-between;
  }
  .navbar-logo {
    display: block;
  }
  .navbar-logo img {
    height: 56px;
    width: auto;
    opacity: 1;
  }
  .wiki-header {
    margin-top: 72px;
    border-bottom: var(--border-width-thick) solid var(--tibia-gold);
    padding: 1.5rem 0 0.5rem 0;
  }
  .wiki-header .container {
    justify-content: center;
  }
  .jtme-navbar {
    position: absolute;
    top: 0;
    left: 0;
  }
}

#main-ranking {
  width: 100%;
  aspect-ratio: 16/9;
  height: auto;
  background-image: url("../img/fundo.png");
  background-repeat: none;
  background-size: cover;
  position: relative;
}
#main-ranking.pvps {
  background-image: url("../img/fundopvp.png");
}


.ranking-float {
  position: absolute;
  width: 20dvw;
  left: 44dvw;
  top: calc(42.9dvw * 9 / 16);
}
.ranking-float span {
  display: flex;
  width: 18dvw;
  height: 4.5dvw;
  line-height: 1;
  text-shadow: 2px 2px 2px rgb(0, 0, 0);
  font-weight: bold;
  text-transform: uppercase;
  font-size: 1.5dvw;
}
#player2 {
  margin-top: 4.4dvw;
}
#player3 {
  margin-top: 4dvw;
}
@media (max-width: 992px) {
  #main-ranking {
    width: 100%;
    aspect-ratio: 7/9;
    height: auto;
    background-image: url("../img/fundomobile.png");
  }
  #main-ranking.pvps {
    background-image: url("../img/fundopvpmobile.png");
  }

  .ranking-float {
    width: 42dvw;
    left: 37dvw;
    top: calc(71.6dvw * 7 / 9);
  }
  .ranking-float span {
    width: 42dvw;
    height: 4.5dvw;
    line-height: 1.1;
    font-size: 3.2dvw;
  }
  .pvps .ranking-float span {
    font-size: 3.0dvw;
  }

  #player2 {
    margin-top: 16.4dvw;
  }
  #player3 {
    margin-top: 15.8dvw;
  }
}

#rankingLoading {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding-top: 0rem;
}
#rankingLoading p {
  text-shadow: 2px 2px 1px #ec4c02;
}

/* Estilos específicos do Ranking */
.ranking-container {
  background: var(--tibia-bg-medium);
  border: var(--border-width) solid var(--tibia-border);
  border-radius: var(--border-radius-medium);
  overflow: hidden;
  box-shadow: 0 4px 20px var(--shadow-medium);
}

.ranking-table {
  width: 100%;
  border-collapse: collapse;
}

.ranking-table thead {
  background: linear-gradient(180deg, var(--tibia-bg-light) 0%, var(--tibia-bg-dark) 100%);
  position: sticky;
  top: 0;
  z-index: 10;
}

.ranking-table th {
  padding: 1rem;
  text-align: left;
  color: var(--tibia-gold);
  font-weight: bold;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 1px;
  border-bottom: 2px solid var(--tibia-gold);
}

.ranking-table tbody tr {
  transition: all 0.3s ease;
  border-bottom: 1px solid var(--tibia-border);
}

.ranking-table tbody tr:hover {
  background: rgba(212, 175, 55, 0.1);
  transform: scale(1.01);
}
.deaths .ranking-table tbody tr:hover {
  background: rgba(220, 53, 69, 0.1);
  transform: scale(1.01);
}

.ranking-table td {
  padding: 0.85rem 1rem;
  vertical-align: middle;
}

/* Posições especiais - Top 3 */
.rank-position {
  font-weight: bold;
  font-size: 1.1rem;
  width: 60px;
  text-align: center;
}

.rank-1 {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.2) 0%, rgba(255, 193, 7, 0.1) 100%);
}
.rank-1 .rank-position {
  color: #ffd700;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.deaths .rank-1 {
  background: linear-gradient(135deg, rgba(220, 53, 69, 0.25) 0%, rgba(139, 0, 0, 0.15) 100%);
}
.deaths .rank-1 .rank-position {
  color: #dc3545;
  text-shadow: 0 0 10px rgba(220, 53, 69, 0.5);
}

.rank-1 .rank-skull {
  filter: drop-shadow(0 0 8px rgba(220, 53, 69, 0.8));
}
.rank-1 .rank-medal {
  background: linear-gradient(135deg, #ffd700 0%, #ffaa00 100%);
  color: #1a1510;
}

.rank-2 {
  background: linear-gradient(135deg, rgba(192, 192, 192, 0.15) 0%, rgba(169, 169, 169, 0.1) 100%);
}
.rank-2 .rank-position {
  color: #c0c0c0;
  text-shadow: 0 0 10px rgba(192, 192, 192, 0.5);
}
.rank-2 .rank-medal {
  background: linear-gradient(135deg, #c0c0c0 0%, #a8a8a8 100%);
  color: #1a1510;
}

.deaths .rank-2 {
  background: linear-gradient(135deg, rgba(220, 53, 69, 0.18) 0%, rgba(139, 0, 0, 0.1) 100%);
}
.deaths .rank-2 .rank-position {
  color: #e74c5e;
  text-shadow: 0 0 10px rgba(231, 76, 94, 0.5);
}

.rank-3 {
  background: linear-gradient(135deg, rgba(205, 127, 50, 0.15) 0%, rgba(184, 115, 51, 0.1) 100%);
}
.rank-3 .rank-position {
  color: #cd7f32;
  text-shadow: 0 0 10px rgba(205, 127, 50, 0.5);
}

.deaths .rank-3 {
  background: linear-gradient(135deg, rgba(220, 53, 69, 0.12) 0%, rgba(139, 0, 0, 0.05) 100%);
}
.deaths .rank-3 .rank-position {
  color: #f08090;
  text-shadow: 0 0 10px rgba(240, 128, 144, 0.5);
}

.rank-3 .rank-medal {
  background: linear-gradient(135deg, #cd7f32 0%, #b87333 100%);
  color: #1a1510;
}

.rank-medal {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-weight: bold;
  font-size: 0.9rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.rank-skull {
  font-size: 1.4rem;
}

.rank-normal {
  color: var(--tibia-text);
}

/* Nome do jogador */
.player-name {
  font-weight: 600;
  color: var(--tibia-text-light);
  font-size: 1rem;
}

.player-name:hover {
  color: var(--tibia-gold);
}

/* Level */
.player-level {
  font-weight: bold;
  color: var(--tibia-gold);
  font-size: 1.1rem;
}

/* Experience */
.player-exp {
  color: var(--tibia-text);
  font-family: "Courier New", monospace;
}

/* Vocation badges */
.vocation-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
}

.vocation-warrior {
  background: linear-gradient(135deg, #dc3545 0%, #8b0000 100%);
  color: white;
  box-shadow: 0 2px 8px rgba(220, 53, 69, 0.3);
}

.vocation-wizard {
  background: linear-gradient(135deg, #6f42c1 0%, #4a0080 100%);
  color: white;
  box-shadow: 0 2px 8px rgba(111, 66, 193, 0.3);
}

.vocation-badge i {
  font-size: 0.9rem;
}

/* XP Perdida */
.lost-exp {
  font-weight: bold;
  color: #dc3545;
  font-size: 1rem;
  font-family: "Courier New", monospace;
}

/* Killer info */
.killer-info {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.killer-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3rem 0.7rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.killer-pvp {
  background: linear-gradient(135deg, #dc3545 0%, #8b0000 100%);
  color: white;
  box-shadow: 0 2px 8px rgba(220, 53, 69, 0.3);
}

.killer-pve {
  background: linear-gradient(135deg, #6c757d 0%, #495057 100%);
  color: white;
  box-shadow: 0 2px 8px rgba(108, 117, 125, 0.3);
}

.killer-badge i {
  font-size: 0.85rem;
}

/* Death time */
.death-time {
  color: var(--tibia-highlight);
  font-size: 0.85rem;
}

.death-time i {
  margin-right: 0.3rem;
}
/* Stats resumo */
.ranking-stats {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.stat-card {
  background: var(--tibia-bg-medium);
  border: var(--border-width) solid var(--tibia-border);
  border-radius: var(--border-radius-small);
  padding: 1rem 1.5rem;
  flex: 1;
  min-width: 150px;
  text-align: center;
  transition: all 0.3s ease;
}

.stat-card:hover {
  border-color: var(--tibia-gold);
  box-shadow: 0 4px 15px var(--shadow-gold);
}

.stat-card-value {
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--tibia-gold);
}
.deaths .stat-card-value {
  font-size: 1.6rem;
  font-weight: bold;
  color: var(--tibia-gold);
}

.stat-card-value.danger {
  color: #dc3545;
}

.stat-card-label {
  font-size: 0.85rem;
  color: var(--tibia-highlight);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Timestamp de atualização */
.update-info {
  text-align: center;
  padding: 1rem;
  color: var(--tibia-highlight);
  font-size: 0.85rem;
  border-top: 1px solid var(--tibia-border);
}

.update-info i {
  margin-right: 0.5rem;
}

/* Responsivo */
@media (max-width: 992px) {
  .ranking-table .hide-tablet {
    display: none;
  }
}

@media (max-width: 768px) {
  .ranking-table th,
  .ranking-table td {
    padding: 0.6rem 0.5rem;
    font-size: 0.85rem;
  }

  .ranking-table .hide-mobile {
    display: none;
  }

  .player-level {
    font-size: 1rem;
  }

  .vocation-badge {
    padding: 0.25rem 0.5rem;
    font-size: 0.7rem;
  }

  .vocation-badge span {
    display: none;
  }

  .lost-exp {
    font-size: 0.9rem;
  }

  .killer-badge {
    padding: 0.25rem 0.5rem;
    font-size: 0.75rem;
  }

  .rank-skull {
    font-size: 1.2rem;
  }

  .rank-medal {
    width: 28px;
    height: 28px;
    font-size: 0.8rem;
  }
}

/* Animação de entrada */
.ranking-table tbody tr {
  animation: fadeInUp 0.4s ease forwards;
  opacity: 0;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Aplica delay progressivo nas linhas */
.ranking-table tbody tr:nth-child(1) {
  animation-delay: 0.05s;
}
.ranking-table tbody tr:nth-child(2) {
  animation-delay: 0.1s;
}
.ranking-table tbody tr:nth-child(3) {
  animation-delay: 0.15s;
}
.ranking-table tbody tr:nth-child(4) {
  animation-delay: 0.2s;
}
.ranking-table tbody tr:nth-child(5) {
  animation-delay: 0.25s;
}
.ranking-table tbody tr:nth-child(n + 6) {
  animation-delay: 0.3s;
}

/* No results */
.no-results {
  text-align: center;
  padding: 3rem;
  color: var(--tibia-highlight);
}

.no-results i {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
  color: var(--tibia-border);
}

/* Header icon style */
.wiki-title .bi-heartbreak-fill {
  color: #dc3545;
}

.ranking-container.pvp .ranking-table tbody tr:hover {
  background: rgba(220, 53, 69, 0.1);
  transform: scale(1.01);
}

.ranking-stats.pvp .stat-card-value {
  font-size: 1.6rem;
  font-weight: bold;
  color: var(--tibia-gold);
}

.stat-card-value.pvp-gladiator {
  color: #ffd700 !important;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.stat-card-value.pvp-squire {
  color: #c0c0c0 !important;
  text-shadow: 0 0 10px rgba(192, 192, 192, 0.5);
}

.stat-card-value.pvp-wanderer {
  color: #cd7f32 !important;
  text-shadow: 0 0 10px rgba(205, 127, 50, 0.5);
}

.pvp-points {
  font-weight: bold;
  color: #dc3545;
  font-size: 1.1rem;
  font-family: "Courier New", monospace;
}

.pvp-title-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
}

.pvp-title-badge i {
  font-size: 0.9rem;
}

.pvp-gladiator {
  background: linear-gradient(135deg, #ffd700 0%, #ff8c00 100%);
  color: #1a1510;
  box-shadow: 0 2px 8px rgba(255, 215, 0, 0.4);
}

.pvp-squire {
  background: linear-gradient(135deg, #6c757d 0%, #495057 100%);
  color: white;
  box-shadow: 0 2px 8px rgba(108, 117, 125, 0.3);
}

.pvp-wanderer {
  background: linear-gradient(135deg, #8b6914 0%, #5a4a2f 100%);
  color: #e8d5b7;
  box-shadow: 0 2px 8px rgba(139, 105, 20, 0.3);
}

.rank-medal-pvp-1 {
  font-size: 1.4rem;
  filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.8));
}

.rank-medal-pvp-2 {
  font-size: 1.4rem;
  filter: drop-shadow(0 0 8px rgba(192, 192, 192, 0.8));
}

.rank-medal-pvp-3 {
  font-size: 1.4rem;
  filter: drop-shadow(0 0 8px rgba(205, 127, 50, 0.8));
}

.pvp .rank-1 {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.2) 0%, rgba(255, 140, 0, 0.1) 100%);
}

.pvp .rank-1 .rank-position {
  color: #ffd700;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.pvp .rank-1 .pvp-points {
  color: #ffd700;
  text-shadow: 0 0 5px rgba(255, 215, 0, 0.3);
}

.pvp .rank-2 {
  background: linear-gradient(135deg, rgba(192, 192, 192, 0.15) 0%, rgba(169, 169, 169, 0.1) 100%);
}

.pvp .rank-2 .rank-position {
  color: #c0c0c0;
  text-shadow: 0 0 10px rgba(192, 192, 192, 0.5);
}

.pvp .rank-3 {
  background: linear-gradient(135deg, rgba(205, 127, 50, 0.15) 0%, rgba(184, 115, 51, 0.1) 100%);
}

.pvp .rank-3 .rank-position {
  color: #cd7f32;
  text-shadow: 0 0 10px rgba(205, 127, 50, 0.5);
}

@media (max-width: 768px) {
  .pvp-title-badge {
    padding: 0.25rem 0.5rem;
    font-size: 0.7rem;
  }

  .pvp-title-badge span {
    display: none;
  }

  .pvp-points {
    font-size: 0.9rem;
  }

  .rank-medal-pvp-1,
  .rank-medal-pvp-2,
  .rank-medal-pvp-3 {
    font-size: 1.2rem;
  }
}

.wiki-title .bi-star-fill {
  color: #ffd700;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.8);
}

/* Stars Ranking Container */
.ranking-container.stars .ranking-table tbody tr:hover {
  background: rgba(255, 215, 0, 0.1);
  transform: scale(1.01);
}

/* Stars Stats Cards */
.ranking-stats.stars .stat-card-value {
  font-size: 1.6rem;
  font-weight: bold;
  color: var(--tibia-gold);
}

.stat-card-value.stars-gold {
  color: #ffd700 !important;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.stat-card-value.stars-top {
  color: #ffd700 !important;
  font-size: 1.2rem !important;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

/* Stars Count Column */
.stars-count {
  font-weight: bold;
  color: #ffd700;
  font-size: 1.1rem;
  font-family: "Courier New", monospace;
}

.stars-count .star-icon {
  color: #ffd700;
  margin-right: 0.3rem;
  filter: drop-shadow(0 0 3px rgba(255, 215, 0, 0.5));
}

/* Stars Rank Medals */
.rank-medal-stars-1 {
  font-size: 1.4rem;
  filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.8));
}

.rank-medal-stars-2 {
  font-size: 1.4rem;
  filter: drop-shadow(0 0 8px rgba(192, 192, 192, 0.8));
}

.rank-medal-stars-3 {
  font-size: 1.4rem;
  filter: drop-shadow(0 0 8px rgba(205, 127, 50, 0.8));
}

/* Stars Progress Bar */
.stars-progress-container {
  position: relative;
  width: 100%;
  height: 20px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--tibia-border);
}

.stars-progress-bar {
  height: 100%;
  border-radius: 10px;
  transition: width 0.5s ease;
  background: linear-gradient(135deg, #5a4a2f 0%, #8b6914 100%);
}

.stars-progress-bar.progress-gold {
  background: linear-gradient(135deg, #ffd700 0%, #ffaa00 100%);
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.stars-progress-bar.progress-silver {
  background: linear-gradient(135deg, #c0c0c0 0%, #a8a8a8 100%);
  box-shadow: 0 0 10px rgba(192, 192, 192, 0.5);
}

.stars-progress-bar.progress-bronze {
  background: linear-gradient(135deg, #cd7f32 0%, #b87333 100%);
  box-shadow: 0 0 10px rgba(205, 127, 50, 0.5);
}

.stars-progress-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.75rem;
  font-weight: bold;
  color: var(--tibia-text-light);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

/* Stars Rank 1 Row Styling */
.stars .rank-1 {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.2) 0%, rgba(255, 170, 0, 0.1) 100%);
}

.stars .rank-1 .rank-position {
  color: #ffd700;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.stars .rank-1 .stars-count {
  color: #ffd700;
  text-shadow: 0 0 5px rgba(255, 215, 0, 0.3);
}

/* Stars Rank 2 Row Styling */
.stars .rank-2 {
  background: linear-gradient(135deg, rgba(192, 192, 192, 0.15) 0%, rgba(169, 169, 169, 0.1) 100%);
}

.stars .rank-2 .rank-position {
  color: #c0c0c0;
  text-shadow: 0 0 10px rgba(192, 192, 192, 0.5);
}

/* Stars Rank 3 Row Styling */
.stars .rank-3 {
  background: linear-gradient(135deg, rgba(205, 127, 50, 0.15) 0%, rgba(184, 115, 51, 0.1) 100%);
}

.stars .rank-3 .rank-position {
  color: #cd7f32;
  text-shadow: 0 0 10px rgba(205, 127, 50, 0.5);
}

/* Stars Progress Column */
.stars-progress {
  min-width: 150px;
}

/* Responsivo para Stars */
@media (max-width: 768px) {
  .stars-count {
    font-size: 0.9rem;
  }

  .stars-count .star-icon {
    font-size: 0.8rem;
  }

  .rank-medal-stars-1,
  .rank-medal-stars-2,
  .rank-medal-stars-3 {
    font-size: 1.2rem;
  }
}

/* Daily XP Ranking Container */
.ranking-container.dailyxp .ranking-table tbody tr:hover {
  background: rgba(40, 167, 69, 0.1);
  transform: scale(1.01);
}

/* Daily XP Stats Cards */
.ranking-stats.dailyxp .stat-card-value {
  font-size: 1.6rem;
  font-weight: bold;
  color: var(--tibia-gold);
}

.stat-card-value.xp-positive {
  color: #28a745 !important;
  text-shadow: 0 0 10px rgba(40, 167, 69, 0.5);
}

.stat-card-value.xp-top {
  color: #28a745 !important;
  font-size: 1.2rem !important;
  text-shadow: 0 0 10px rgba(40, 167, 69, 0.5);
}

/* Daily XP Count Column */
.dailyxp-count {
  font-weight: bold;
  font-size: 1.1rem;
  font-family: "Courier New", monospace;
}

.dailyxp-count.xp-positive {
  color: #28a745;
}

.dailyxp-count.xp-negative {
  color: #dc3545;
}

/* Daily XP Rank Medals */
.rank-medal-dailyxp-1 {
  font-size: 1.4rem;
  filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.8));
}

.rank-medal-dailyxp-2 {
  font-size: 1.4rem;
  filter: drop-shadow(0 0 8px rgba(192, 192, 192, 0.8));
}

.rank-medal-dailyxp-3 {
  font-size: 1.4rem;
  filter: drop-shadow(0 0 8px rgba(205, 127, 50, 0.8));
}

/* Daily XP Progress Bar */
.dailyxp-progress-container {
  position: relative;
  width: 100%;
  height: 20px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--tibia-border);
}

.dailyxp-progress-bar {
  height: 100%;
  border-radius: 10px;
  transition: width 0.5s ease;
  background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
}

.dailyxp-progress-bar.progress-gold {
  background: linear-gradient(135deg, #ffd700 0%, #ffaa00 100%);
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.dailyxp-progress-bar.progress-silver {
  background: linear-gradient(135deg, #c0c0c0 0%, #a8a8a8 100%);
  box-shadow: 0 0 10px rgba(192, 192, 192, 0.5);
}

.dailyxp-progress-bar.progress-bronze {
  background: linear-gradient(135deg, #cd7f32 0%, #b87333 100%);
  box-shadow: 0 0 10px rgba(205, 127, 50, 0.5);
}

.dailyxp-progress-bar.progress-negative {
  background: linear-gradient(135deg, #dc3545 0%, #8b0000 100%);
  box-shadow: 0 0 10px rgba(220, 53, 69, 0.5);
}

.dailyxp-progress-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.75rem;
  font-weight: bold;
  color: var(--tibia-text-light);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

/* Daily XP Rank 1 Row Styling */
.dailyxp .rank-1 {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.2) 0%, rgba(255, 170, 0, 0.1) 100%);
}

.dailyxp .rank-1 .rank-position {
  color: #ffd700;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.dailyxp .rank-1 .dailyxp-count {
  color: #ffd700 !important;
  text-shadow: 0 0 5px rgba(255, 215, 0, 0.3);
}

/* Daily XP Rank 2 Row Styling */
.dailyxp .rank-2 {
  background: linear-gradient(135deg, rgba(192, 192, 192, 0.15) 0%, rgba(169, 169, 169, 0.1) 100%);
}

.dailyxp .rank-2 .rank-position {
  color: #c0c0c0;
  text-shadow: 0 0 10px rgba(192, 192, 192, 0.5);
}

/* Daily XP Rank 3 Row Styling */
.dailyxp .rank-3 {
  background: linear-gradient(135deg, rgba(205, 127, 50, 0.15) 0%, rgba(184, 115, 51, 0.1) 100%);
}

.dailyxp .rank-3 .rank-position {
  color: #cd7f32;
  text-shadow: 0 0 10px rgba(205, 127, 50, 0.5);
}

/* Daily XP Progress Column */
.dailyxp-progress {
  min-width: 150px;
}

/* Responsivo para Daily XP */
@media (max-width: 768px) {
  .dailyxp-count {
    font-size: 0.9rem;
  }

  .rank-medal-dailyxp-1,
  .rank-medal-dailyxp-2,
  .rank-medal-dailyxp-3 {
    font-size: 1.2rem;
  }
}

.hero-section {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.1) 0%, transparent 50%), linear-gradient(135deg, var(--tibia-bg-dark) 0%, var(--tibia-bg-medium) 50%, var(--tibia-bg-dark) 100%);
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="%23d4af37" opacity="0.1"/></svg>') repeat;
  background-size: 50px 50px;
  animation: sparkle 20s linear infinite;
  pointer-events: none;
}

@keyframes sparkle {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-50px);
  }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 2rem;
}

.hero-logo {
  max-width: 350px;
  width: 100%;
  height: auto;
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 0 30px rgba(212, 175, 55, 0.5));
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

.hero-tagline {
  font-size: 1.8rem;
  color: var(--tibia-gold);
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  margin-bottom: 1.5rem;
  letter-spacing: 2px;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.hero-stat {
  text-align: center;
}

.hero-stat-value {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--menu-orange);
  text-shadow: 0 0 20px rgba(255, 140, 0, 0.6);
  font-family: "Courier New", monospace;
  display: block;
}

.hero-stat-label {
  font-size: 0.9rem;
  color: var(--tibia-text);
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.9;
}

.hero-stat-online {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.btn-download {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2.5rem;
  font-size: 1.3rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--menu-brown-dark);
  background: linear-gradient(135deg, var(--menu-gold) 0%, var(--menu-orange) 50%, var(--menu-gold) 100%);
  background-size: 200% 200%;
  border: 3px solid var(--menu-bronze);
  border-radius: 12px;
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4), 0 0 30px rgba(255, 215, 0, 0.3), inset 0 2px 0 rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
  animation: gradient-shift 3s ease infinite;
  position: relative;
  overflow: hidden;
}

@keyframes gradient-shift {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.btn-download::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.5s ease;
}

.btn-download:hover::before {
  left: 100%;
}

.btn-download:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5), 0 0 50px rgba(255, 215, 0, 0.5);
  color: var(--menu-brown-dark);
}

.btn-download i {
  font-size: 1.5rem;
}

.update-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  background: linear-gradient(135deg, rgba(255, 140, 0, 0.2), rgba(212, 175, 55, 0.1));
  border: 1px solid var(--menu-orange);
  border-radius: 50px;
  color: var(--menu-orange);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(255, 140, 0, 0.4);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(255, 140, 0, 0);
  }
}

/* ========================================
         WELCOME SECTION STYLES
         ======================================== */
.welcome-section {
  padding: 5rem 0;
  background: linear-gradient(180deg, var(--tibia-bg-medium) 0%, var(--tibia-bg-dark) 100%);
  position: relative;
}

.welcome-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--tibia-gold), var(--menu-orange), var(--tibia-gold), transparent);
}

.welcome-card {
  background: var(--tibia-bg-light);
  border: 2px solid var(--tibia-border);
  border-radius: var(--border-radius-medium);
  padding: 3rem;
  box-shadow: 0 10px 40px var(--shadow-heavy), 0 0 20px var(--shadow-gold);
  position: relative;
  overflow: hidden;
}

.welcome-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--menu-gold), var(--menu-orange), var(--menu-gold));
}

.welcome-title {
  font-size: 2.5rem;
  color: var(--tibia-gold);
  font-weight: bold;
  text-shadow: 2px 2px 1px #ec4c02;
  margin-bottom: 1.5rem;
  text-align: center;
  font-family: "Vinque Regular", serif;
}

.welcome-title i {
  color: var(--menu-orange);
  margin-right: 0.5rem;
}

.welcome-text {
  font-size: 1.15rem;
  line-height: 1.9;
  color: var(--tibia-text);
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.welcome-text strong {
  color: var(--tibia-gold);
}

.features-section {
  padding: 4rem 0;
  background: var(--tibia-bg-dark);
}

.feature-card {
  background: var(--tibia-bg-medium);
  border: 2px solid var(--tibia-border);
  border-radius: var(--border-radius-medium);
  padding: 2rem;
  text-align: center;
  height: 100%;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, transparent 0%, var(--tibia-gold) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.feature-card:hover::before {
  opacity: 0.05;
}

.feature-card:hover {
  border-color: var(--tibia-gold);
  transform: translateY(-8px);
  box-shadow: 0 10px 30px var(--shadow-gold);
}

.feature-icon {
  font-size: 3rem;
  color: var(--menu-orange);
  margin-bottom: 1rem;
  display: block;
  filter: drop-shadow(0 0 10px rgba(255, 140, 0, 0.5));
}

.feature-title {
  font-size: 1.25rem;
  color: var(--tibia-gold);
  font-weight: bold;
  margin-bottom: 0.75rem;
}

.feature-text {
  color: var(--tibia-text);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ========================================
         FOOTER STYLES
         ======================================== */
.site-footer {
  background: linear-gradient(180deg, var(--tibia-bg-medium) 0%, var(--menu-brown-dark) 100%);
  border-top: 3px solid var(--menu-gold);
  padding: 2rem 0;
  text-align: center;
}

.footer-text {
  color: var(--tibia-text);
  font-size: 0.9rem;
  margin: 0;
  opacity: 0.8;
}

.footer-text a {
  color: var(--menu-orange);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-text a:hover {
  color: var(--tibia-gold);
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.site-footer {
  background: linear-gradient(180deg, var(--tibia-bg-medium) 0%, var(--menu-brown-dark) 100%);
  border-top: 3px solid var(--menu-gold);
  padding: 3rem 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--tibia-border);
}

.footer-brand img {
  max-width: 150px;
  margin-bottom: 1rem;
  filter: drop-shadow(0 5px 15px rgba(212, 175, 55, 0.3));
}

.footer-brand p {
  color: var(--tibia-text);
  font-size: 0.95rem;
  line-height: 1.6;
  opacity: 0.9;
}

.footer-links h4,
.footer-social h4 {
  color: var(--tibia-gold);
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.footer-links ul {
  text-align: center;
}
.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
  display: inline-block;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: var(--tibia-text);
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-links a:hover {
  color: var(--menu-orange);
  transform: translateX(5px);
}

.footer-links a i {
  font-size: 0.8rem;
  color: var(--menu-orange);
}

.social-icons {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.social-icon {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: var(--tibia-bg-dark);
  border: 2px solid var(--tibia-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--tibia-gold);
  font-size: 1.25rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: var(--tibia-gold);
  border-color: var(--tibia-gold);
  color: var(--menu-brown-dark);
  transform: translateY(-5px);
}

.social-icon.discord:hover {
  background: #5865f2;
  border-color: #5865f2;
  color: white;
}

.social-icon.whatsapp:hover {
  background: #25d366;
  border-color: #25d366;
  color: white;
}

.social-icon.youtube:hover {
  background: #ff0000;
  border-color: #ff0000;
  color: white;
}

.footer-bottom {
  text-align: center;
}

.footer-text {
  color: var(--tibia-text);
  font-size: 0.9rem;
  margin: 0;
  opacity: 0.8;
}

.footer-text a {
  color: var(--menu-orange);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-text a:hover {
  color: var(--tibia-gold);
}

/* ========================================
         ABOUT CONTENT
         ======================================== */
.about-content {
  padding: 4rem 0;
  background: var(--tibia-bg-dark);
  position: relative;
}

/* ========================================
         INTRO SECTION
         ======================================== */
.intro-section {
  background: var(--tibia-bg-medium);
  border: 2px solid var(--tibia-border);
  border-radius: var(--border-radius-medium);
  padding: 2.5rem;
  margin-bottom: 4rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 40px var(--shadow-heavy);
}

.intro-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--menu-gold), var(--menu-orange), var(--menu-gold));
}

.intro-title {
  font-size: 1.8rem;
  color: var(--tibia-gold);
  font-weight: bold;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.intro-title i {
  color: var(--menu-orange);
  font-size: 1.5rem;
}

.intro-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--tibia-text);
}

/* ========================================
         TIMELINE STYLES
         ======================================== */
.timeline-section {
  position: relative;
}

.timeline-title {
  font-size: 2rem;
  color: var(--tibia-gold);
  font-weight: bold;
  text-shadow: 2px 2px 1px #ec4c02;
  margin-bottom: 3rem;
  text-align: center;
  font-family: "Vinque Regular", serif;
}

.timeline-title i {
  color: var(--menu-orange);
  margin-right: 0.5rem;
}

.timeline {
  position: relative;
  padding: 2rem 0;
}

/* Vertical line */
.timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  background: linear-gradient(180deg, var(--menu-gold), var(--menu-orange), var(--tibia-gold));
  transform: translateX(-50%);
  border-radius: 2px;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

.timeline-item {
  position: relative;
  width: 50%;
  padding: 0 3rem 3rem;
}

.timeline-item:nth-child(odd) {
  left: 0;
  text-align: right;
  padding-right: 4rem;
  padding-left: 0;
}

.timeline-item:nth-child(even) {
  left: 50%;
  text-align: left;
  padding-left: 4rem;
  padding-right: 0;
}

/* Timeline dot */
.timeline-item::before {
  content: "";
  position: absolute;
  top: 0;
  width: 20px;
  height: 20px;
  background: linear-gradient(135deg, var(--menu-gold), var(--menu-orange));
  border: 3px solid var(--tibia-bg-dark);
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
  z-index: 1;
}

.timeline-item:nth-child(odd)::before {
  right: -10px;
}

.timeline-item:nth-child(even)::before {
  left: -10px;
}

/* Timeline connector line */
.timeline-item::after {
  content: "";
  position: absolute;
  top: 8px;
  width: 30px;
  height: 3px;
  background: var(--tibia-gold);
}

.timeline-item:nth-child(odd)::after {
  right: 0;
}

.timeline-item:nth-child(even)::after {
  left: 0;
}

.timeline-card {
  background: var(--tibia-bg-medium);
  border: 2px solid var(--tibia-border);
  border-radius: var(--border-radius-medium);
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px var(--shadow-medium);
}

.timeline-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, transparent 0%, var(--tibia-gold) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.timeline-card:hover::before {
  opacity: 0.05;
}

.timeline-card:hover {
  border-color: var(--tibia-gold);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px var(--shadow-gold);
}

.timeline-year {
  display: inline-block;
  background: linear-gradient(135deg, var(--menu-orange), var(--menu-gold));
  color: var(--menu-brown-dark);
  padding: 0.35rem 1rem;
  border-radius: 20px;
  font-weight: bold;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  box-shadow: 0 3px 10px rgba(255, 140, 0, 0.3);
}

.timeline-heading {
  color: var(--tibia-gold);
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 0.75rem;
}

.timeline-heading i {
  margin-right: 0.5rem;
  color: var(--menu-orange);
}

.timeline-text {
  color: var(--tibia-text);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}

.timeline-text strong {
  color: var(--tibia-gold);
}

.gallery-section {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 2px solid var(--tibia-border);
}

.gallery-tutorial {
  margin-bottom: 2rem;
}

.gallery-title {
  font-size: 1.8rem;
  color: var(--tibia-gold);
  font-weight: bold;
  text-shadow: 2px 2px 1px #ec4c02;
  margin-bottom: 2rem;
  text-align: center;
  font-family: "Vinque Regular", serif;
}

.gallery-title i {
  color: var(--menu-orange);
  margin-right: 0.5rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.gallery-item {
  position: relative;
  border-radius: var(--border-radius-medium);
  overflow: hidden;
  border: 3px solid var(--tibia-border);
  cursor: pointer;
  transition: all 0.3s ease;
  aspect-ratio: 16/10;
}

.gallery-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.7) 100%);
  z-index: 1;
  pointer-events: none;
}

.gallery-item:hover {
  border-color: var(--tibia-gold);
  transform: scale(1.02);
  box-shadow: 0 10px 40px var(--shadow-gold);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem;
  color: var(--tibia-text-light);
  font-weight: bold;
  font-size: 1rem;
  z-index: 2;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

.gallery-caption i {
  color: var(--menu-orange);
  margin-right: 0.5rem;
}

/* ========================================
         TEAM SECTION
         ======================================== */
.team-section {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 2px solid var(--tibia-border);
}

.team-title {
  font-size: 1.8rem;
  color: var(--tibia-gold);
  font-weight: bold;
  text-shadow: 2px 2px 1px #ec4c02;
  margin-bottom: 2rem;
  text-align: center;
  font-family: "Vinque Regular", serif;
}

.team-title i {
  color: var(--menu-orange);
  margin-right: 0.5rem;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.team-card {
  background: var(--tibia-bg-medium);
  border: 2px solid var(--tibia-border);
  border-radius: var(--border-radius-medium);
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
}

.team-card:hover {
  border-color: var(--tibia-gold);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px var(--shadow-gold);
}

.team-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--menu-orange), var(--menu-gold));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  box-shadow: 0 5px 20px rgba(255, 140, 0, 0.3);
}

.team-avatar i {
  font-size: 2.5rem;
  color: var(--menu-brown-dark);
}

.team-name {
  color: var(--tibia-gold);
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 0.25rem;
}

.team-role {
  color: var(--menu-orange);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.team-period {
  color: var(--tibia-text);
  font-size: 0.85rem;
  opacity: 0.8;
}

.partnership-content {
  padding: 4rem 0;
  background: var(--tibia-bg-dark);
}

.hero-banner {
  background: linear-gradient(135deg, var(--tibia-bg-medium) 0%, var(--tibia-bg-light) 100%);
  border: 2px solid var(--tibia-border);
  border-radius: var(--border-radius-medium);
  padding: 3rem;
  margin-bottom: 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 40px var(--shadow-heavy);
}

.hero-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--menu-gold), var(--menu-orange), var(--menu-gold));
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  background: linear-gradient(135deg, var(--menu-orange), var(--menu-gold));
  color: var(--menu-brown-dark);
  font-size: 0.9rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 25px;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 15px rgba(255, 140, 0, 0.4);
}

.hero-title {
  font-size: 2.5rem;
  color: var(--tibia-gold);
  font-weight: bold;
  text-shadow: 2px 2px 1px #ec4c02;
  margin-bottom: 1rem;
  font-family: "Vinque Regular", serif;
}

.hero-text {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--tibia-text);
  max-width: 800px;
  margin: 0 auto;
}

.tiers-section {
  margin-bottom: 4rem;
}

.section-title {
  font-size: 2rem;
  color: var(--tibia-gold);
  font-weight: bold;
  text-shadow: 2px 2px 1px #ec4c02;
  margin-bottom: 2.5rem;
  text-align: center;
  font-family: "Vinque Regular", serif;
}

.section-title i {
  color: var(--menu-orange);
  margin-right: 0.5rem;
}

.tiers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.tier-card {
  background: var(--tibia-bg-medium);
  border: 3px solid var(--tibia-border);
  border-radius: var(--border-radius-medium);
  padding: 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
}

.tier-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
}

/* Silver Tier */
.tier-card.silver {
  border-color: #a8a8a8;
}

.tier-card.silver::before {
  background: linear-gradient(90deg, #c0c0c0, #e8e8e8, #c0c0c0);
}

.tier-card.silver .tier-icon {
  background: linear-gradient(135deg, #c0c0c0, #e8e8e8);
  box-shadow: 0 5px 20px rgba(192, 192, 192, 0.5);
}

.tier-card.silver .tier-name {
  color: #c0c0c0;
  text-shadow: 0 0 15px rgba(192, 192, 192, 0.5);
}

.tier-card.silver:hover {
  border-color: #c0c0c0;
  box-shadow: 0 15px 50px rgba(192, 192, 192, 0.3);
}

/* Blue Tier */
.tier-card.blue {
  border-color: #4a90d9;
}

.tier-card.blue::before {
  background: linear-gradient(90deg, #007bff, #00bfff, #007bff);
}

.tier-card.blue .tier-icon {
  background: linear-gradient(135deg, #007bff, #00bfff);
  box-shadow: 0 5px 20px rgba(0, 123, 255, 0.5);
}

.tier-card.blue .tier-name {
  color: #00bfff;
  text-shadow: 0 0 15px rgba(0, 191, 255, 0.5);
}

.tier-card.blue:hover {
  border-color: #00bfff;
  box-shadow: 0 15px 50px rgba(0, 123, 255, 0.3);
}

/* Gold Tier */
.tier-card.gold {
  border-color: var(--tibia-gold);
  transform: scale(1.05);
}

.tier-card.gold::before {
  background: linear-gradient(90deg, var(--menu-gold), var(--menu-orange), var(--menu-gold));
}

.tier-card.gold .tier-icon {
  background: linear-gradient(135deg, var(--menu-gold), var(--menu-orange));
  box-shadow: 0 5px 20px rgba(255, 215, 0, 0.5);
}

.tier-card.gold .tier-name {
  color: var(--tibia-gold);
  text-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}

.tier-card.gold:hover {
  border-color: var(--menu-orange);
  box-shadow: 0 15px 50px rgba(255, 215, 0, 0.4);
}

.tier-card:hover {
  transform: translateY(-10px) scale(1.02);
}

.tier-card.gold:hover {
  transform: translateY(-10px) scale(1.07);
}

.tier-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  padding: 0.25rem 0.75rem;
  background: linear-gradient(135deg, var(--menu-orange), var(--menu-gold));
  color: var(--menu-brown-dark);
  font-size: 0.7rem;
  font-weight: bold;
  text-transform: uppercase;
  border-radius: 15px;
}

.tier-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.tier-icon i {
  font-size: 2.5rem;
  color: var(--menu-brown-dark);
}

.tier-name {
  font-size: 1.75rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.tier-stats {
  margin-bottom: 1.5rem;
}

.tier-stat {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--tibia-border);
}

.tier-stat:last-child {
  border-bottom: none;
}

.tier-stat-label {
  color: var(--tibia-text);
  font-size: 0.9rem;
}

.tier-stat-label i {
  margin-right: 0.5rem;
  color: var(--menu-orange);
}

.tier-stat-value {
  color: var(--tibia-gold);
  font-weight: bold;
  font-size: 0.95rem;
}

.tier-benefit {
  background: var(--tibia-bg-dark);
  border: 1px solid var(--tibia-border);
  border-radius: var(--border-radius-small);
  padding: 1.25rem;
  margin-top: auto;
}

.tier-benefit-title {
  color: var(--menu-orange);
  font-size: 0.85rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.tier-benefit-value {
  color: var(--tibia-gold);
  font-size: 1.25rem;
  font-weight: bold;
}

.tier-benefit-value i {
  margin-right: 0.25rem;
}

.tier-benefit-extra {
  color: var(--tibia-text);
  font-size: 0.85rem;
  margin-top: 0.5rem;
  opacity: 0.9;
}

/* ========================================
         RULES SECTION
         ======================================== */
.rules-section {
  background: var(--tibia-bg-medium);
  border: 2px solid var(--tibia-border);
  border-radius: var(--border-radius-medium);
  padding: 2.5rem;
  margin-bottom: 4rem;
  box-shadow: 0 5px 25px var(--shadow-medium);
}

.rules-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.rule-card {
  background: var(--tibia-bg-dark);
  border: 1px solid var(--tibia-border);
  border-radius: var(--border-radius-small);
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
}

.rule-card:hover {
  border-color: var(--tibia-gold);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px var(--shadow-gold);
}

.rule-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--menu-orange), var(--menu-gold));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  box-shadow: 0 5px 15px rgba(255, 140, 0, 0.3);
}

.rule-icon i {
  font-size: 1.5rem;
  color: var(--menu-brown-dark);
}

.rule-title {
  color: var(--tibia-gold);
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 0.75rem;
}

.rule-text {
  color: var(--tibia-text);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

.cta-section {
  background: linear-gradient(135deg, rgba(255, 140, 0, 0.15) 0%, rgba(212, 175, 55, 0.1) 100%);
  border: 3px solid var(--tibia-gold);
  border-radius: var(--border-radius-medium);
  padding: 3rem;
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 40px var(--shadow-gold);
}

.cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--menu-gold), var(--menu-orange), var(--menu-gold));
}

.cta-title {
  font-size: 1.75rem;
  color: var(--tibia-gold);
  font-weight: bold;
  margin-bottom: 1rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.cta-text {
  color: var(--tibia-text);
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto 2rem;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.btn-cta-primary {
  background: linear-gradient(135deg, var(--menu-gold), var(--menu-orange));
  color: var(--menu-brown-dark);
  border: 2px solid var(--menu-bronze);
  box-shadow: 0 5px 20px rgba(255, 140, 0, 0.4);
}

.btn-cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.5);
  color: var(--menu-brown-dark);
}

.btn-cta-secondary {
  background: var(--tibia-bg-dark);
  color: var(--tibia-gold);
  border: 2px solid var(--tibia-gold);
}

.btn-cta-secondary:hover {
  background: var(--tibia-gold);
  color: var(--menu-brown-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.partners-section {
  margin-bottom: 2rem;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
}

.partner-card {
  background: var(--tibia-bg-medium);
  border: 2px solid var(--tibia-border);
  border-radius: var(--border-radius-medium);
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.partner-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #ff0000, #ff4444);
}

.partner-card:hover {
  border-color: var(--tibia-gold);
  transform: translateY(-8px);
  box-shadow: 0 15px 40px var(--shadow-gold);
}

.partner-avatar {
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 1rem;
  border: 3px solid var(--tibia-border);
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px var(--shadow-medium);
}

.partner-card:hover .partner-avatar {
  border-color: var(--tibia-gold);
  box-shadow: 0 5px 25px var(--shadow-gold);
}

.partner-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.partner-name {
  color: var(--tibia-gold);
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 0.25rem;
}

.partner-ingame {
  color: var(--tibia-text);
  font-size: 0.85rem;
  margin-bottom: 1rem;
  opacity: 0.8;
}

.partner-ingame span {
  color: var(--menu-orange);
  font-weight: 600;
}

.partner-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: linear-gradient(135deg, #ff0000, #cc0000);
  color: white;
  font-size: 0.85rem;
  font-weight: bold;
  text-decoration: none;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.partner-link:hover {
  background: linear-gradient(135deg, #ff3333, #ff0000);
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(255, 0, 0, 0.4);
  color: white;
}

.partner-link i {
  font-size: 1rem;
}

.kit-section {
  background: var(--tibia-bg-medium);
  border: 2px solid var(--tibia-border);
  border-radius: var(--border-radius-medium);
  padding: 2rem;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.kit-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.kit-icon {
  font-size: 2.5rem;
  color: var(--menu-orange);
  filter: drop-shadow(0 0 10px rgba(255, 140, 0, 0.5));
}

.kit-text h4 {
  color: var(--tibia-gold);
  font-size: 1.25rem;
  margin: 0 0 0.25rem 0;
}

.kit-text p {
  color: var(--tibia-text);
  font-size: 0.9rem;
  margin: 0;
  opacity: 0.9;
}

.btn-kit {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, var(--menu-orange), var(--menu-gold));
  color: var(--menu-brown-dark);
  font-weight: bold;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(255, 140, 0, 0.3);
}

.btn-kit:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255, 215, 0, 0.4);
  color: var(--menu-brown-dark);
}

.download-content {
  padding: 4rem 0;
  background: var(--tibia-bg-dark);
  min-height: 60vh;
}

.download-content .intro-section {
  text-align: center;
  margin-bottom: 3rem;
}

.download-content .intro-text {
  font-size: 1.2rem;
  color: var(--tibia-text);
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto;
}

.download-content .intro-text strong {
  color: var(--tibia-gold);
}

.platforms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.platform-card {
  background: var(--tibia-bg-medium);
  border: 3px solid var(--tibia-border);
  border-radius: var(--border-radius-large);
  padding: 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
}

.platform-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
}

.platform-card.android {
  border-color: #3ddc84;
}

.platform-card.android::before {
  background: linear-gradient(90deg, #3ddc84, #00c853, #3ddc84);
}

.platform-card.android:hover {
  border-color: #00c853;
  box-shadow: 0 20px 60px rgba(61, 220, 132, 0.25);
  transform: translateY(-10px);
}

.platform-card.android .platform-icon {
  background: linear-gradient(135deg, #3ddc84, #00c853);
  box-shadow: 0 10px 30px rgba(61, 220, 132, 0.4);
}

.platform-card.pc {
  border-color: #00bfff;
}

.platform-card.pc::before {
  background: linear-gradient(90deg, #00bfff, #1e90ff, #00bfff);
}

.platform-card.pc:hover {
  border-color: #1e90ff;
  box-shadow: 0 20px 60px rgba(0, 191, 255, 0.25);
  transform: translateY(-10px);
}

.platform-card.pc .platform-icon {
  background: linear-gradient(135deg, #00bfff, #1e90ff);
  box-shadow: 0 10px 30px rgba(0, 191, 255, 0.4);
}

.platform-card.iphone {
  border-color: #a8a8a8;
}

.platform-card.iphone::before {
  background: linear-gradient(90deg, #a8a8a8, #e0e0e0, #a8a8a8);
}

.platform-card.iphone:hover {
  border-color: #e0e0e0;
  box-shadow: 0 20px 60px rgba(168, 168, 168, 0.25);
  transform: translateY(-10px);
}

.platform-card.iphone .platform-icon {
  background: linear-gradient(135deg, #a8a8a8, #e0e0e0);
  box-shadow: 0 10px 30px rgba(168, 168, 168, 0.4);
}

.platform-icon {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: transform 0.3s ease;
}

.platform-card:hover .platform-icon {
  transform: scale(1.1);
}

.platform-icon i {
  font-size: 3rem;
  color: var(--menu-brown-dark);
}

.platform-name {
  font-size: 1.5rem;
  color: var(--tibia-gold);
  font-weight: bold;
  margin-bottom: 0.5rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.platform-version {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: var(--tibia-bg-dark);
  border: 1px solid var(--tibia-border);
  border-radius: 15px;
  font-size: 0.85rem;
  color: var(--menu-orange);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.download-options {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  flex: 1;
}

.download-content .btn-download {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 0.95rem;
  font-weight: bold;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.download-content .btn-download::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.download-content .btn-download:hover::before {
  left: 100%;
}

.btn-download-primary {
  background: linear-gradient(135deg, var(--menu-gold), var(--menu-orange));
  color: var(--menu-brown-dark);
  border: 2px solid var(--menu-bronze);
  box-shadow: 0 4px 15px rgba(255, 140, 0, 0.3);
}

.btn-download-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
  color: var(--menu-brown-dark);
}

.btn-download-secondary {
  background: var(--tibia-bg-dark);
  color: var(--tibia-gold);
  border: 2px solid var(--tibia-border);
}

.btn-download-secondary:hover {
  border-color: var(--tibia-gold);
  background: var(--tibia-bg-light);
  color: var(--tibia-gold);
  transform: translateY(-2px);
}

.download-size {
  font-size: 0.75rem;
  color: var(--tibia-text);
  opacity: 0.7;
  font-weight: normal;
  margin-left: 0.25rem;
}

.tutorial-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  color: var(--tibia-text);
  text-decoration: none;
  border: 1px solid var(--tibia-border);
  border-radius: 20px;
  transition: all 0.3s ease;
  margin-top: auto;
}
.tutorial-link + .tutorial-link {
  margin-top: 1rem;
}

.tutorial-link:hover {
  color: var(--menu-orange);
  border-color: var(--menu-orange);
  background: rgba(255, 140, 0, 0.1);
}

.tutorial-link i {
  font-size: 1rem;
}

.requirements-section {
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 2px solid var(--tibia-border);
}

.requirements-title {
  font-size: 1.75rem;
  color: var(--tibia-gold);
  font-weight: bold;
  text-shadow: 2px 2px 1px #ec4c02;
  margin-bottom: 2rem;
  text-align: center;
  font-family: "Vinque Regular", serif;
}

.requirements-title i {
  color: var(--menu-orange);
  margin-right: 0.5rem;
}

.requirements-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.requirement-card {
  background: var(--tibia-bg-medium);
  border: 2px solid var(--tibia-border);
  border-radius: var(--border-radius-medium);
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
}

.requirement-card:hover {
  border-color: var(--tibia-gold);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px var(--shadow-gold);
}

.requirement-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.requirement-card.android .requirement-icon {
  background: linear-gradient(135deg, #3ddc84, #00c853);
}

.requirement-card.pc .requirement-icon {
  background: linear-gradient(135deg, #00bfff, #1e90ff);
}

.requirement-card.iphone .requirement-icon {
  background: linear-gradient(135deg, #a8a8a8, #e0e0e0);
}

.requirement-icon i {
  font-size: 1.5rem;
  color: var(--menu-brown-dark);
}

.requirement-title {
  color: var(--tibia-gold);
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 0.75rem;
}

.requirement-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.requirement-list li {
  color: var(--tibia-text);
  font-size: 0.9rem;
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--tibia-border);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.requirement-list li:last-child {
  border-bottom: none;
}

.requirement-list li i {
  color: var(--menu-orange);
  font-size: 0.8rem;
}

.help-section {
  margin-top: 3rem;
  background: linear-gradient(135deg, rgba(255, 140, 0, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
  border: 2px solid var(--tibia-border);
  border-radius: var(--border-radius-medium);
  padding: 2rem;
  text-align: center;
}

.help-section h3 {
  color: var(--tibia-gold);
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.help-section p {
  color: var(--tibia-text);
  font-size: 1rem;
  margin-bottom: 1rem;
}

.help-section a {
  color: var(--menu-orange);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.help-section a:hover {
  color: var(--tibia-gold);
  text-decoration: underline;
}
.community-content {
  padding: 4rem 0;
  background: var(--tibia-bg-dark);
  min-height: 60vh;
}

.intro-sections {
  text-align: center;
  margin-bottom: 4rem;
}

.community-content .intro-text {
  font-size: 1.25rem;
  color: var(--tibia-text);
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto;
}

.community-content .intro-text strong {
  color: var(--tibia-gold);
}

.community-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  max-width: 1000px;
  margin: 0 auto;
}

.community-card {
  background: var(--tibia-bg-medium);
  border: 3px solid var(--tibia-border);
  border-radius: var(--border-radius-large);
  padding: 3rem 2.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.community-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
}

.community-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.community-card:hover::after {
  opacity: 0.03;
}

.community-card.discord {
  border-color: #5865f2;
}

.community-card.discord::before {
  background: linear-gradient(90deg, #5865f2, #7289da, #5865f2);
}

.community-card.discord::after {
  background: linear-gradient(135deg, #5865f2, #7289da);
}

.community-card.discord:hover {
  border-color: #7289da;
  box-shadow: 0 20px 60px rgba(88, 101, 242, 0.3), 0 0 40px rgba(88, 101, 242, 0.2);
  transform: translateY(-10px);
}

.community-card.discord .card-icon {
  background: linear-gradient(135deg, #5865f2, #7289da);
  box-shadow: 0 10px 30px rgba(88, 101, 242, 0.4);
}

.community-card.discord .btn-community {
  background: linear-gradient(135deg, #5865f2, #7289da);
  box-shadow: 0 5px 20px rgba(88, 101, 242, 0.4);
}

.community-card.discord .btn-community:hover {
  background: linear-gradient(135deg, #7289da, #5865f2);
  box-shadow: 0 10px 30px rgba(88, 101, 242, 0.5);
}

.community-card.whatsapp {
  border-color: #25d366;
}

.community-card.whatsapp::before {
  background: linear-gradient(90deg, #25d366, #128c7e, #25d366);
}

.community-card.whatsapp::after {
  background: linear-gradient(135deg, #25d366, #128c7e);
}

.community-card.whatsapp:hover {
  border-color: #25d366;
  box-shadow: 0 20px 60px rgba(37, 211, 102, 0.3), 0 0 40px rgba(37, 211, 102, 0.2);
  transform: translateY(-10px);
}

.community-card.whatsapp .card-icon {
  background: linear-gradient(135deg, #25d366, #128c7e);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
}

.community-card.whatsapp .btn-community {
  background: linear-gradient(135deg, #25d366, #128c7e);
  box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
}

.community-card.whatsapp .btn-community:hover {
  background: linear-gradient(135deg, #128c7e, #25d366);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);
}

.card-icon {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  transition: transform 0.3s ease;
}

.community-card:hover .card-icon {
  transform: scale(1.1) rotate(5deg);
}

.card-icon i {
  font-size: 4rem;
  color: white;
}

.card-badge {
  display: inline-block;
  padding: 0.35rem 1rem;
  background: var(--tibia-bg-dark);
  border: 1px solid var(--tibia-border);
  border-radius: 20px;
  font-size: 0.8rem;
  color: var(--tibia-text);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
  opacity: 0.9;
}

.card-title {
  font-size: 1.75rem;
  color: var(--tibia-gold);
  font-weight: bold;
  margin-bottom: 1rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.card-text {
  color: var(--tibia-text);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  flex: 1;
}

.btn-community {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: white;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-community::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

.btn-community:hover::before {
  left: 100%;
}

.btn-community:hover {
  transform: translateY(-3px);
  color: white;
}

.btn-community i {
  font-size: 1.3rem;
}

.features-sections {
  margin-top: 5rem;
  padding-top: 4rem;
  border-top: 2px solid var(--tibia-border);
}

.features-title {
  font-size: 1.75rem;
  color: var(--tibia-gold);
  font-weight: bold;
  text-shadow: 2px 2px 1px #ec4c02;
  margin-bottom: 2.5rem;
  text-align: center;
  font-family: "Vinque Regular", serif;
}

.features-title i {
  color: var(--menu-orange);
  margin-right: 0.5rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.feature-item {
  background: var(--tibia-bg-medium);
  border: 2px solid var(--tibia-border);
  border-radius: var(--border-radius-medium);
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
}

.feature-item:hover {
  border-color: var(--tibia-gold);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px var(--shadow-gold);
}

.features-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--menu-orange), var(--menu-gold));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  box-shadow: 0 5px 15px rgba(255, 140, 0, 0.3);
}

.features-icon i {
  font-size: 1.5rem;
  color: var(--menu-brown-dark);
}

.features-text {
  color: var(--tibia-text);
  font-size: 0.95rem;
  font-weight: 600;
  margin: 0;
}

.rules-content {
  padding: 4rem 0;
  background: var(--tibia-bg-dark);
}

.disclaimer-banner {
  background: linear-gradient(135deg, rgba(255, 140, 0, 0.15) 0%, rgba(212, 175, 55, 0.1) 100%);
  border: 2px solid var(--menu-orange);
  border-radius: var(--border-radius-medium);
  padding: 1.5rem 2rem;
  margin-bottom: 3rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  box-shadow: 0 5px 20px rgba(255, 140, 0, 0.2);
}

.disclaimer-icon {
  font-size: 3rem;
  color: var(--menu-orange);
  flex-shrink: 0;
  filter: drop-shadow(0 0 10px rgba(255, 140, 0, 0.5));
}

.disclaimer-text {
  color: var(--tibia-text);
  font-size: 1.1rem;
  line-height: 1.6;
  margin: 0;
}

.disclaimer-text strong {
  color: var(--tibia-gold);
}

.rules-sections {
  margin-bottom: 3rem;
}

.rules-card {
  background: var(--tibia-bg-medium);
  border: 2px solid var(--tibia-border);
  border-radius: var(--border-radius-medium);
  overflow: hidden;
  box-shadow: 0 5px 25px var(--shadow-medium);
  transition: all 0.3s ease;
}

.rules-card:hover {
  border-color: var(--tibia-gold);
  box-shadow: 0 10px 40px var(--shadow-gold);
}

.rules-header {
  background: linear-gradient(135deg, var(--tibia-bg-light) 0%, var(--tibia-bg-medium) 100%);
  padding: 1.5rem 2rem;
  border-bottom: 2px solid var(--tibia-border);
  display: flex;
  align-items: center;
  gap: 1rem;
  position: relative;
}

.rules-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
}

.rules-card.game .rules-header::before {
  background: linear-gradient(90deg, #28a745, #20c997);
}

.rules-card.guild .rules-header::before {
  background: linear-gradient(90deg, #dc3545, #fd7e14);
}

.rules-card.commerce .rules-header::before {
  background: linear-gradient(90deg, #007bff, #6610f2);
}

.rules-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.rules-card.game .rules-icon {
  background: linear-gradient(135deg, #28a745, #20c997);
  box-shadow: 0 5px 15px rgba(40, 167, 69, 0.4);
}

.rules-card.guild .rules-icon {
  background: linear-gradient(135deg, #dc3545, #fd7e14);
  box-shadow: 0 5px 15px rgba(220, 53, 69, 0.4);
}

.rules-card.commerce .rules-icon {
  background: linear-gradient(135deg, #007bff, #6610f2);
  box-shadow: 0 5px 15px rgba(0, 123, 255, 0.4);
}

.rules-icon i {
  font-size: 1.75rem;
  color: white;
}

.rules-header-content {
  flex: 1;
}

.rules-title {
  color: var(--tibia-gold);
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0 0 0.25rem 0;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.rules-count {
  color: var(--tibia-text);
  font-size: 0.9rem;
  opacity: 0.8;
}

.rules-body {
  padding: 1.5rem 2rem;
}

.rules-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.rule-item {
  display: flex;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--tibia-bg-dark);
  border: 1px solid var(--tibia-border);
  border-radius: var(--border-radius-small);
  margin-bottom: 1rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.rule-item:last-child {
  margin-bottom: 0;
}

.rule-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  transition: all 0.3s ease;
}

.rules-card.game .rule-item::before {
  background: linear-gradient(180deg, #28a745, #20c997);
}

.rules-card.guild .rule-item::before {
  background: linear-gradient(180deg, #dc3545, #fd7e14);
}

.rules-card.commerce .rule-item::before {
  background: linear-gradient(180deg, #007bff, #6610f2);
}

.rule-item:hover {
  border-color: var(--tibia-gold);
  transform: translateX(5px);
  box-shadow: 0 5px 20px var(--shadow-light);
}

.rule-item:hover::before {
  width: 6px;
}

.rule-number {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1rem;
  flex-shrink: 0;
  color: white;
}

.rules-card.game .rule-number {
  background: linear-gradient(135deg, #28a745, #20c997);
}

.rules-card.guild .rule-number {
  background: linear-gradient(135deg, #dc3545, #fd7e14);
}

.rules-card.commerce .rule-number {
  background: linear-gradient(135deg, #007bff, #6610f2);
}

.rules-text {
  color: var(--tibia-text);
  font-size: 1rem;
  line-height: 1.7;
  margin: 0;
  flex: 1;
  align-self: center;
}

.rules-text strong {
  color: var(--tibia-gold);
}

.rules-text .highlight-warning {
  color: #ffc107;
}

.rules-text .highlight-danger {
  color: #dc3545;
}

.rules-text .highlight-success {
  color: #28a745;
}

.agreement-section {
  background: linear-gradient(135deg, var(--tibia-bg-medium) 0%, var(--tibia-bg-light) 100%);
  border: 3px solid var(--tibia-gold);
  border-radius: var(--border-radius-medium);
  padding: 2.5rem;
  text-align: center;
  margin-top: 3rem;
  box-shadow: 0 10px 40px var(--shadow-heavy), 0 0 30px var(--shadow-gold);
  position: relative;
  overflow: hidden;
}

.agreement-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--menu-gold), var(--menu-orange), var(--menu-gold));
}

.agreement-icon {
  font-size: 4rem;
  color: var(--tibia-gold);
  margin-bottom: 1rem;
  filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.5));
}

.agreement-title {
  color: var(--tibia-gold);
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.agreement-text {
  color: var(--tibia-text);
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto;
}

.agreement-text strong {
  color: var(--menu-orange);
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--tibia-gold);
  border-radius: 50%;
  opacity: 0.3;
  animation: floatParticle 20s infinite linear;
}

.particle:nth-child(1) {
  left: 10%;
  animation-delay: 0s;
  animation-duration: 25s;
}
.particle:nth-child(2) {
  left: 20%;
  animation-delay: 2s;
  animation-duration: 20s;
}
.particle:nth-child(3) {
  left: 30%;
  animation-delay: 4s;
  animation-duration: 28s;
}
.particle:nth-child(4) {
  left: 40%;
  animation-delay: 1s;
  animation-duration: 22s;
}
.particle:nth-child(5) {
  left: 50%;
  animation-delay: 3s;
  animation-duration: 24s;
}
.particle:nth-child(6) {
  left: 60%;
  animation-delay: 5s;
  animation-duration: 26s;
}
.particle:nth-child(7) {
  left: 70%;
  animation-delay: 2s;
  animation-duration: 21s;
}
.particle:nth-child(8) {
  left: 80%;
  animation-delay: 4s;
  animation-duration: 23s;
}
.particle:nth-child(9) {
  left: 90%;
  animation-delay: 1s;
  animation-duration: 27s;
}

@keyframes floatParticle {
  0% {
    transform: translateY(100vh) scale(0);
    opacity: 0;
  }
  10% {
    opacity: 0.4;
  }
  90% {
    opacity: 0.4;
  }
  100% {
    transform: translateY(-100vh) scale(1);
    opacity: 0;
  }
}

.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.lightbox.active {
  display: flex;
}

.lightbox-content {
  max-width: 90%;
  max-height: 90%;
  position: relative;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 85vh;
  border-radius: var(--border-radius-medium);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: none;
  border: none;
  color: var(--tibia-gold);
  font-size: 2rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.lightbox-close:hover {
  color: var(--menu-orange);
  transform: rotate(90deg);
}

@media (max-width: 768px) {
  .hero-section {
    min-height: 100vh;
    padding: 2rem 1rem;
  }

  .hero-logo {
    max-width: 250px;
  }

  .hero-tagline {
    font-size: 1.3rem;
  }

  .hero-stats {
    gap: 1.5rem;
  }

  .hero-stat-label span {
    display: none;
  }

  .hero-stat-value {
    font-size: 1.8rem;
  }

  .btn-download {
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
  }

  .welcome-card {
    padding: 2rem 1.5rem;
  }

  .welcome-title {
    font-size: 1.8rem;
  }

  .welcome-text {
    font-size: 1rem;
  }

  .feature-card {
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 576px) {
  .hero-stats {
    flex-direction: column;
    gap: 1rem;
  }

  .hero-tagline {
    font-size: 1.1rem;
    letter-spacing: 1px;
  }
}
@media (max-width: 992px) {
  .timeline::before {
    left: 30px;
  }

  .timeline-item {
    width: 100%;
    padding-left: 70px !important;
    padding-right: 0 !important;
    text-align: left !important;
  }

  .timeline-item:nth-child(even) {
    left: 0;
  }

  .timeline-item::before {
    left: 20px !important;
    right: auto !important;
  }

  .timeline-item::after {
    left: 40px !important;
    right: auto !important;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .page-title {
    font-size: 2rem;
  }

  .intro-section {
    padding: 1.5rem;
  }

  .timeline-title {
    font-size: 1.5rem;
  }

  .timeline-item {
    padding-left: 50px !important;
  }

  .timeline::before {
    left: 15px;
  }

  .timeline-item::before {
    left: 6px !important;
    width: 16px;
    height: 16px;
  }

  .timeline-item::after {
    left: 22px !important;
    width: 20px;
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .team-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1200px) {
  .partners-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  .tiers-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .tier-card.gold {
    transform: none;
    order: -1;
  }

  .tier-card.gold:hover {
    transform: translateY(-10px);
  }

  .rules-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .page-title {
    font-size: 2rem;
  }

  .hero-banner {
    padding: 2rem;
  }

  .hero-title {
    font-size: 1.75rem;
  }

  .hero-text {
    font-size: 1rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .tier-card {
    padding: 1.5rem;
  }

  .cta-section {
    padding: 2rem;
  }
  .index .cta-section {
    border-radius: var(--border-radius-medium);
  }

  .cta-title {
    font-size: 1.5rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .kit-section {
    flex-direction: column;
    text-align: center;
  }

  .kit-info {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 576px) {
  .partners-grid {
    grid-template-columns: 1fr;
  }

  .partner-avatar {
    max-width: 80%;
  }
}

@media (max-width: 992px) {
  .platforms-grid {
    grid-template-columns: 1fr;
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
  }

  .requirements-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 768px) {
  .page-title {
    font-size: 2rem;
  }

  .download-content .intro-text {
    font-size: 1.05rem;
  }

  .platform-card {
    padding: 1.5rem;
  }

  .platform-icon {
    width: 80px;
    height: 80px;
  }

  .platform-icon i {
    font-size: 2.5rem;
  }

  .platform-name {
    font-size: 1.25rem;
  }

  .requirements-title {
    font-size: 1.5rem;
  }
}

@media (max-width: 992px) {
  .community-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 500px;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .page-title {
    font-size: 2rem;
  }

  .community-content .intro-text {
    font-size: 1.1rem;
  }

  .community-card {
    padding: 2rem 1.5rem;
  }

  .card-icon {
    width: 100px;
    height: 100px;
  }

  .card-icon i {
    font-size: 3rem;
  }

  .card-title {
    font-size: 1.5rem;
  }

  .btn-community {
    padding: 0.875rem 2rem;
    font-size: 1rem;
  }

  .features-title {
    font-size: 1.5rem;
  }
}

@media (max-width: 576px) {
  .features-grid {
    grid-template-columns: 1fr;
  }

  .feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-align: left;
  }

  .features-icon {
    margin: 0;
    flex-shrink: 0;
  }
}

@media (max-width: 768px) {
  .disclaimer-banner {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
  }

  .disclaimer-icon {
    font-size: 2.5rem;
  }

  .rules-header {
    padding: 1.25rem 1.5rem;
  }

  .rules-icon {
    width: 50px;
    height: 50px;
  }

  .rules-icon i {
    font-size: 1.5rem;
  }

  .rules-title {
    font-size: 1.25rem;
  }

  .rules-body {
    padding: 1.25rem 1.5rem;
  }

  .rule-item {
    padding: 1rem;
    flex-direction: column;
    gap: 0.75rem;
  }

  .rule-number {
    width: 32px;
    height: 32px;
    font-size: 0.9rem;
  }

  .rules-text {
    font-size: 0.95rem;
  }

  .agreement-section {
    padding: 1.5rem;
  }

  .agreement-icon {
    font-size: 3rem;
  }

  .agreement-title {
    font-size: 1.25rem;
  }

  .agreement-text {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .rules-header {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .page-title {
    font-size: 1.75rem;
  }

  .intro-box {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
  }

  .intro-box-icon {
    font-size: 2.5rem;
  }

  .requirements-list {
    flex-direction: column;
    gap: 0.75rem;
  }
  .step-item {
    padding: 1.5rem;
  }

  .step-header {
    flex-direction: column;
    text-align: center;
  }

  .step-number {
    width: 45px;
    height: 45px;
    font-size: 1.25rem;
  }

  .step-title {
    font-size: 1.1rem;
  }

  .dns-value {
    font-size: 1.2rem;
    padding: 0.5rem 1rem;
  }

  .url-box {
    flex-direction: column;
    text-align: center;
  }

  .url-value {
    font-size: 0.85rem;
  }
}

@media (max-width: 992px) {
  .index .hero-tagline {
    font-size: 2rem;
  }

  .index .welcome-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .index .welcome-image {
    order: -1;
  }

  .index .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .index .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-links ul,
  .social-icons {
    justify-content: center;
  }

  .social-icons {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .index .video-background {
    height: calc(100dvh - 60px);
    top: 60px;
  }
  .index .video-background iframe {
    height: 120vh;
    min-width: 215.78vh;
  }
  .index .hero-content {
    backdrop-filter: none;
    border: none;
    box-shadow: none;
    background: none;
    position: absolute;
    bottom: 0;
  }
  .index .hero-section {
    padding: 100px 15px 40px;
    min-height: calc(100dvh - 5px);
  }
  .index .update-badge {
    display: none;
  }

  .index .hero-logo {
    max-width: 220px;
    margin-bottom: 0.5rem;
    opacity: 0.9;
  }

  .index .hero-tagline {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }

  .index .hero-stats {
    flex-direction: row;
    gap: 1rem;
    margin-bottom: 1rem;
    opacity: 0.9;
  }

  .index .hero-stat {
    min-width: auto;
    width: 100%;
    max-width: 250px;
  }
  .index .hero-stat-value {
    font-size: 1.5rem;
    line-height: 1.1;
  }

  .index .btn-download-hero {
    padding: 0.875rem 2rem;
    font-size: 1rem;
  }

  .index .scroll-indicator {
    display: none;
  }

  .index .welcome-content h2,
  .index .section-title,
  .index .cta-title {
    font-size: 1.5rem;
  }

  .index .welcome-highlights {
    grid-template-columns: 1fr;
  }

  .index .features-grid {
    grid-template-columns: 1fr;
  }

  .index .gallery-grid {
    grid-template-columns: 1fr;
  }

  .index .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}
