/* SKELTH Website - Faithful to Design */

/* Simple Video Modal */
.simple-video-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.simple-video-modal.show {
  opacity: 1;
}

.simple-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  cursor: pointer;
}

.simple-modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 95%;
  max-width: 1600px;
  aspect-ratio: 16/9;
  background: #000;
  border-radius: 12px;
  overflow: hidden;
}

.simple-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(0, 0, 0, 0.8);
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10001;
  font-weight: normal;
  line-height: 1;
}

.simple-modal-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}

.simple-video-container {
  width: 100%;
  height: 100%;
}

.simple-video-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

@media (max-width: 768px) {
  .simple-modal-content {
    width: 95%;
  }
  
  .simple-modal-close {
    top: 15px;
    right: 15px;
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
  }
}

/* ========================================
   1. RESET & BASE STYLES
   ======================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: clamp(14px, 2vw, 18px);
  scroll-behavior: smooth;
}

body {
  font-family: 'Jost', 'Arial', sans-serif;
  background: #000;
  overflow-x: hidden;
}

/* Smooth transitions for all responsive properties */
*:not(.faq-item):not(.faq-answer):not(.faq-arrow), 
*:not(.faq-item):not(.faq-answer):not(.faq-arrow)::before, 
*:not(.faq-item):not(.faq-answer):not(.faq-arrow)::after {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ========================================
   2. LAYOUT & CONTAINERS
   ======================================== */
:root {
  --container-max-width: 1280px;
  --container-padding: 40px;
  --section-spacing: 80px;
  --grid-gap: 20px;
  
  /* Responsive Variables */
  --mobile-padding: 10px;
  --tablet-padding: 40px;
  --desktop-padding: 60px;
  --large-padding: 80px;
  
  /* Big Screen Variables */
  --big-container-max: 1440px;
  --ultra-container-max: 1680px;
}

/* Responsive Variable Updates */
@media (max-width: 768px) {
  :root {
    --container-padding: var(--mobile-padding);
    --section-spacing: 60px;
    --grid-gap: 16px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  :root {
    --container-padding: var(--tablet-padding);
    --section-spacing: 70px;
    --grid-gap: 18px;
  }
}

@media (min-width: 1441px) {
  :root {
    --container-max-width: var(--big-container-max);
    --container-padding: var(--large-padding);
    --section-spacing: 100px;
    --grid-gap: 24px;
  }
}

@media (min-width: 1681px) {
  :root {
    --container-max-width: var(--ultra-container-max);
    --container-padding: 100px;
    --section-spacing: 120px;
    --grid-gap: 28px;
  }
}

.desktop {
  width: 100%;
  min-height: 100vh;
}

/* Modern Container System */
.container {
  width: 100%;
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.container-fluid {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, var(--container-padding));
}

/* Section Spacing System */
.section {
  padding: var(--section-spacing) 0;
}

.section--hero {
  padding: 0;
  min-height: 100vh;
}

.section--compact {
  padding: calc(var(--section-spacing) * 0.75) 0;
}

/* Modern Grid System */
.grid {
  display: grid;
  gap: var(--grid-gap);
}

.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--auto { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }

/* Responsive Grid Modifiers */
@media (max-width: 768px) {
  .grid--2,
  .grid--3,
  .grid--4 {
    grid-template-columns: 1fr;
  }
  
  .grid--auto {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .grid--3,
  .grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1025px) and (max-width: 1280px) {
  .grid--4 {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ========================================
   3. UTILITY CLASSES
   ======================================== */
/* Spacing utilities */
.spacing-xs { margin: clamp(4px, 1vw, 8px); }
.spacing-sm { margin: clamp(8px, 2vw, 16px); }
.spacing-md { margin: clamp(16px, 3vw, 32px); }
.spacing-lg { margin: clamp(24px, 4vw, 48px); }
.spacing-xl { margin: clamp(32px, 6vw, 80px); }

/* Buttons */
.btn-primary {
  background: linear-gradient(135deg, #FFB000, #FF7A00);
  color: white;
  padding: clamp(10px, 2vw, 12px) clamp(16px, 3vw, 24px);
  border-radius: clamp(6px, 1vw, 8px);
  border: none;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 clamp(4px, 1vw, 8px) clamp(15px, 3vw, 25px) rgba(255, 176, 0, 0.4);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  padding: clamp(8px, 1.5vw, 10px) clamp(12px, 2vw, 16px);
  border-radius: clamp(4px, 0.8vw, 6px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* ========================================
   4. HEADER & NAVIGATION
   ======================================== */
.header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  padding: clamp(16px, 3vw, 24px) clamp(20px, 4vw, 80px);
  transition: padding 0.4s ease;
}

.header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: clamp(20px, 10vh, 140px);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0) 100%);
  z-index: -1;
  pointer-events: none;
}

.navbar {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  gap: clamp(30px, 5vw, 60px);
}

.nav-logo img {
  height: clamp(28px, 4vw, 40px);
  width: auto;
  transition: height 0.3s ease;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: clamp(20px, 4vw, 40px);
  align-items: center;
}

.nav-menu li a {
  color: white;
  text-decoration: none;
  font-weight: 700;
  font-size: clamp(12px, 1.5vw, 16px);
  letter-spacing: clamp(0.5px, 0.1vw, 1px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-menu li a:hover {
  color: #FFB000;
}

.nav-actions {
  display: flex;
  gap: clamp(12px, 2vw, 20px);
  align-items: center;
  margin-left: auto;
}

/* Language Selector - Base styles only */
.language-selector {
  color: white;
  font-size: clamp(12px, 1.3vw, 14px);
  font-weight: 700;
}

/* User Profile */
.user-profile {
  display: flex;
  align-items: center;
  gap: clamp(6px, 1vw, 8px);
  cursor: pointer;
}

/* Login Button */
.login-btn {
  background: linear-gradient(135deg, #FFB000, #FF7A00);
  color: white;
  border: none;
  padding: 12px 32px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  white-space: nowrap;
}

.login-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 176, 0, 0.4);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
}

.mobile-menu-toggle img {
  transition: all 0.3s ease;
  filter: brightness(1);
}

.mobile-menu-toggle.active img {
  filter: drop-shadow(0 0 8px rgba(255, 176, 0, 0.5)) drop-shadow(0 0 4px rgba(255, 122, 0, 0.3));
}

/* Server Cards */
.server-cards {
  display: flex;
  gap: clamp(12px, 2vw, 24px);
}

.server-card {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1vw, 12px);
  padding: clamp(6px, 1vw, 10px) clamp(8px, 1.5vw, 16px);
  transition: all 0.3s ease;
}

.server-avatar {
  width: clamp(24px, 3vw, 48px);
  height: clamp(24px, 3vw, 48px);
  transition: all 0.3s ease;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.server-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.server-info h4 {
  color: white;
  font-size: clamp(12px, 1.5vw, 20px);
  font-weight: 600;
  margin-bottom: 2px;
  transition: font-size 0.3s ease;
}

.server-stats {
  display: flex;
  gap: clamp(4px, 1vw, 8px);
  align-items: center;
  font-size: clamp(10px, 1.2vw, 14px);
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
}

.stat-dot {
  width: 4px;
  height: 4px;
  background: white;
  border-radius: 50%;
}

/* Server status styles */
.server-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
}

.server-status.online {
  color: #4CAF50;
}

.server-status.offline {
  color: #f44336;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
}

.status-dot.online {
  background: #4CAF50;
  box-shadow: 0 0 8px rgba(76, 175, 80, 0.6);
}

.status-dot.offline {
  background: #f44336;
  box-shadow: 0 0 8px rgba(244, 67, 54, 0.6);
}

/* Mobile specific elements - hide on desktop */
.mobile-servers,
.mobile-social {
  display: none !important;
}

/* ========================================
   5. HERO SECTION
   ======================================== */
.hero-features-bg-wrapper {
  background-image: url('img/bg-hero.png');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  width: 100%;
  min-height: 100vh;
  height: auto;
  position: relative;
}

.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 800px;
  overflow: hidden;
}

.hero-container {
  max-width: clamp(320px, 100vw, 1920px);
  margin: 0 auto;
  width: 100%;
  height: 100%;
  position: relative;
  padding: 0 clamp(16px, 4vw, 80px);
}

.hero-character {
  position: absolute;
  left: clamp(50%, 55%, 55%);
  top: 0;
  width: clamp(600px, 100vw, 1767px);
  transform: translateX(-50%);
  height: 100%;
  background-image: url('img/character-hero.png');
  background-size: contain;
  background-position: center top;
  background-repeat: no-repeat;
  z-index: 1;
  pointer-events: none;
}

.hero-character-placeholder {
  display: none;
}

/* Hero Content */
.hero-content {
  position: absolute;
  left: clamp(20px, 4vw, 80px);
  bottom: clamp(60px, 8vw, 120px);
  z-index: 5;
  max-width: clamp(300px, 50vw, 600px);
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
}

.hero-content .hero-text-content .hero-main-block .hero-side-line {
  width: clamp(5px, 1vw, 15px);
  height: clamp(180px, 25vh, 350px);
  background: linear-gradient(135deg, #FFB000, #FF7A00) !important;
  flex-shrink: 0;
  border-radius: 3px;
  transition: all 0.4s ease;
  display: block !important;
}

.hero-text-content {
  flex: 1;
  max-width:450px;
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 3vw, 32px);
}

.hero-content .hero-text-content .hero-main-block {
  position: relative;
  display: flex !important;
  flex-direction: row !important;
  gap: clamp(16px, 2.5vw, 24px);
  align-items: flex-start;
  width: 100%;
}

.hero-main-text {
  flex: 1;
}

.hero-title {
  font-size: clamp(40px, 8vw, 82px);
  font-weight: 700;
  color: white;
  line-height: clamp(0.85, 1.1, 1.2);
  margin-bottom: clamp(8px, 2vw, 24px);
  text-shadow: clamp(1px, 0.3vw, 3px) clamp(1px, 0.3vw, 3px) clamp(2px, 0.5vw, 8px) rgba(0, 0, 0, 0.6);
  letter-spacing: clamp(-1px, -0.1vw, 0px);
  transition: all 0.4s ease;
  margin-top: 0;
}

.hero-subtitle {
  font-size: clamp(14px, 2.5vw, 28px);
  color: white;
  margin-bottom: clamp(16px, 3vw, 24px);
  font-weight: 500;
  opacity: 0.95;
  line-height: clamp(1.2, 1.4, 1.6);
  transition: all 0.4s ease;
  max-width:500px;
}

/* Countdown Timer */
.countdown-timer {
  display: flex;
  gap: clamp(4px, 1vw, 12px);
  align-items: center;
  margin-bottom: 0;
  transition: all 0.4s ease;
}

.timer-segment {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.timer-number {
  display: inline-block;
  font-size: clamp(24px, 6vw, 80px);
  font-weight: 700;
  color: white;
  line-height: 0.9;
  text-shadow: clamp(1px, 0.3vw, 2px) clamp(1px, 0.3vw, 2px) clamp(2px, 0.5vw, 6px) rgba(0, 0, 0, 0.5);
  transition: all 0.4s ease;
}

.timer-label {
  display: inline-block;
  font-size: clamp(12px, 1.5vw, 32px);
  color: white;
  opacity: 0.85;
  font-weight: 400;
  letter-spacing: clamp(0.3px, 0.1vw, 0.8px);
  transition: all 0.4s ease;
}

.timer-separator {
  font-size: clamp(18px, 4vw, 56px);
  color: white;
  font-weight: 500;
  margin: 0;
  align-self: flex-start;
  margin-top: clamp(2px, 1vw, 8px);
  transition: all 0.4s ease;
}

/* Download Button */
.download-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: clamp(8px, 1.5vw, 16px);
  background: linear-gradient(135deg, #FFB000, #FF7A00);
  color: white;
  padding: 0 clamp(16px, 3vw, 40px);
  border-radius: clamp(6px, 1vw, 10px);
  font-weight: 700;
  font-size: clamp(12px, 1.8vw, 24px);
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  cursor: pointer;
  box-shadow: 0 clamp(2px, 0.5vw, 6px) clamp(8px, 2vw, 20px) rgba(255, 176, 0, 0.3);
  height: 74px;
  margin-bottom: 42px;
  box-sizing: border-box;
}

.download-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 clamp(4px, 1vw, 8px) clamp(15px, 3vw, 25px) rgba(255, 176, 0, 0.4);
}

/* Newsletter */
.newsletter-section {
  margin-top: 30px;
}

.newsletter-text {
  color: white;
  font-size: clamp(14px, 2vw, 20px);
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.4s ease;
  opacity: 0.95;
}

.newsletter-text:hover {
  color: #FFB000;
}

/* Social Links */
.social-links {
  position: absolute;
  right: clamp(20px, 4vw, 80px);
  bottom: clamp(60px, 8vw, 120px);
  display: flex;
  flex-direction: column;
  gap: clamp(8px, 1.5vw, 16px);
  align-items: center;
  z-index: 5;
  transition: all 0.4s ease;
}


.social-links .follow-text {
  color: white;
  font-size: clamp(11px, 1.3vw, 16px);
  font-weight: 700;
  margin-bottom: clamp(4px, 1vw, 12px);
  opacity: 0.9;
  transition: all 0.3s ease;
}

.social-icon {
  width: clamp(32px, 5vw, 48px);
  height: clamp(32px, 5vw, 48px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-icon:hover {
  transform: scale(1.1);
}

/* ========================================
   6. FEATURES SECTION
   ======================================== */
.features-section {
  padding: var(--section-spacing) 0;
  position: relative;
  z-index: 2;
}

.features-container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.features-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: calc(var(--section-spacing) * 0.6);
}

.features-title {
  font-size: clamp(28px, 6vw, 64px);
  font-weight: 700;
  color: white;
  line-height: clamp(0.9, 1, 1.1);
  transition: all 0.4s ease;
  text-shadow: clamp(1px, 0.2vw, 2px) clamp(1px, 0.2vw, 2px) clamp(2px, 0.4vw, 6px) rgba(0, 0, 0, 0.3);
}

.features-nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 24px);
  transition: gap 0.4s ease;
}

.features-pagination {
  color: white;
  font-size: clamp(18px, 3vw, 36px);
  font-weight: 700;
  transition: all 0.4s ease;
  opacity: 0.95;
}

/* Navigation Arrows */
.nav-arrows {
  display: flex;
  gap: 0;
  border-radius: 4px;
}

.arrow-btn {
  background-color: #000;
  background-size: 50% 50%;
  background-position: 50%;
  background-repeat: no-repeat;
  width: clamp(32px, 4vw, 56px);
  height: clamp(32px, 4vw, 56px);
  flex-shrink: 0;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  opacity: 1;
  border-radius: clamp(2px, 0.5vw, 4px);
}

.arrow-btn:hover:not(:disabled) {
  background-color: #ffa801;
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(255, 168, 1, 0.3);
}

.arrow-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  background-color: rgba(0, 0, 0, 0.3);
}

.arrow-btn:first-child {
  background-image: url('img/left-arrow.svg');
  border-top-left-radius: 0.1875rem;
  border-bottom-left-radius: 0.1875rem;
}

.arrow-btn:last-child {
  background-image: url('img/right-arrow.svg');
  border-top-right-radius: 0.1875rem;
  border-bottom-right-radius: 0.1875rem;
}

/* Features Splide */
.features-splide {
  width: 100%;
  overflow: hidden;
  padding-bottom: 20px;
}

.features-splide .splide__list {
  display: flex;
  align-items: stretch;
}

.features-splide .splide__slide {
  width: 100%;
}

/* Responsive behavior for different screen sizes */
@media (min-width: 1024px) {
  .features-splide .splide__slide {
    width: 25%; /* 4 columns */
  }
}

@media (min-width: 1441px) {
  .features-splide .splide__slide {
    width: 20%; /* 5 columns */
  }
}

/* Feature Cards */
a.feature-card,
.feature-card {
  position: relative;
  width: 100%;
  height: 100%;
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  display: block;
  text-decoration: none;
}

a.feature-card:hover,
.feature-card:hover {
  transform: translateY(-4px) scale(1.01);
}

.feature-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  
}

.feature-card:hover img {
  transform: scale(1.01);
}

.feature-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: clamp(16px, 2.5vw, 24px);
  transition: all 0.4s ease;
}

.feature-line {
  width: clamp(40px, 6vw, 80px);
  height: clamp(2px, 0.4vw, 5px);
  background: linear-gradient(135deg, #FFB000, #FF7A00);
  border-radius: 2px;
  margin-bottom: clamp(8px, 1vw, 12px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover .feature-line {
  width: clamp(60px, 8vw, 100px);
  filter: brightness(1.2);
}

.feature-name {
  color: white;
  font-size: clamp(14px, 1.8vw, 22px);
  font-weight: 600;
  margin: 0;
  line-height: clamp(1.1, 1.2, 1.3);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-shadow: clamp(1px, 0.2vw, 2px) clamp(1px, 0.2vw, 2px) clamp(2px, 0.4vw, 4px) rgba(0, 0, 0, 0.5);
}

.feature-card:hover .feature-name {
  transform: translateY(clamp(-2px, -0.5vw, -4px));
  color: #FFB000;
}

/* Feature card backgrounds */
.feature-card:nth-child(1) .feature-image,
.feature-card:nth-child(2) .feature-image,
.feature-card:nth-child(3) .feature-image,
.feature-card:nth-child(4) .feature-image,
.feature-card:nth-child(5) .feature-image,
.feature-card:nth-child(6) .feature-image,
.feature-card:nth-child(7) .feature-image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.feature-card:nth-child(1) .feature-image { background-image: url('img/main-features/dual-class.png'); }
.feature-card:nth-child(2) .feature-image { background-image: url('img/main-features/class-party-system.png'); }
.feature-card:nth-child(3) .feature-image { background-image: url('img/main-features/auto-hunt.png'); }
.feature-card:nth-child(4) .feature-image { background-image: url('img/main-features/world-trade.png'); }
.feature-card:nth-child(5) .feature-image { background-image: url('img/main-features/guaranteed-system.png'); }
.feature-card:nth-child(6) .feature-image { background-image: url('img/main-features/solo-bosses.png'); }
.feature-card:nth-child(7) .feature-image { background-image: url('img/main-features/prime.png'); }

/* ========================================
   7. CALENDAR SECTION
   ======================================== */
.calendar-section {
  background: linear-gradient(180deg, rgba(226, 203, 255, 1) 0%, rgba(151, 71, 255, 1) 100%);
  background-image: url('img/bg-calendar.jpg');
  background-size: cover;
  background-position: center top;
  background-blend-mode: overlay;
  padding: var(--section-spacing) 0;
  position: relative;
}

.calendar-container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  width: 100%;
  box-sizing: border-box;
}

.calendar-header {
  margin-bottom: clamp(24px, 4vw, 40px);
}

.calendar-title-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  }

.calendar-title-left {
  flex: 1;
}

.calendar-eyebrow {
  font-size: clamp(14px, 1.8vw, 18px);
  font-weight: 600;
  color: #000;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  opacity: 0.7;
  display: block;
  margin-bottom: clamp(8px, 1vw, 12px);
}

.lineage-title {
  font-size: clamp(28px, 6vw, 64px);
  font-weight: 700;
  color: #000;
  margin: 0;
  line-height: clamp(0.9, 1, 1.1);
  text-shadow: clamp(1px, 0.2vw, 2px) clamp(1px, 0.2vw, 2px) clamp(2px, 0.4vw, 6px) rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  gap: 8px;
}

.lineage-title-arrow {
  height: 20px;
  margin-left: 8px;
  margin-top: 0;
  vertical-align: middle;
  flex-shrink: 0;
}

.calendar-title-right {
  flex: 1;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}

.calendar-description {
  color: #000;
  font-size: clamp(16px, 2.2vw, 22px);
  line-height: clamp(1.3, 1.4, 1.5);
  opacity: 0.9;
  text-align: right;
  margin: 0;
}

/* Calendar Layout */
.calendar-content {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto auto;
  max-width: 100%;
  align-items: start;
}

/* Match calendar-grid width for consistent layout */
.calendar-widget,
.event-details-wrapper {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
}

.calendar-widget {
  width: 100%;
  min-width: 0; /* Allow shrinking */
  position: relative;
}

.calendar-nav {
  display: flex;
  align-items: center;
  margin-bottom: clamp(24px, 4vw, 40px);
}

/* Hide mobile navigation on desktop */
.mobile-calendar-navigation {
  display: none;
}

.calendar-arrow-btn {
  background: none;
  border: none;
  border-radius: 0;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: none;
  margin-top: 0;
}

.calendar-arrow-btn:hover {
  background: none;
  transform: none;
}

.calendar-wrapper {
  position: relative;
  flex: 1;
}

.calendar-month-header {
  text-align: center;
  margin-bottom: clamp(16px, 2vw, 24px);
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: clamp(6px, 1vw, 8px);
  width: 100%;
}

.calendar-day {
  width: 100%;
  min-height: 120px;
  height: auto;
  background: rgba(255, 255, 255, 0.8);
  border-radius: clamp(12px, 2vw, 20px);
  padding: clamp(6px, 2.5vw, 12px);
  padding-bottom: 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
  box-sizing: border-box;
}

.calendar-day:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(clamp(-2px, -0.5vw, -4px));
  box-shadow: 0 clamp(4px, 1vw, 8px) clamp(15px, 3vw, 25px) rgba(0, 0, 0, 0.2);
}

.day-full-date {
  font-size: clamp(11px, 1.4vw, 14px);
  font-weight: 600;
  color: #000;
  opacity: 0.8;
  line-height: 1.2;
  margin-bottom: clamp(16px, 2vw, 24px);
}

.calendar-day.today {
  border: 5px solid rgba(255, 176, 0, 0.8);
  transform: scale(1.02);
}

.calendar-day.today .day-number {
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Calendar Events */
.calendar-events {
  position: absolute;
  top: 80px; /* Space for day name and number */
  left: 0;
  right: 0;
  width: 100%;
  height: auto;
  pointer-events: none;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: clamp(6px, 1vw, 8px);
  z-index: 2;
}

.event-bar {
  position: absolute;
  height: 35px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  padding: 0 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  pointer-events: all;
  color: white;
  font-weight: 700;
  font-size: clamp(11px, 1.2vw, 14px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  z-index: 10;
}

.event-bar:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.event-bar-1 {
  background: linear-gradient(90deg, rgba(151, 71, 255, 1) 0%, rgba(38, 0, 226, 1) 100%);
  bottom: 10px;
  left: calc(29 * (100% / 31) + 4px);
  width: calc(1 * (100% / 31) - 8px);
}

.event-bar-2 {
  background: linear-gradient(90deg, rgba(0, 112, 73, 1) 0%, rgba(101, 229, 22, 1) 100%);
  bottom: 55px;
  left: calc(9 * (100% / 31) + 4px);
  width: calc(3 * (100% / 31) - 8px);
}

.event-bar-3 {
  background: linear-gradient(90deg, rgba(151, 71, 255, 1) 0%, rgba(38, 0, 226, 1) 100%);
  bottom: 100px;
  left: calc(11 * (100% / 31) + 4px);
  width: calc(3 * (100% / 31) - 8px);
}

.event-bar-4 {
  background: linear-gradient(90deg, rgba(0, 112, 73, 1) 0%, rgba(101, 229, 22, 1) 100%);
  bottom: 145px;
  left: calc(18 * (100% / 31) + 4px);
  width: calc(1 * (100% / 31) - 8px);
}

.event-bar-5 {
  background: linear-gradient(90deg, rgba(156, 39, 176, 1) 0%, rgba(76, 0, 153, 1) 100%);
  bottom: 190px;
  left: calc(4 * (100% / 7) + 4px);
  width: calc(3 * (100% / 7) - 8px);
}

.event-text {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Event Details Wrapper */
.event-details-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  max-width: 1340px;
  margin: 0 auto;
  position: relative;
  height: 670px;
}

/* Event character - fixed dimensions for correct aspect ratio */
.event-character {
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

/* Event popup - positioned next to character with slight overlap */
.event-popup {
  position: absolute;
  left: 430px; /* Start slightly overlapping character (447px - ~47px overlap) */
  top: 50%;
  transform: translateY(-50%);
  width: auto;
  max-width: 780px;
  min-width: 400px;
  background: white;
  border-radius: clamp(12px, 2vw, 16px);
  padding: clamp(20px, 3vw, 48px);
  box-shadow: 0 clamp(10px, 2vw, 20px) clamp(30px, 5vw, 60px) rgba(0, 0, 0, 0.3);
  box-sizing: border-box;
  z-index: 1;
}


.character-image {

  object-fit: contain;
  object-position: center;
  border-radius: clamp(12px, 2vw, 16px);
}


/* Adjust for screens that can't fit the full layout */
@media (max-width: 1200px) and (min-width: 768px) {
  .event-character {
    width: 350px;
    height: 525px;
  }
  
  .character-image {
    width: 350px;
    height: 525px;
  }
  
  .event-details-wrapper {
    height: 525px;
  }
  
  .event-popup {
    left: 320px;
    max-width: 500px;
  }
}

.event-date-badge {
  display: inline-block;
  background: linear-gradient(90deg, rgba(0, 112, 73, 1) 0%, rgba(101, 229, 22, 1) 100%);
  color: white;
  padding: clamp(6px, 1vw, 8px) clamp(12px, 2vw, 16px);
  border-radius: clamp(6px, 1vw, 8px);
  font-weight: 700;
  margin-bottom: clamp(12px, 2vw, 16px);
}

.event-title {
  font-size: clamp(24px, 5vw, 38px);
  font-weight: 700;
  color: #000;
  margin-bottom: clamp(12px, 2vw, 16px);
}

.event-description {
  color: #000;
  font-size: clamp(16px, 2vw, 18px);
  line-height: 1.5;
  margin-bottom: clamp(16px, 3vw, 24px);
}

.event-btn {
  background: linear-gradient(135deg, #FFB000, #FF7A00);
  color: white;
  height: 64px;
  font-size: clamp(14px, 2vw, 20px);
  padding: 0 clamp(20px, 3vw, 32px);
  border-radius: clamp(6px, 1vw, 8px);
  border: none;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.event-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 clamp(4px, 1vw, 8px) clamp(15px, 3vw, 25px) rgba(255, 176, 0, 0.4);
}


/* ========================================
   8. OTHER FEATURES SECTION
   ======================================== */
.other-features-section {
  background: linear-gradient(135deg, #470058 0%, #100425 100%);
  padding: var(--section-spacing) 0;
}

.other-features-container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.other-features-title {
  font-size: clamp(28px, 6vw, 48px);
  font-weight: 700;
  color: white;
  margin-bottom: calc(var(--section-spacing) * 0.6);
  text-shadow: clamp(1px, 0.2vw, 2px) clamp(1px, 0.2vw, 2px) clamp(2px, 0.4vw, 6px) rgba(0, 0, 0, 0.3);
  line-height: clamp(0.9, 1, 1.1);
}

.features-grid-2 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--grid-gap);
  align-items: start;
}

.feature-item {
  text-align: center;
  color: white;
  padding: clamp(12px, 3vw, 24px);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.feature-item:hover {
  transform: translateY(clamp(-4px, -1vw, -12px)) scale(1.02);
 }

.feature-icon {
  width: clamp(60px, 10vw, 140px);
  height: clamp(60px, 10vw, 140px);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto clamp(12px, 2.5vw, 28px);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.3));
}

.feature-item:hover .feature-icon {
  transform: scale(1.05) rotateY(10deg);
}

.feature-item:hover .feature-icon img {
  filter: drop-shadow(0 8px 25px rgba(255, 176, 0, 0.4)) brightness(1.1);
}

.feature-item h3 {
  font-size: clamp(12px, 1.8vw, 22px);
  font-weight: 600;
  line-height: clamp(1.2, 1.3, 1.4);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-shadow: clamp(1px, 0.2vw, 2px) clamp(1px, 0.2vw, 2px) clamp(2px, 0.4vw, 4px) rgba(0, 0, 0, 0.3);
}

.feature-item:hover h3 {
  color: #FFB000;
  transform: translateY(clamp(-1px, -0.3vw, -3px));
  text-shadow: clamp(1px, 0.2vw, 2px) clamp(1px, 0.2vw, 2px) clamp(2px, 0.4vw, 4px) rgba(255, 176, 0, 0.3);
}

/* ========================================
   9. FAQ SECTION
   ======================================== */
.faq-section {
  background: #100425;
  padding: var(--section-spacing) 0;
}

.faq-container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.faq-title {
  font-size: clamp(28px, 6vw, 64px);
  font-weight: 700;
  color: white;
  margin-bottom: clamp(24px, 4vw, 60px);
  transition: all 0.4s ease;
  text-shadow: clamp(1px, 0.2vw, 2px) clamp(1px, 0.2vw, 2px) clamp(2px, 0.4vw, 6px) rgba(0, 0, 0, 0.3);
  line-height: clamp(0.9, 1, 1.1);
}

.faq-item {
  border-radius: clamp(8px, 1.5vw, 16px);
  margin-bottom: clamp(12px, 2.5vw, 24px);
  overflow: hidden;
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
}

.faq-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.faq-item.active {
  background: #EADAFF;
}

.faq-question {
  padding: clamp(20px, 4vw, 48px);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: padding 0.4s ease;
}

.faq-question h3 {
  font-size: clamp(18px, 3.5vw, 36px);
  font-weight: 700;
  color: #150F0C;
  transition: all 0.4s ease;
  line-height: clamp(1.1, 1.2, 1.3);
}

.faq-toggle {
  font-size: 24px;
  color: #150F0C;
  background: none;
  border: none;
  cursor: pointer;
  transition: transform 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-arrow {
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  width: 24px;
  height: 24px;
  filter: brightness(0) saturate(100%) invert(9%) sepia(25%) saturate(1654%) hue-rotate(314deg) brightness(96%) contrast(91%);
}

.faq-item.active .faq-arrow {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 clamp(20px, 4vw, 48px);
  transition: max-height 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              padding 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              opacity 0.6s ease;
  opacity: 0;
}

.faq-answer.active {
  max-height: none;
  padding: clamp(16px, 2.5vw, 24px) clamp(20px, 4vw, 48px) clamp(20px, 4vw, 48px);
  opacity: 1;
}

.faq-answer p {
  color: #150F0C;
  font-size: clamp(16px, 2.2vw, 24px);
  line-height: clamp(1.3, 1.5, 1.6);
  transition: all 0.4s ease;
}

/* ========================================
   10. VIDEOS SECTION
   ======================================== */
.videos-section {
  background: #040C25;
  padding: var(--section-spacing) 0;
  position: relative;
}

.videos-container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  position: relative;
  z-index: 2;
}

.videos-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: clamp(24px, 4vw, 40px);
}

.videos-title {
  font-size: clamp(32px, 4vw, 64px);
  font-weight: 700;
  color: white;
  line-height: 1;
  transition: font-size 0.3s ease;
}

/* Desktop Videos Grid */
.videos-desktop {
  display: none;
}

.videos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: var(--grid-gap);
  height: auto;
}

/* Mobile Videos Carousel */
.videos-mobile {
  display: block;
}

.videos-splide {
  width: 100%;
  overflow: hidden;
  padding-bottom: 20px;
}

.video-card {
  aspect-ratio: 16/9;
  width: 100%;
  border-radius: clamp(12px, 2vw, 16px);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 clamp(4px, 1vw, 8px) clamp(15px, 3vw, 30px) rgba(0, 0, 0, 0.4);
}

.video-card:hover {
  transform: translateY(clamp(-4px, -1vw, -8px)) scale(1.03);
  box-shadow: 0 clamp(8px, 2vw, 16px) clamp(25px, 4vw, 50px) rgba(0, 0, 0, 0.6);
}

.video-thumbnail {
  width: 100%;
  height: 100%;
  background: url('img/cover-video.png') center/cover, linear-gradient(45deg, #431E73, #2A1B3D);
  position: relative;
  transition: all 0.4s ease;
}

.video-card:hover .video-thumbnail {
  filter: brightness(1.1) saturate(1.2);
}

.video-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: clamp(16px, 2.5vw, 20px) clamp(50px, 7vw, 70px) clamp(12px, 2vw, 16px) clamp(12px, 2vw, 16px);
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
}

.play-icon {
  position: absolute;
  bottom: clamp(12px, 2vw, 16px);
  right: clamp(12px, 2vw, 16px);
  width: clamp(40px, 5vw, 48px);
  height: clamp(40px, 5vw, 48px);
  background: linear-gradient(135deg, #FFB000, #FF7A00);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: clamp(16px, 2vw, 18px);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 clamp(3px, 0.8vw, 6px) clamp(10px, 2vw, 20px) rgba(255, 176, 0, 0.4);
}

.video-card:hover .play-icon {
  transform: scale(1.10);
  box-shadow: 0 clamp(6px, 1.5vw, 12px) clamp(18px, 3vw, 35px) rgba(255, 176, 0, 0.7);
  filter: brightness(1.3);
  background: linear-gradient(135deg, #FFD000, #FF9A00);
}

.video-title {
  color: white;
  font-size: clamp(14px, 1.2vw, 16px);
  font-weight: 700;
  line-height: 1.2;
  max-width: 100%;
  word-wrap: break-word;
  transition: transform 0.3s ease;
}

.video-card:hover .video-title {
  transform: translateY(-2px);
}

/* ========================================
   11. PHOENIX PACK SECTION
   ======================================== */
.phoenix-section {
  background: radial-gradient(50% 50% at 75% 49%, rgba(255, 153, 0, 1) 38%, rgba(180, 0, 3, 1) 67%, rgba(122, 17, 120, 1) 98%);
  background-image: url('img/bg-phoenix.png');
  background-size: cover;
  background-position: center;
  background-blend-mode: overlay;
  padding: var(--section-spacing) 0;
  position: relative;
  overflow: hidden;
}

.phoenix-container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  position: relative;
  z-index: 2;
}

.phoenix-content {
  max-width: 50%;
  color: white;
  z-index: 2;
  position: relative;
}

.phoenix-title {
  font-size: clamp(48px, 6vw, 76px);
  font-weight: 700;
  line-height: 1;
  margin-bottom: clamp(16px, 2vw, 24px);
  transition: all 0.3s ease;
  text-shadow: clamp(1px, 0.3vw, 2px) clamp(1px, 0.3vw, 2px) clamp(4px, 1vw, 8px) rgba(0, 0, 0, 0.5);
}

.phoenix-description {
  font-size: clamp(18px, 2.5vw, 32px);
  font-weight: 500;
  max-width:550px;
  line-height: 1.2;
  margin-bottom: clamp(24px, 4vw, 40px);
  opacity: 0.9;
  transition: all 0.3s ease;
}

.phoenix-btn {
  background: linear-gradient(135deg, #FFB000, #FF7A00);
  color: white;
  height: 64px;
  padding: 0 clamp(28px, 3vw, 36px);
  border-radius: clamp(6px, 1vw, 8px);
  border: none;
  font-weight: 700;
  font-size: clamp(16px, 1.5vw, 20px);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  width:290px;
}

.phoenix-btn::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;
}

.phoenix-btn:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 clamp(6px, 1.5vw, 12px) clamp(18px, 3vw, 35px) rgba(255, 176, 0, 0.5);
}

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

.phoenix-features {
  margin-top: clamp(40px, 5vw, 60px);
}

.phoenix-features h4 {
  color: #FFDDC9;
  font-size: clamp(14px, 1.2vw, 16px);
  font-weight: 700;
  margin-bottom: clamp(16px, 2vw, 20px);
  transition: all 0.3s ease;
}

.phoenix-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: clamp(16px, 2vw, 20px) clamp(32px, 4vw, 40px);
  color: #FFDDC9;
  font-size: clamp(13px, 1.1vw, 16px);
  line-height: 1.4;
}

.phoenix-items-column {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.phoenix-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.phoenix-item .item-icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
  flex-shrink: 0;
  border-radius: 4px;
}

.phoenix-character {
  position: absolute;
  left: 75%;
  top: 30%;
  transform: translateX(-50%) translateY(-50%);
  width: clamp(1280px, 90vw, 2560px);
  height: 120%;
  background-image: url('img/phoenix-character.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 1;
  transition: all 0.5s ease;
}

/* ========================================
   12. REGISTRATION SECTION
   ======================================== */
.registration-section {
  background: linear-gradient(227deg, rgba(112, 38, 216, 1) 0%, rgba(10, 0, 118, 1) 100%);
  padding: var(--section-spacing) 0;
}

.registration-container {
  max-width: 600px;
  margin: 0 auto;
  padding: 0 var(--container-padding);
  text-align: center;
  color: white;
}

.registration-title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  margin-bottom: clamp(12px, 2vw, 16px);
}

.registration-subtitle {
  font-size: clamp(18px, 2.5vw, 24px);
  margin-bottom: clamp(24px, 4vw, 40px);
  opacity: 0.9;
}

.registration-form {
  display: flex;
  flex-direction: column;
  gap: clamp(12px, 2vw, 16px);
  margin-bottom: clamp(20px, 3vw, 30px);
}

.form-input {
  height: 52px;
  padding: 0 clamp(16px, 2.5vw, 20px);
  border-radius: clamp(6px, 1vw, 8px);
  border: none;
  font-size: clamp(16px, 2vw, 18px);
  background: rgba(255, 255, 255, 0.9);
  color: #000;
  box-sizing: border-box;
}

.form-input::placeholder {
  color: rgba(0, 0, 0, 0.5);
}

.form-checkboxes {
  display: flex;
  flex-direction: column;
  gap: clamp(12px, 2vw, 16px);
  margin: clamp(20px, 3vw, 30px) 0;
  text-align: left;
}

.checkbox-item {
  display: flex;
  align-items: center;
  gap: clamp(8px, 1.5vw, 12px);
  font-size: clamp(14px, 1.8vw, 16px);
}

.checkbox-item input[type="checkbox"] {
  width: clamp(16px, 2.5vw, 20px);
  height: clamp(16px, 2.5vw, 20px);
}

.captcha {
  display: flex;
  align-items: center;
  gap: clamp(8px, 1.5vw, 12px);
  justify-content: center;
  margin: clamp(16px, 2.5vw, 20px) 0;
}

.captcha-image {
  width: clamp(160px, 25vw, 200px);
  height: clamp(50px, 8vw, 60px);
  background: #f0f0f0;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  font-family: monospace;
}

.captcha-refresh {
  background: none;
  border: 2px solid white;
  color: white;
  padding: clamp(6px, 1vw, 8px);
  border-radius: 4px;
  cursor: pointer;
}

.signup-btn {
  background: linear-gradient(135deg, #FFB000, #FF7A00);
  color: white;
  height: 64px;
  padding: 0 clamp(28px, 4vw, 36px);
  border-radius: clamp(6px, 1vw, 8px);
  border: none;
  font-weight: 700;
  font-size: clamp(16px, 2vw, 20px);
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.signup-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 clamp(4px, 1vw, 8px) clamp(15px, 3vw, 25px) rgba(255, 176, 0, 0.4);
}

/* ========================================
   13. FOOTER
   ======================================== */
.footer {
  //background-image: url('img/bg-footer.jpg');
  //background-size: cover;
  //background-position: center center;
  //background-repeat: no-repeat;
  background-color: #040d24;
  position: relative;
  padding: 80px 0;
}

.footer > * {
  position: relative;
  z-index: 2;
}

.footer-container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  color: white;
  gap: clamp(40px, 8vw, 80px);
}

.footer-newsletter {
  flex: 1;
}

.footer-newsletter-title {
  font-size: clamp(24px, 4vw, 40px);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: clamp(20px, 3vw, 34px);
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 3vw, 42px);
  max-width: 400px;
}

.newsletter-input-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.newsletter-feedback {
  margin-top: 4px;
  font-size: 14px;
  font-weight: 500;
  height: 0;
  overflow: hidden;
  transition: height 0.3s ease, opacity 0.3s ease;
  opacity: 0;
}

.newsletter-feedback.show {
  opacity: 1;
  height: 20px;
}

.newsletter-feedback.success {
  color: #4CAF50;
}

.newsletter-feedback.error {
  color: #f44336;
}

.newsletter-feedback.info {
  color: #2196F3;
}

.newsletter-input {
  width: 100%;
  height: 52px;
  padding: 0 clamp(16px, 2.5vw, 20px);
  border-radius: clamp(6px, 1vw, 8px);
  border: none;
  background: #2A3948;
  color: white;
  font-size: clamp(16px, 2vw, 18px);
  box-sizing: border-box;
}

.newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.newsletter-btn {
  background: linear-gradient(135deg, #FFB000, #FF7A00);
  color: white;
  height: 64px;
  padding: 0 clamp(20px, 3vw, 24px);
  border-radius: clamp(6px, 1vw, 8px);
  border: none;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 180px;
  font-size: 20px;
}

.footer-brand {
  text-align: right;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
  align-self: stretch;
}

.footer-logo {
  height: clamp(60px, 10vw, 94px);
  margin-bottom: 20px;
}

.footer-bottom-content {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.footer-copyright {
  color: #ACACAC;
  font-size: clamp(12px, 1.5vw, 14px);
  max-width: 550px;
  line-height: 1.4;
  margin-bottom: 8px;
  text-align: right;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 0;
}

.footer-link {
  color: #ACACAC;
  font-size: clamp(11px, 1.3vw, 13px);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: #FFB000;
  text-decoration: underline;
}

.footer-separator {
  color: #ACACAC;
  font-size: clamp(11px, 1.3vw, 13px);
}

/* ========================================
   14. SCROLLBAR
   ======================================== */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.1);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #FFB000, #FF7A00);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, #FF9000, #FF5A00);
}

/* ========================================
   15. RESPONSIVE DESIGN
   ======================================== */

/* Tablet Optimizations */
@media (min-width: 769px) {
  /* Show seconds on desktop */
  .timer-segment:last-child,
  .timer-separator:last-of-type {
    display: flex !important;
  }
}

@media (min-width: 769px) and (max-width: 1023px) {
  .hero-side-line {
    align-self: center;
    top: clamp(-8px, -1vw, 0px);
  }
  
  .features-grid-2 {
    grid-template-columns: repeat(2, 1fr);
    gap: calc(var(--grid-gap) * 1.2);
  }
  
  .phoenix-content {
    max-width: 100%;
    text-align: center;
    margin-top: 370px;
  }
  
  .phoenix-character {
    display: block;
    position: absolute;
    top: -210px;
    left: 60%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    min-height: auto;
    z-index: 2;
  }
  
  .phoenix-btn {
    width: auto;
    max-width: 300px;
  }
  
  .phoenix-list {
    display: flex;
    overflow-x: auto;
    gap: 16px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 16px;
  }
  
  .phoenix-list > div {
    flex: 0 0 calc(100% - 32px);
    scroll-snap-align: start;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .phoenix-list::-webkit-scrollbar {
    display: none;
  }
  
  .phoenix-list {
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  
}

/* Desktop Optimizations - 4 colunas em todos os tamanhos desktop */
@media (min-width: 1025px) {
  .features-grid-2 {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Desktop Videos */
@media (min-width: 1024px) {
  .videos-desktop {
    display: block;
  }
  
  .videos-mobile {
    display: none;
  }
}

/* Big Screens */
@media (min-width: 1441px) and (max-width: 1680px) {
  .features-grid-2 {
    gap: calc(var(--grid-gap) * 1.2);
  }
  
  
  .hero-container,
  .legal-hero-container,
  .features-container,
  .calendar-container,
  .other-features-container,
  .faq-container,
  .videos-container,
  .phoenix-container,
  .registration-container,
  .footer-container {
    max-width: var(--big-container-max);
  }
}

/* Ultra Wide Screens */
@media (min-width: 1681px) {
  .features-grid-2 {
    gap: calc(var(--grid-gap) * 1.4);
  }
  
  
  .hero-container,
  .legal-hero-container,
  .features-container,
  .calendar-container,
  .other-features-container,
  .faq-container,
  .videos-container,
  .phoenix-container,
  .registration-container,
  .footer-container {
    max-width: var(--ultra-container-max);
  }
}


/* Mobile (max-width: 1024px) */
@media (max-width: 1024px) {
  .hero-content {
    left: clamp(20px, 4vw, 40px);
    max-width: 500px;
  }
  
  .social-links {
    right: clamp(20px, 4vw, 40px);
  }
}

/* Mobile (max-width: 768px) */
@media (max-width: 768px) {
  .header::before {
    display: none;
  }
  
  /* Mobile Header */
  .header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    padding: 0;
    height: 60px;
  }
  
  .navbar {
    padding: 12px 16px;
    height: 100%;
    justify-content: space-between;
    gap: 16px;
  }
  
  .navbar-left {
    display: flex;
    align-items: center;
    gap: 16px;
  }
  
  .nav-logo img {
    height: 32px;
  }
  
  .nav-menu {
    position: fixed;
    top: 60px;
    left: -70%;
    width: 70%;
    height: calc(100vh - 60px);
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: flex-start;
    padding: 40px 20px;
    transition: left 0.3s ease;
    z-index: 999;
  }
  
  .nav-menu.mobile-open {
    left: 0;
  }
  
  .nav-menu li {
    margin-bottom: 30px;
  }
  
  .nav-menu li a {
    font-size: 24px;
    font-weight: 700;
  }
  
  .server-cards {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .user-profile img:first-child {
    width: 28px;
    height: 28px;
    border-radius: 50%;
  }
  
  .user-profile img:last-child {
    display: none;
  }
  
  /* Login button mobile */
  .login-btn {
    padding: 10px 24px;
    font-size: 14px;
  }
  
  /* Mobile Hero */
  .hero-features-bg-wrapper {
    background-size: cover;
    background-position: center top;
    overflow:hidden;
  }
  
  .hero-character {
    left: 48%;
    top: 4vh;
    width: 200vw;
    height: 100vh;
    background-position: center center;
    background-size: contain;
  }
  
  .hero-section {
    height: 100vh;
    min-height: 640px;
  }
  
  .hero-container {
    padding: 0;
    text-align: left;
  }
  
  .hero-content {
    position: absolute;
    bottom: 80px;
    left: 0;
    right: 0;
    width: 100%;
    padding: 0 20px;
    text-align: left;
    z-index: 10;
    max-height: 50vh;
    display: flex;
    flex-direction: column;
  }
  
  .hero-text-content {
    order: 1;
    width:100%;
    gap: 20px;
  }
  
  .hero-content .hero-text-content .hero-main-block {
    position: relative;
    display: flex !important;
    flex-direction: row !important;
    gap: 16px;
    align-items: flex-start;
    width: 100%;
  }
  
  .hero-main-text {
    flex: 1;
  }
  
  .hero-content .hero-text-content .hero-main-block .hero-side-line {
    width: 10px;
    height: clamp(150px, 12vh, 250px);
    background: linear-gradient(135deg, #FFB000, #FF7A00) !important;
    flex-shrink: 0;
    border-radius: 3px;
    display: block !important;
  }
  
  .hero-title {
    font-size: 42px;
    font-weight: 900;
    line-height: 0.85;
    margin-bottom: 8px;
    text-shadow: 3px 3px 12px rgba(0, 0, 0, 0.8);
    letter-spacing: -1px;
    text-transform: uppercase;
  }
  
  .hero-subtitle {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.3;
    font-weight: 400;
    max-width: 280px;
  }
  
  .countdown-timer {
    gap: 6px;
    margin-bottom: 0;
  }
  
  .timer-segment {
    display: flex;
    align-items: baseline;
    gap: 4px;
  }
  
  .timer-number {
    font-size: 28px;
    font-weight: 900;
    line-height: 1;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8);
  }
  
  .timer-label {
    font-size: 24px;
    font-weight: 400;
    letter-spacing: 0.5px;
  }
  
  .timer-separator {
    font-size: 20px;
    margin: 0 2px;
    margin-top: 2px;
  }
  
  /* Hide seconds on mobile */
  .timer-segment:last-child,
  .timer-separator:last-of-type {
    display: none;
  }
  
  .download-btn {
    padding: 16px 32px;
    font-size: 24px;
    text-transform: uppercase;
    width: 100%;
    height: 74px;
    justify-content: center;
    margin-bottom: 16px;
  }
  
  .download-btn img {
    width: 24px;
    height: 24px;
  }
  
  .newsletter-section {
    margin: 0 0 16px 0;
  }
  
  .newsletter-text {
    font-size: 16px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
  }
  
  /* Mobile Social Links */
  .desktop-social {
    display: none !important;
  }
  
  .mobile-social {
    position: static !important;
    display: flex !important;
    flex-direction: row;
    gap: 12px;
    align-items: center;
    justify-content: space-between;
    z-index: 20;
    margin: 0;
    visibility: visible !important;
    opacity: 1 !important;
  }
  
  .mobile-social .follow-text {
    color: white;
    font-size: 12px;
    font-weight: 700;
    margin-right: 8px;
    margin-bottom: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block !important;
    opacity: 1;
  }
  
  .mobile-social .social-icon {
    width: auto;
    height: auto;
    border-radius: 0;
    background: none;
    padding: 2px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    visibility: visible !important;
    opacity: 1 !important;
  }
  
  .mobile-social .social-icon img {
    width: 24px;
    height: 24px;
    display: block !important;
    transition: all 0.3s ease;
    opacity: 1;
  }
  
  .mobile-social .social-icon:hover img {
    opacity: 1;
    transform: scale(1.1);
  }
  
  /* Mobile Server Bar */
  .mobile-servers {
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    padding: 8px 16px;
    display: flex !important;
    justify-content: space-between;
    gap: 12px;
    z-index: 90;
    height: 64px;
    align-items: center;
  }
  
  .mobile-servers .server-card {
    flex: 1;
    min-width: 0;
    height:48px;
  }
  
  /* Server 1: Image on right, text on left */
  .mobile-servers .server-card:first-child {
    flex-direction: row-reverse;
    text-align: right;
  }
  
  /* Server 1: Align status to the right */
  .mobile-servers .server-card:first-child .server-stats {
    justify-content: flex-end;
  }
  
  /* Server 2: Image on left, text on right (default) */
  .mobile-servers .server-card:last-child {
    flex-direction: row;
    text-align: left;
  }
  
  /* Server 2: Align status to the left */
  .mobile-servers .server-card:last-child .server-stats {
    justify-content: flex-start;
  }
  
  .mobile-servers .server-avatar {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .mobile-servers .server-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
  }
  
  .mobile-servers .server-info {
    min-width: 0;
    flex: 1;
  }
  
  .mobile-servers .server-info h4 {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 5px 0;
    line-height: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  
  .mobile-servers .server-stats {
    font-size: 12px;
    gap: 3px;
    line-height: 1;
    white-space: nowrap;
    overflow: hidden;
  }
  
  .mobile-servers .stat-dot {
    width: 2px;
    height: 2px;
    flex-shrink: 0;
  }
  
  /* Mobile Features */
  .features-section {
    padding: 0 16px 24px 16px;
  }
  
  .features-header {
    margin: 0 0 20px 0;
  }
  
  .features-title {
    font-size: 24px;
    margin-bottom: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  
  .features-pagination {
    font-size: 16px;
  }
  
  .arrow-btn {
    width: 28px;
    height: 28px;
    background-size: 40% 40%;
    opacity: 0.8;
  }
  
  .features-swiper {
    margin: 0;
    padding: 0;
    overflow: visible;
    height: auto;
    min-height: 420px;
  }
  
  .feature-card {
    width: 100%;
    height: 100%;
    box-shadow: none;
  }
  
  .feature-info {
    padding: 16px 16px 35px 55px;
    background: none;
  }
  
  .feature-line {
    width: 40px;
    height: 4px;
    margin-bottom: 8px;
  }
  
  .feature-name {
    font-size: 24px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }
  
  /* Mobile Calendar */
  .calendar-section {
    padding: 24px 16px;
  }
  
  .calendar-title,
  .lineage-title {
    font-size: 24px;
  }
  
  .lineage-title-arrow {
    width: 16px;
    height: 9px;
    margin-left: 6px;
  }
  
  .calendar-title {
    margin-bottom: 12px;
  }
  
  .calendar-nav-btn {
    width: 32px;
    height: 32px;
    font-size: 20px;
  }
  
  .calendar-description {
    font-size: 16px;
    margin-bottom: 24px;
  }
  
  .calendar-grid {
    flex-direction: row;
    overflow-x: auto;
    gap: 8px;
    margin-bottom: 24px;
    padding-bottom: 8px;
  }
  
  .calendar-day {
    min-width: 100px;
    min-height: 120px;
    height: auto;
    padding: 6px;
    padding-bottom: 50px;
    border-radius: 12px;
    flex-shrink: 0;
  }
  
  .day-name {
    font-size: 12px;
  }
  
  /* Mobile Calendar Layout */
  .calendar-title-section {
    flex-direction: column;
    gap: 16px;
  }
  
  .calendar-title-right {
    justify-content: flex-start;
  }
  
  .calendar-description {
    text-align: center;
    max-width: 100%;
    width: 100%;
  }
  
  .calendar-content {
    flex-direction: column;
    gap: 24px;
  }
  
  .event-details-wrapper {
    flex-direction: column;
    height: auto;
    min-height: auto;
  }
  
  .event-character {
    position: static;
    transform: none;
    left: auto;
    top: auto;
    width: 100%;
    height: auto;
  }
  
  .event-popup {
    position: static;
    transform: none;
    left: auto;
    top: auto;
    max-width: none;
    min-width: auto;
    width: 100%;
  }
  
  .event-character {
    align-self: center;
    max-width: 400px;
  }
  
  .character-image {
    width: clamp(300px, 83vw, 700);
    height: clamp(300px, 83vw, 700px);
    object-fit: contain;
  }
  
  .calendar-nav {
    gap: 12px;
    align-items: center;
  }
  
  .calendar-arrow-btn {
    width: 40px;
    height: 40px;
    margin-top: 0;
  }
  
  .calendar-grid {
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
    margin-bottom: 16px;
  }
  
  .calendar-day {
    width: 100%;
    height: 120px;
    padding: 6px;
    gap: 2px;
  }
  
  .day-name {
    font-size: 10px;
  }
  
  .day-number {
    font-size: 24px;
  }
  
  .month-name {
    font-size: 8px;
  }
  
  /* Mobile Calendar Events */
  .calendar-events {
    top: 40px; /* Space for day name and number on mobile */
    height: auto;
    bottom: 0;
  }
  
  /* Mobile Event Bars */
  .event-bar {
    height: 20px;
    font-size: 9px;
    padding: 0 6px;
    border-radius: 6px;
  }
  
  .event-bar-1 {
    bottom: 5px;
  }
  
  .event-bar-2 {
    bottom: 28px;
  }
  
  .event-bar-3 {
    bottom: 51px;
  }
  
  .event-bar-4 {
    bottom: 74px;
  }
  
  .event-bar-5 {
    bottom: 97px;
  }
  
  .event-bar-6 {
    bottom: 120px;
  }
  
  .event-details-wrapper {
    flex-direction: column;
    height: auto;
    min-height: auto;
  }
  
  .event-character {
    position: static;
    transform: none;
    left: auto;
    top: auto;
    width: 100%;
    height: auto;
  }
  
  .event-popup {
    position: static;
    transform: none;
    left: auto;
    top: auto;
    width: 100%;
    max-width: none;
    min-width: auto;
    margin-top: 0;
    margin-left: 0;
    padding: 20px;
    border-radius: 12px;
  }
  
  .event-character {
    height: 200px;
  }
  
  .event-date-badge {
    font-size: 12px;
    padding: 6px 12px;
    margin-bottom: 12px;
  }
  
  .event-title {
    font-size: 24px;
    margin-bottom: 12px;
  }
  
  .event-description {
    font-size: 16px;
    margin-bottom: 16px;
  }
  
  .event-btn {
    height: 52px;
    padding: 0 20px;
    font-size: 14px;
  }
  
  /* Mobile Other Features */
  .other-features-section {
    padding: 24px 16px;
  }
  
  .other-features-title {
    font-size: 24px;
    margin-bottom: 24px;
    text-align: left;
  }
  
  .features-grid-2 {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  
  .feature-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    text-align: left;
    padding: 12px 0;
    background: none;
    border: none;
    backdrop-filter: none;
    border-radius: 0;
  }
  
  .feature-item:hover {
    transform: none;
    background: none;
    box-shadow: none;
    border-color: transparent;
  }
  
  .feature-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 0;
    margin-right: 16px;
    flex-shrink: 0;
  }
  
  .feature-icon img {
    filter: none;
  }
  
  .feature-item:hover .feature-icon {
    transform: none;
  }
  
  .feature-item:hover .feature-icon img {
    filter: none;
  }
  
  .feature-item h3 {
    font-size: 18px;
    line-height: 1.3;
    margin: 0;
    text-transform: none;
    font-weight: 500;
  }
  
  .feature-item:hover h3 {
    color: white;
    transform: none;
    text-shadow: none;
  }
  
  /* Mobile FAQ */
  .faq-section {
    padding: 24px 16px;
  }
  
  .faq-title {
    font-size: 32px;
    margin-bottom: 24px;
  }
  
  .faq-question {
    padding: 20px 16px;
  }
  
  .faq-question h3 {
    font-size: 18px;
  }
  
  .faq-answer {
    padding: 0 16px;
  }
  
  .faq-answer.active {
    padding: 16px 16px 20px;
  }
  
  .faq-answer p {
    font-size: 16px;
  }
  
  /* Mobile Videos */
  .videos-section {
    padding: 24px 16px;
  }
  
  .videos-header {
    flex-direction: row;
    gap: 16px;
    margin-bottom: 24px;
    align-items: flex-start;
  }
  
  .videos-title {
    font-size: 24px;
    margin-bottom: 0;
    width: 50%;
  }
  
  .videos-nav {
    width: 100%;
    justify-content: space-between;
  }
  
  .video-card {
    width: 100%;
    border-radius: 12px;
  }
  
  .play-icon {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
  
  .video-title {
    font-size: 14px;
  }
  
  /* Mobile Phoenix */
  .phoenix-section {
    padding: 40px 16px;
    overflow: hidden;
  }
  
  .phoenix-container {
    padding: 0;
  }
  
  .phoenix-content {
    max-width: 100%;
    text-align: center;
    margin-top: 400px;
  }
  
  .phoenix-character {
    display: block;
    position: absolute;
    top: -210px;
    left: 70%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    min-height: auto;
    z-index: 2;
  }
  
  .phoenix-title {
    font-size: 48px;
    margin-bottom: 16px;
    text-align: left;
  }
  
  .phoenix-description {
    font-size: 18px;
    margin-bottom: 24px;
    padding: 0;
    text-align: left;
  }
  
  .phoenix-btn {
    height: 56px;
    padding: 0 40px;
    font-size: 16px;
    width: calc(100% - 32px);
    width: 100%;
  }
  
  .phoenix-features {
    margin-top: 40px;
    padding: 0 16px;
    text-align:left;
  }
  
  .phoenix-features h4 {
    font-size: 14px;
    margin-bottom: 24px;
    text-transform: uppercase;
  }
  
  .phoenix-list {
    display: flex;
    overflow-x: auto;
    gap: 16px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 16px;
  }
  
  .phoenix-list > div {
    flex: 0 0 calc(100% - 32px);
    scroll-snap-align: start;
    background: rgba(24, 0, 10, 0.44);
    border-radius: 12px;
    padding: 20px;
    font-size: 14px;
    line-height: 1.8;
    text-align: left;
    border: 1px solid rgba(255, 255, 255, 0.2);
  }
  
  /* Hide scrollbar for Chrome, Safari and Opera */
  .phoenix-list::-webkit-scrollbar {
    display: none;
  }
  
  /* Hide scrollbar for IE, Edge and Firefox */
  .phoenix-list {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
  }
  
  /* Mobile Registration */
  .registration-section {
    padding: 24px 16px;
  }
  
  .registration-container {
    max-width: 100%;
    padding: 0;
  }
  
  .registration-title {
    font-size: 32px;
    margin-bottom: 12px;
  }
  
  .registration-subtitle {
    font-size: 18px;
    margin-bottom: 32px;
  }
  
  .form-input {
    height: 52px !important;
    padding: 0 16px !important;
    font-size: 16px;
    border-radius: 6px;
    box-sizing: border-box !important;
    min-height: 52px;
    line-height: normal;
  }
  
  input.form-input {
    height: 52px !important;
    padding: 0 16px !important;
    box-sizing: border-box !important;
  }
  
  .form-checkboxes {
    margin: 24px 0;
    gap: 12px;
  }
  
  .checkbox-item {
    font-size: 14px;
    gap: 8px;
  }
  
  .captcha {
    margin: 16px 0;
  }
  
  .captcha-image {
    width: 160px;
    height: 50px;
    font-size: 14px;
  }
  
  .signup-btn {
    height: 64px;
    padding: 0 28px;
    font-size: 16px;
  }
  
  /* Mobile Footer */
  .footer {
    padding: 32px 16px;
  }
  
  .footer-container {
    flex-direction: column;
    gap: 32px;
    text-align: center;
    align-items: center;
  }
  .footer-newsletter{
    width:100%;
  }
  
  .footer-newsletter-title {
    font-size: 28px;
    margin-bottom: 16px;
    text-align:left;
  }
  
  .newsletter-form {
    max-width: 100%;
    flex-direction: column;
    gap: 12px;
  }
  
  .newsletter-input {
    height: 52px !important;
    font-size: 16px;
    padding: 0 16px !important;
    box-sizing: border-box !important;
    min-height: 52px;
    line-height: normal;
  }
  
  input.newsletter-input {
    height: 52px !important;
    padding: 0 16px !important;
    box-sizing: border-box !important;
  }
  
  .newsletter-btn {
    height: 52px;
    padding: 0 24px;
    font-size: 16px;
  }
  
  .footer-brand {
    text-align: center;
    align-items: center;
  }

  .footer-logo {
    height: 60px;
    margin-bottom: 20px;
  }

  .footer-bottom-content {
    align-items: center;
  }
  
  .footer-copyright {
    font-size: 14px;
    max-width: 100%;
    text-align: center;
    margin-bottom: 8px;
  }

  .footer-links {
    justify-content: center;
    margin-top: 4px;
  }

  .footer-link {
    font-size: 12px;
  }

  .footer-separator {
    font-size: 12px;
  }
}

/* ========================================
   VIDEO MODAL
   ======================================== */
.video-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: none;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.video-modal.active {
  display: flex !important;
  opacity: 1 !important;
  visibility: visible !important;
  background: rgba(255, 0, 0, 0.5) !important; /* Debug - fundo vermelho */
}

.video-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
}

.video-modal-content {
  position: relative;
  margin: auto;
  width: 90%;
  max-width: 1200px;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  z-index: 1;
}

.video-modal-close {
  position: absolute;
  top: -50px;
  right: 0;
  background: none;
  border: none;
  color: white;
  font-size: 40px;
  cursor: pointer;
  z-index: 2;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.video-modal-close:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: scale(1.1);
}

.video-modal-player {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background: #000;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.video-modal-player iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.video-modal-info {
  padding: 24px 0;
  text-align: center;
}

.video-modal-info h3 {
  color: white;
  font-size: clamp(20px, 3vw, 32px);
  font-weight: 700;
  margin: 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .video-modal-content {
    width: 95%;
    max-height: 85vh;
  }
  
  .video-modal-close {
    top: -40px;
    font-size: 32px;
    width: 40px;
    height: 40px;
  }
  
  .video-modal-player {
    border-radius: 12px;
  }
  
  .video-modal-info {
    padding: 16px 0;
  }
  
  .video-modal-info h3 {
    font-size: 18px;
  }
  
  /* Calendar Mobile Adjustments */
  .calendar-section {
    text-align: center;
    padding: 40px 16px; /* Restored standard padding */
  }
  
  .calendar-container {
    max-width: 100%;
    padding: 0 var(--container-padding); /* Restored standard container padding */
  }
  
  .calendar-header {
    margin-bottom: 32px;
  }
  
  .calendar-title-section {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }
  
  .calendar-title-right {
    text-align: center;
  }
  
  /* Mobile calendar - 3 days fixed, no scroll, same style as desktop with Mobile.png proportions */
  .calendar-grid {
    display: flex;
    gap: 4px; /* Reduced gap for more space */
    justify-content: center;
    padding: 0;
    overflow: visible;
    margin-bottom: 8px;
    width: 100%; /* Force full width */
    box-sizing: border-box;
  }
  
  .calendar-day {
    flex: 1;
    max-width: calc((100% - 8px) / 3); /* Adjusted for reduced gap */
    text-align: center;
    padding: 12px 6px 20px 6px;
    background: rgba(255, 255, 255, 0.8); /* Same as desktop */
    border-radius: 12px;
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    min-height: 60px;
    height: auto; /* Allow dynamic height growth */
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
  }
  
  .calendar-day .day-full-date {
    width: 100%;
    text-align: center;
  }
  
  .calendar-day.today {
    border: 3px solid rgba(255, 176, 0, 0.8); /* Same border style as desktop */
    background: rgba(255, 255, 255, 0.8); /* Keep default background */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); /* Keep default shadow */
  }
  
  .calendar-day .day-full-date {
    font-size: 12px;
    line-height: 1.4;
    font-weight: 600;
    color: #333;
    text-shadow: none;
    text-align: center;
  }
  
  .calendar-day.today .day-full-date {
    color: #333; /* Same as regular days since background is white */
    font-weight: 700; /* Keep bold for emphasis */
  }
  
  /* Hide desktop arrows on mobile */
  .calendar-arrow-btn.desktop-only {
    display: none;
  }
  
  .calendar-nav {
    flex-direction: column;
    gap: 8px; /* Reduced gap */
  }
  
  .calendar-wrapper {
    flex: 1;
    position: relative;
    min-height: 65px; /* Reduced minimum height for better event visibility */
    width: 100%;
  }
  
  .calendar-widget {
    width: 100%;
    padding: 0;
    margin: 0;
  }
  
  /* Force calendar content to use all available space */
  .calendar-content {
    width: 100%;
    padding: 0;
    margin: 0;
  }
  
  /* Mobile navigation container - show only on mobile */
  .mobile-calendar-navigation {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 12px;
    padding: 0;
  }
  
  .mobile-arrow-btn {
    display: flex;
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }
  
  .mobile-arrow-btn img {
    width: 9px;
    height: 16px;
    opacity: 0.8;
  }
  
  /* Event bars match calendar-grid width exactly */
  .calendar-events {
    width: 100%; /* Same width as calendar-grid */
    max-width: none;
    margin: 0;
    left: 0; /* Align with calendar-grid */
    right: 0;
    height: auto; /* Allow dynamic height */
    bottom: auto; /* Remove bottom constraint */
  }
  
  .event-bar {
    max-width: none; /* Remove width constraint to match calendar-grid */
  }
  
  /* Progress bar following Mobile.png design */
  .calendar-progress-container {
    flex: 1;
    padding: 0;
    margin: 0;
  }
  
  .calendar-progress-bar {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
    overflow: hidden;
    position: relative;
  }
  
  .calendar-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #ffa801 0%, #ff8c00 100%); /* Orange like CTA button */
    border-radius: 3px;  
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    width: 50%; /* Default center position */
  }
  
  /* Hide slide dots container since we're using progress bar */
  .calendar-slide-dots {
    display: none;
  }
  
  /* Event details mobile layout */
  .event-details-wrapper {
    flex-direction: column;
    height: auto;
    max-width: 100%;
  }
  
  .event-character {
    width: 200px;
    height: 300px;
    margin: 0 auto;
    order: 1;
  }
  
  .event-popup {
    position: relative;
    left: 0;
    top: 0;
    transform: none;
    max-width: 100%;
    order: 2;
    padding: 20px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
  }
}

/* ========================================
   LEGAL PAGES - SEPARATE CSS CLASSES
   ======================================== */

/* Legal Hero Section Classes - Desktop */
.legal-hero-features-bg-wrapper {
  background-image: url('img/bg-hero.png');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  width: 100%;
  height: 30vh;
  position: relative;
  overflow: hidden;
}

.legal-hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.legal-hero-container {
  max-width: clamp(320px, 100vw, 1920px);
  margin: 0 auto;
  width: 100%;
  height: 30vh;
  position: relative;
  padding: 0 clamp(16px, 4vw, 80px);
}

.legal-hero-character {
  position: absolute;
  left: clamp(50%, 55%, 55%);
  top: 0;
  width: clamp(600px, 100vw, 1767px);
  transform: translateX(-50%);
  height: 70vh;
  background-image: url('img/character-hero.png');
  background-size: contain;
  background-position: center top;
  background-repeat: no-repeat;
  z-index: 1;
  pointer-events: none;
}

.legal-hero-character-placeholder {
  display: none;
}

/* Legal Hero Section Classes - Mobile */
@media (max-width: 768px) {
  .legal-hero-features-bg-wrapper {
    background-size: cover;
    background-position: center top;
    overflow:hidden;
  }
  
  .legal-hero-character {
    left: 48%;
    top: 4vh;
    width: 200vw;
    height: 60vh;
    background-position: center center;
    background-size: contain;
  }
  
  .legal-hero-section {
    height: 100vh;
    min-height: 640px;
  }
  
  .legal-hero-container {
    padding: 0;
    text-align: left;
  }
}




/* ========================================
   LEGAL PAGES CONTENT SECTIONS
   ======================================== */

/* Terms Section */
.terms-section {
  background-color: #F8F9FA;
  padding: 40px 0;
  min-height: 70vh;
}

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

.terms-header {
  text-align: center;
  margin-bottom: 60px;
}

.terms-title {
  font-size: 3rem;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.terms-subtitle {
  color: #666;
  font-size: 1.2rem;
  font-weight: 400;
  margin: 0 auto;
  line-height: 1.6;
}

.terms-content {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 50px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  color: #333;
  line-height: 1.8;
  font-size: 1rem;
  margin-bottom: 40px;
}

.terms-content h2 {
  color: #1a1a1a;
  font-size: 1.8rem;
  font-weight: 700;
  margin: 40px 0 20px 0;
  padding-bottom: 10px;
  border-bottom: 3px solid #FFB000;
  display: inline-block;
}

.terms-content h3 {
  color: #FFB000;
  font-size: 1.3rem;
  font-weight: 600;
  margin: 30px 0 15px 0;
}

.terms-content p {
  margin-bottom: 15px;
  text-align: justify;
}

.terms-content ul {
  margin: 15px 0;
  padding-left: 20px;
}

.terms-content li {
  margin-bottom: 8px;
  list-style-type: disc;
}

.terms-content strong {
  color: #FFB000;
  font-weight: 700;
}

/* Privacy Section */
.privacy-section {
  background-color: #F8F9FA;
  padding: 40px 0;
  min-height: 70vh;
}

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

.privacy-header {
  text-align: center;
  margin-bottom: 60px;
}

.privacy-title {
  font-size: 3rem;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.privacy-subtitle {
  color: #666;
  font-size: 1.2rem;
  font-weight: 400;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.privacy-content {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 50px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  color: #333;
  line-height: 1.8;
  font-size: 1rem;
  margin-bottom: 40px;
}

.privacy-content h2 {
  color: #1a1a1a;
  font-size: 1.8rem;
  font-weight: 700;
  margin: 40px 0 20px 0;
  padding-bottom: 10px;
  border-bottom: 3px solid #FFB000;
  display: inline-block;
}

.privacy-content h3 {
  color: #FFB000;
  font-size: 1.3rem;
  font-weight: 600;
  margin: 30px 0 15px 0;
}

.privacy-content p {
  margin-bottom: 15px;
  text-align: justify;
}

.privacy-content ul {
  margin: 15px 0;
  padding-left: 20px;
}

.privacy-content li {
  margin-bottom: 8px;
  list-style-type: disc;
}

.privacy-content strong {
  color: #FFB000;
  font-weight: 700;
}

/* Back Link - Shared for both pages */
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #FFB000;
  text-decoration: none;
  font-weight: 600;
  margin-bottom: 40px;
  transition: all 0.3s ease;
  font-size: 1.1rem;
}

.back-link:hover {
  color: #1a1a1a;
  transform: translateX(-5px);
}

.back-link::before {
  content: '←';
  font-size: 1.3rem;
  font-weight: bold;
}

/* Responsive for Content Sections */
@media (max-width: 768px) {
  .terms-section,
  .privacy-section {
    padding: 20px 0;
  }
  
  .terms-container,
  .privacy-container {
    padding: 0 15px;
  }
  
  .terms-title,
  .privacy-title {
    font-size: 2rem;
  }
  
  .terms-content,
  .privacy-content {
    padding: 30px 20px;
    font-size: 0.95rem;
  }
  
  .terms-content h2,
  .privacy-content h2 {
    font-size: 1.4rem;
  }
  
  .terms-header,
  .privacy-header {
    margin-bottom: 40px;
  }
}
