/* ============================================
   RASTA.CSS - ZION TerraNova Rasta Theme
   ============================================ */

/* === RASTA COLOR PALETTE === */
:root {
  --rasta-red: #e41e2b;
  --rasta-gold: #fcd116;
  --rasta-green: #078930;
  --rasta-dark: #1a1a1a;
  --rasta-black: #0d0d0d;
  --quantum-blue: #00d4ff;
  --matrix-green: #00ff41;
  --rasta-header-offset: clamp(110px, 12vw, 170px);
}

html {
  scroll-padding-top: var(--rasta-header-offset);
}

.rasta-body {
  background: #000;
  color: #f7f7f7;
  min-height: 100vh;
  padding-top: var(--rasta-header-offset) !important;
}

@media (max-width: 768px) {
  :root {
    --rasta-header-offset: 100px;
  }

  .rasta-body {
    padding-top: var(--rasta-header-offset);
  }
}

/* === PRESALE NAV LINK === */
.presale-nav-link {
  position: relative;
  background: linear-gradient(135deg, rgba(252, 209, 22, 0.15), rgba(7, 137, 48, 0.15)) !important;
  border-radius: 20px !important;
  padding: 8px 16px !important;
  animation: presaleNavPulse 2s ease-in-out infinite;
}

.presale-nav-link:hover {
  background: linear-gradient(135deg, rgba(252, 209, 22, 0.3), rgba(7, 137, 48, 0.3)) !important;
}

.presale-badge-nav {
  font-size: 0.9em;
  margin-right: 4px;
}

@keyframes presaleNavPulse {
  0%, 100% { box-shadow: 0 0 5px rgba(252, 209, 22, 0.3); }
  50% { box-shadow: 0 0 15px rgba(252, 209, 22, 0.6); }
}

/* === NAV LOGO === */
.nav-logo {
  display: flex;
  align-items: center;
  margin-right: 15px;
}

.nav-logo-img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--rasta-gold);
  box-shadow: 0 0 10px rgba(252, 209, 22, 0.4);
  transition: all 0.3s ease;
}

.nav-logo-img:hover {
  transform: scale(1.1);
  box-shadow: 0 0 15px rgba(252, 209, 22, 0.6);
  border-color: var(--rasta-green);
}

@media (max-width: 768px) {
  .nav-logo-img {
    width: 38px;
    height: 38px;
  }
}

/* === HERO SECTION === */
.rasta-hero {
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.85) 0%, rgba(10, 10, 10, 0.9) 100%);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: clamp(60px, 12vw, 140px) 20px;
  position: relative;
  overflow: hidden;
  border-bottom: 4px solid;
  border-image: linear-gradient(90deg, var(--rasta-red), var(--rasta-gold), var(--rasta-green)) 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  min-height: clamp(360px, 60vh, 560px);
}

.rasta-hero[style*="background-image"] {
  background-blend-mode: overlay;
    background-color: rgba(0, 0, 0, 0.4);
    width: 100%;
}

.rasta-hero-inner {
  text-align: center;
  max-width: 900px;
  width: 100%;
  position: relative;
  z-index: 1;
  padding: 0 1rem;
}

.rasta-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(228, 30, 43, 0.1) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(7, 137, 48, 0.1) 0%, transparent 40%),
    radial-gradient(circle at 50% 50%, rgba(252, 209, 22, 0.05) 0%, transparent 60%);
  pointer-events: none;
}

.rasta-hero h1 {
  font-size: clamp(2.4rem, 7vw, 4.5rem);
  font-weight: 900;
  background: linear-gradient(90deg, var(--rasta-red), var(--rasta-gold), var(--rasta-green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: clamp(3px, 1vw, 8px);
}

.rasta-hero h2 {
  font-size: clamp(1.2rem, 3vw, 2rem);
  color: var(--rasta-gold);
  margin-bottom: 15px;
  letter-spacing: clamp(2px, 0.5vw, 4px);
}

.rasta-hero .subtitle {
  color: #aaa;
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  opacity: 0.9;
  margin-bottom: 30px;
}

.rasta-hero .version-badge {
  display: inline-block;
  background: linear-gradient(90deg, var(--quantum-blue), var(--matrix-green));
  color: #000;
  padding: 8px 20px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 30px;
  animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 10px rgba(0, 212, 255, 0.5); }
  50% { box-shadow: 0 0 25px rgba(0, 255, 65, 0.8); }
}

/* === DIVIDER === */
.rasta-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin: 40px 0;
}

.rasta-divider .line {
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, var(--rasta-red), var(--rasta-gold), var(--rasta-green));
  border-radius: 3px;
}

.rasta-divider .icon {
  font-size: 1.5rem;
  color: var(--rasta-gold);
}

/* === SECTIONS === */
.rasta-section {
  padding: clamp(35px, 5vw, 60px) clamp(16px, 4vw, 30px);
  max-width: 1100px;
  margin: 0 auto;
}

.rasta-section h2 {
  font-size: clamp(1.3rem, 4vw, 2rem);
  color: var(--rasta-gold);
  text-align: center;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.rasta-section h2 span {
  color: var(--rasta-green);
}

.rasta-section h3 {
  font-size: 1.3rem;
  color: var(--rasta-red);
  margin: 20px 0 10px;
  text-align: center;
}

.rasta-text {
  color: #ccc;
  font-size: 1rem;
  line-height: 1.7;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.rasta-quote {
  background: linear-gradient(135deg, rgba(252, 209, 22, 0.1) 0%, rgba(7, 137, 48, 0.1) 100%);
  border-left: 4px solid var(--rasta-gold);
  padding: 18px 25px;
  margin: 20px auto;
  max-width: 600px;
  font-style: italic;
  color: #fff;
  font-size: 1.05rem;
  border-radius: 0 10px 10px 0;
}

.rasta-quote::before {
  content: '"';
  font-size: 2.5rem;
  color: var(--rasta-gold);
  opacity: 0.5;
  display: block;
  margin-bottom: -15px;
}

/* === HUMANITY SECTION === */
.humanity-section {
  background: linear-gradient(180deg, rgba(7, 137, 48, 0.05) 0%, transparent 100%);
}

.humanity-pillars {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin: 40px 0;
}

.humanity-pillar {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(7, 137, 48, 0.3);
  border-radius: 15px;
  padding: 30px 25px;
  max-width: 300px;
  text-align: center;
  transition: all 0.3s ease;
}

.humanity-pillar:hover {
  border-color: var(--rasta-green);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(7, 137, 48, 0.2);
}

.humanity-pillar i {
  font-size: 2.5rem;
  color: var(--rasta-green);
  margin-bottom: 15px;
}

.humanity-pillar h4 {
  color: var(--rasta-gold);
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.humanity-pillar p {
  color: #aaa;
  font-size: 0.95rem;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .humanity-pillars {
    flex-direction: column;
    align-items: center;
  }
  
  .humanity-pillar {
    max-width: 100%;
    width: 100%;
  }
}

/* === STATS GRID === */
.rasta-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  justify-items: center;
  gap: 25px 30px;
  margin: 50px 0;
  padding: 40px 20px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 20px;
  border: 1px solid rgba(252, 209, 22, 0.2);
}

.stat-item {
  text-align: center;
  width: 100%;
  padding: 8px 10px;
}

.stat-number {
  font-size: clamp(1.6rem, 5vw, 2.5rem);
  font-weight: 900;
  background: linear-gradient(90deg, var(--rasta-gold), var(--rasta-green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  color: #888;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 5px;
}

/* === DASHBOARD STYLES === */
.dashboard-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 40px 20px;
}

.dashboard-header {
  text-align: center;
  margin-bottom: 50px;
}

.dashboard-header h1 {
  font-size: clamp(1.6rem, 5vw, 3rem);
  background: linear-gradient(135deg, var(--rasta-gold), var(--rasta-green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 10px;
}

.dashboard-header .subtitle {
  color: #999;
  font-size: 1.1rem;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-bottom: 40px;
}

.dashboard-card {
  background: linear-gradient(135deg, rgba(30, 30, 30, 0.95), rgba(20, 20, 20, 0.98));
  border: 1px solid rgba(252, 209, 22, 0.3);
  border-radius: 12px;
  padding: 25px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.dashboard-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--rasta-red), var(--rasta-gold), var(--rasta-green));
}

.dashboard-card:hover {
  transform: translateY(-5px);
  border-color: var(--rasta-gold);
  box-shadow: 0 10px 30px rgba(252, 209, 22, 0.2);
}

.dashboard-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.dashboard-card-title {
  font-size: 1.1rem;
  color: var(--rasta-gold);
  font-weight: 600;
}

.dashboard-card-icon {
  font-size: 2rem;
  color: var(--rasta-green);
}

.dashboard-stat {
  font-size: clamp(1.6rem, 5vw, 2.5rem);
  font-weight: bold;
  background: linear-gradient(135deg, var(--rasta-gold), var(--rasta-green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 10px;
}

.dashboard-label {
  color: #999;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.dashboard-table {
  background: linear-gradient(135deg, rgba(30, 30, 30, 0.95), rgba(20, 20, 20, 0.98));
  border: 1px solid rgba(252, 209, 22, 0.3);
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 40px;
  overflow-x: auto;
}

.dashboard-table h3 {
  color: var(--rasta-gold);
  margin-bottom: 25px;
  font-size: 1.5rem;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
}

.data-table thead tr {
  border-bottom: 2px solid rgba(252, 209, 22, 0.3);
}

.data-table th {
  text-align: left;
  padding: 15px;
  color: var(--rasta-gold);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 1px;
}

.data-table td {
  padding: 15px;
  color: #ddd;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.data-table tbody tr:hover {
  background: rgba(252, 209, 22, 0.05);
}

.status-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
}

.status-active {
  background: rgba(7, 137, 48, 0.2);
  color: var(--rasta-green);
  border: 1px solid var(--rasta-green);
}

.status-pending {
  background: rgba(252, 209, 22, 0.2);
  color: var(--rasta-gold);
  border: 1px solid var(--rasta-gold);
}

.status-completed {
  background: rgba(0, 212, 255, 0.2);
  color: var(--quantum-blue);
  border: 1px solid var(--quantum-blue);
}

.dashboard-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 40px;
}

.dashboard-btn {
  padding: 12px 30px;
  background: linear-gradient(135deg, var(--rasta-gold), var(--rasta-green));
  color: var(--rasta-black);
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.dashboard-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(252, 209, 22, 0.4);
}

.dashboard-btn-secondary {
  background: transparent;
  border: 2px solid var(--rasta-gold);
  color: var(--rasta-gold);
}

.dashboard-btn-secondary:hover {
  background: var(--rasta-gold);
  color: var(--rasta-black);
}

@media (max-width: 768px) {
  .dashboard-header h1 {
    font-size: 2rem;
  }
  
  .dashboard-grid {
    grid-template-columns: 1fr;
  }
  
  .dashboard-stat {
    font-size: 2rem;
  }
  
  .data-table {
    font-size: 0.85rem;
  }
  
  .data-table th,
  .data-table td {
    padding: 10px 8px;
  }
}

/* === PILLAR CARDS === */
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 25px;
  margin: 40px 0;
}

.pillar-card {
  background: linear-gradient(145deg, rgba(252, 209, 22, 0.05) 0%, rgba(7, 137, 48, 0.05) 100%);
  border: 1px solid rgba(252, 209, 22, 0.2);
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.pillar-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--rasta-red), var(--rasta-gold), var(--rasta-green));
}

.pillar-card:hover {
  transform: translateY(-10px);
  border-color: var(--rasta-gold);
  box-shadow: 0 20px 40px rgba(252, 209, 22, 0.15);
}

.pillar-card .icon {
  font-size: 3rem;
  margin-bottom: 20px;
  background: linear-gradient(90deg, var(--rasta-red), var(--rasta-gold), var(--rasta-green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pillar-card h4 {
  color: var(--rasta-gold);
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.pillar-card p {
  color: #aaa;
  line-height: 1.6;
  font-size: 0.95rem;
}

.pillar-card .status {
  display: inline-block;
  margin-top: 15px;
  padding: 5px 15px;
  background: rgba(7, 137, 48, 0.2);
  color: var(--rasta-green);
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
}

/* === CREATIVE CARD GRID === */
.rasta-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 25px;
  margin: 35px 0;
}

.rasta-card {
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(252, 209, 22, 0.2);
  border-radius: 18px;
  padding: 25px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.rasta-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 18px;
  background: radial-gradient(circle at top, rgba(252, 209, 22, 0.08), transparent 55%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.rasta-card:hover {
  transform: translateY(-8px);
  border-color: rgba(252, 209, 22, 0.5);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.45);
}

.rasta-card:hover::before {
  opacity: 1;
}

.rasta-card h4 {
  color: var(--rasta-gold);
  font-size: 1.15rem;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.rasta-card p {
  color: #cfcfcf;
  line-height: 1.6;
  font-size: 0.95rem;
  position: relative;
  z-index: 1;
}

.rasta-card .tag {
  display: inline-block;
  margin-top: 15px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(7, 137, 48, 0.25);
  color: var(--rasta-green);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .rasta-card-grid {
    grid-template-columns: 1fr;
  }
}

/* === TIMELINE === */
.rasta-timeline {
  position: relative;
  padding: 30px 0;
  max-width: 900px;
  margin: 0 auto;
}

.rasta-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  background: linear-gradient(180deg, var(--rasta-red), var(--rasta-gold), var(--rasta-green));
  transform: translateX(-50%);
  border-radius: 3px;
}

.timeline-item {
  display: flex;
  justify-content: flex-start;
  gap: 25px;
  position: relative;
  margin-bottom: 45px;
}

.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
  text-align: right;
}

.timeline-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--rasta-gold);
  border: 4px solid var(--rasta-dark);
  position: absolute;
  left: 50%;
  transform: translate(-50%, 8px);
  box-shadow: 0 0 20px rgba(252, 209, 22, 0.6);
}

.timeline-content {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(252, 209, 22, 0.2);
  border-radius: 16px;
  padding: 22px;
  width: 45%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.timeline-year {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--rasta-gold);
  margin-bottom: 8px;
}

.timeline-title {
  font-size: 1.1rem;
  color: var(--rasta-green);
  margin-bottom: 10px;
}

.timeline-text {
  color: #c1c1c1;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .rasta-timeline::before {
    left: 24px;
  }

  .timeline-item,
  .timeline-item:nth-child(even) {
    flex-direction: column;
    text-align: left;
    padding-left: 45px;
  }

  .timeline-dot {
    left: 24px;
    transform: translate(-50%, 0);
  }

  .timeline-content {
    width: 100%;
  }
}

/* === LIBRARY TABLE === */
.library-section {
  position: relative;
}

.library-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin: 25px auto 10px;
}

.library-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(252, 209, 22, 0.4);
  background: rgba(0, 0, 0, 0.4);
  color: #f7f7f7;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}

.library-chip i {
  color: var(--rasta-gold);
}

.lang-legend {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  margin: 25px auto 10px;
  flex-wrap: wrap;
  color: #bbb;
  font-size: 0.95rem;
}

.lang-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-weight: 700;
  font-size: 0.9rem;
  color: #000;
  background: var(--rasta-gold);
  box-shadow: 0 0 15px rgba(252, 209, 22, 0.35);
}

.lang-pill[data-lang="CZ"] { background: linear-gradient(135deg, var(--rasta-red), #ff7f50); }
.lang-pill[data-lang="EN"] { background: linear-gradient(135deg, #ffffff, #87cefa); }
.lang-pill[data-lang="ES"] { background: linear-gradient(135deg, #f7d154, #e0412e); }
.lang-pill[data-lang="FR"] { background: linear-gradient(135deg, #002654, #fff, #ce1126); }
.lang-pill[data-lang="PT"] { background: linear-gradient(135deg, #003399, #ffdf00, #009c3b); }

.table-wrapper {
  margin-top: 30px;
  overflow-x: auto;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.03), rgba(7, 137, 48, 0.08));
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
}

.rasta-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
}

.rasta-table thead {
  background: linear-gradient(90deg, rgba(228, 30, 43, 0.8), rgba(252, 209, 22, 0.8), rgba(7, 137, 48, 0.8));
}

.rasta-table th {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.85rem;
  padding: 16px 12px;
  color: #0d0d0d;
  font-weight: 800;
}

.rasta-table td {
  padding: 16px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  color: #ddd;
  font-size: 0.95rem;
}

.rasta-table tbody tr:nth-child(odd) {
  background: rgba(255, 255, 255, 0.02);
}

.rasta-table tbody tr:hover {
  background: rgba(252, 209, 22, 0.08);
  transition: background 0.2s ease;
}

.download-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  color: #0d0d0d;
  background: var(--rasta-gold);
  border: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 8px 20px rgba(252, 209, 22, 0.35);
}

.download-pill[data-lang="CZ"] { background: linear-gradient(135deg, var(--rasta-red), #ff9f7f); }
.download-pill[data-lang="EN"] { background: linear-gradient(135deg, #ffffff, #9bd5ff); }
.download-pill[data-lang="ES"] { background: linear-gradient(135deg, #ffe680, #ff7b54); }
.download-pill[data-lang="FR"] { background: linear-gradient(135deg, #274690, #f7f7f7, #c1121f); }
.download-pill[data-lang="PT"] { background: linear-gradient(135deg, #009c3b, #ffd700); }

.download-pill i {
  font-size: 0.9rem;
}

.download-pill.unavailable {
  background: rgba(255, 255, 255, 0.08);
  color: #888;
  border: 1px dashed rgba(255, 255, 255, 0.3);
  box-shadow: none;
}

@media (max-width: 768px) {
  .lang-pill {
    width: 36px;
    height: 36px;
    font-size: 0.75rem;
  }

  .download-pill {
    font-size: 0.72rem;
    padding: 4px 8px;
    gap: 4px;
  }

  .rasta-table {
    min-width: 480px;
  }

  .rasta-table th,
  .rasta-table td {
    padding: 10px 6px;
    font-size: 0.82rem;
  }
}

@media (max-width: 480px) {
  .rasta-table {
    min-width: 420px;
  }

  .rasta-table th,
  .rasta-table td {
    padding: 8px 4px;
    font-size: 0.75rem;
  }

  .download-pill {
    font-size: 0.65rem;
    padding: 3px 6px;
  }

  .table-wrapper {
    border-radius: 10px;
  }
}

/* === WARP LANES === */
.warp-lanes {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin: 30px 0;
}

.warp-lane {
  background: rgba(0, 212, 255, 0.1);
  border: 1px solid rgba(0, 212, 255, 0.3);
  padding: 10px 20px;
  border-radius: 25px;
  color: var(--quantum-blue);
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.warp-lane:hover {
  background: rgba(0, 212, 255, 0.2);
  transform: scale(1.05);
}

.warp-lane.active {
  background: var(--rasta-green);
  color: #000;
  border-color: var(--rasta-green);
}

/* === IMAGE FRAME === */
.rasta-frame {
  position: relative;
  display: inline-block;
  padding: 10px;
  background: linear-gradient(135deg, var(--rasta-red), var(--rasta-gold), var(--rasta-green));
  border-radius: 20px;
  margin: 30px 0 10px;
  max-width: 600px;
  width: 100%;
}

.rasta-frame img {
  border-radius: 16px;
  display: block;
  width: 100%;
  max-height: 420px;
  object-fit: cover;
}

/* === THREE LINKS === */
.three-links {
  display: flex;
  gap: 30px;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  margin: 40px 0;
}

.three-links a {
  flex: 1 1 min(280px, 100%);
  text-align: center;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(252, 209, 22, 0.2);
  border-radius: 15px;
  padding: 25px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.three-links a:hover {
  border-color: var(--rasta-gold);
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(252, 209, 22, 0.1);
}

.three-links img {
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.three-links a:hover img {
  transform: scale(1.05);
}

.three-links .link-title {
  color: var(--rasta-gold);
  font-weight: 700;
  font-size: 1.1rem;
  margin-top: 15px;
}

/* === CTA BUTTONS === */
.rasta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 40px;
  background: linear-gradient(90deg, var(--rasta-red), var(--rasta-gold), var(--rasta-green));
  color: #000;
  text-decoration: none;
  font-weight: 700;
  font-size: clamp(0.9rem, 2vw, 1.05rem);
  border-radius: 30px;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: all 0.3s ease;
  margin: 10px;
}

.rasta-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(252, 209, 22, 0.3);
}

.rasta-btn-outline {
  background: transparent;
  border: 2px solid var(--rasta-gold);
  color: var(--rasta-gold);
}

.rasta-btn-outline:hover {
  background: var(--rasta-gold);
  color: #000;
}

.rasta-btn-quantum {
  background: linear-gradient(90deg, var(--quantum-blue), var(--matrix-green));
}

.rasta-btn-small {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 20px;
  background: linear-gradient(90deg, var(--rasta-red), var(--rasta-gold), var(--rasta-green));
  color: #000;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.85rem;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  margin: 5px;
}

.rasta-btn-small:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(252, 209, 22, 0.3);
}

/* === OASIS SECTION === */
.oasis-section {
  background: linear-gradient(135deg, rgba(252, 209, 22, 0.05) 0%, rgba(7, 137, 48, 0.05) 100%);
  border-radius: 20px;
  padding: 50px 30px;
  margin: 40px auto;
  max-width: 800px;
  text-align: center;
  border: 1px solid rgba(252, 209, 22, 0.2);
}

.oasis-section .golden-egg {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 20px auto;
  animation: float 3s ease-in-out infinite;
}

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

/* === OASIS FEATURES === */
.oasis-features {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin: 30px 0;
}

.oasis-feature {
  background: rgba(252, 209, 22, 0.1);
  border: 1px solid rgba(252, 209, 22, 0.3);
  border-radius: 10px;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.oasis-feature:hover {
  background: rgba(252, 209, 22, 0.2);
  transform: scale(1.05);
}

.oasis-feature i {
  color: var(--rasta-gold);
  font-size: 1.3rem;
}

.oasis-feature span {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 500;
}

/* === COSMIC MAP SECTION === */
.cosmic-section {
  background: linear-gradient(180deg, rgba(0, 0, 30, 0.5) 0%, transparent 100%);
}

.cosmic-section h3 {
  color: var(--quantum-blue);
  margin-bottom: 20px;
}

.cosmic-grid {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
  margin: 40px 0;
}

.cosmic-body {
  background: rgba(0, 0, 0, 0.5);
  border-radius: 15px;
  padding: 25px 20px;
  min-width: min(140px, 40vw);
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.cosmic-body::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at center, rgba(255,255,255,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.cosmic-body:hover {
  transform: translateY(-8px) scale(1.05);
}

.cosmic-body.sun {
  border: 2px solid var(--rasta-gold);
  box-shadow: 0 0 30px rgba(252, 209, 22, 0.3);
}

.cosmic-body.sun i {
  color: var(--rasta-gold);
  font-size: 2.5rem;
  animation: pulse-glow 2s ease-in-out infinite;
}

.cosmic-body.sun:hover {
  box-shadow: 0 0 50px rgba(252, 209, 22, 0.5);
}

.cosmic-body.planet {
  border: 2px solid var(--quantum-blue);
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.2);
}

.cosmic-body.planet i {
  color: var(--quantum-blue);
  font-size: 2rem;
}

.cosmic-body.planet:hover {
  box-shadow: 0 0 40px rgba(0, 212, 255, 0.4);
}

.cosmic-body.moon {
  border: 2px solid var(--rasta-green);
  box-shadow: 0 0 15px rgba(7, 137, 48, 0.2);
}

.cosmic-body.moon i {
  color: var(--rasta-green);
  font-size: 1.8rem;
}

.cosmic-body.moon:hover {
  box-shadow: 0 0 30px rgba(7, 137, 48, 0.4);
}

.cosmic-body h4 {
  color: #fff;
  font-size: 1rem;
  margin: 15px 0 5px;
}

.cosmic-body p {
  color: #888;
  font-size: 0.85rem;
}

@media (max-width: 768px) {
  .cosmic-grid {
    gap: 15px;
  }
  
  .cosmic-body {
    min-width: 120px;
    padding: 20px 15px;
  }
  
  .oasis-features {
    flex-direction: column;
    align-items: center;
  }
  
  .oasis-feature {
    width: 100%;
    max-width: 250px;
    justify-content: center;
  }
}

/* === SUPPORT SECTION === */
.support-section {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 20px;
  padding: 30px 20px;
  margin: 20px auto;
  max-width: 500px;
  text-align: center;
  border: 1px solid rgba(252, 209, 22, 0.15);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.support-section h3 {
  color: var(--rasta-gold);
  margin-bottom: 20px;
  text-align: center;
}

.support-section p {
  color: #aaa;
  margin: 8px 0;
  font-family: monospace;
  word-break: break-word;
  font-size: 0.95rem;
  text-align: center;
}

.support-section img {
  border-radius: 10px;
  margin: 15px auto;
  opacity: 0.9;
  width: 150px;
  display: block;
}

/* === DAO WINNERS === */
.dao-winners {
  margin-top: 30px;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.dao-winners h4 {
  color: var(--rasta-gold);
  margin-bottom: 20px;
  font-size: 1.2rem;
}

.dao-winners-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

.dao-winners-list p {
  color: #ccc;
  margin: 0;
  padding: 10px 20px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  width: 100%;
  max-width: 320px;
  text-align: center;
}

.dao-winners .quest-end {
  color: var(--rasta-red);
  margin-top: 20px;
  font-weight: 600;
}

/* === SLIDER RASTA STYLE === */
.slideshow-container {
  border: 3px solid;
  border-image: linear-gradient(90deg, var(--rasta-red), var(--rasta-gold), var(--rasta-green)) 1;
  border-radius: 15px;
  overflow: hidden;
  max-width: 900px;
  margin: 0 auto;
}

.mySlides .text {
  background: linear-gradient(90deg, rgba(228, 30, 43, 0.9), rgba(252, 209, 22, 0.9), rgba(7, 137, 48, 0.9));
  color: #000;
  font-weight: 700;
  padding: 12px 25px;
  border-radius: 25px;
}

/* === MANTRA === */
.mantra-section {
  text-align: center;
  padding: 60px 20px;
}

.mantra-section h1 {
  font-size: clamp(1.2rem, 5vw, 2.5rem);
  color: var(--rasta-gold);
  margin-bottom: 30px;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .three-links a {
    flex: 0 0 100%;
  }

  .pillar-grid {
    grid-template-columns: 1fr;
  }

  .support-section {
    padding: 25px 15px;
    margin: 15px auto;
    max-width: 95%;
  }

  .support-section p {
    font-size: 0.85rem;
  }

  .oasis-section {
    padding: 30px 15px;
    margin: 20px 10px;
  }

  .dao-winners-list p {
    font-size: 0.9rem;
    padding: 8px 15px;
  }

  .rasta-stats {
    gap: 20px;
    padding: 25px 15px;
  }

  .stat-number {
    font-size: 1.9rem;
  }

  .dashboard-btn {
    width: 100%;
    justify-content: center;
  }

  .rasta-hero {
    min-height: auto;
    padding: 80px 16px 40px;
  }

  .rasta-hero h1 {
    font-size: clamp(1.8rem, 6vw, 2.8rem);
  }

  .rasta-hero h2 {
    font-size: clamp(1rem, 3vw, 1.4rem);
  }

  .rasta-section {
    padding: 30px 16px;
  }
}

@media (max-width: 600px) {
  .rasta-hero .rasta-btn {
    width: 100%;
    display: inline-flex;
    margin-left: 0;
    margin-right: 0;
    font-size: 0.95rem;
  }

  .rasta-divider {
    margin: 30px 0;
  }

  .rasta-divider .line {
    width: 60px;
  }

  .rasta-text {
    font-size: 0.95rem;
  }
}

/* === EXTRA MOBILE RESPONSIVE === */
@media (max-width: 480px) {
  .rasta-section {
    padding: 25px 12px;
  }

  .cosmic-grid {
    gap: 12px;
  }

  .cosmic-body {
    padding: 15px 10px;
    min-width: min(120px, 42vw);
  }

  .three-links {
    gap: 15px;
  }

  .three-links a {
    flex: 1 1 100%;
    padding: 18px;
  }

  .humanity-pillars {
    gap: 15px;
  }

  .pillar-card {
    padding: 18px 12px;
  }

  .rasta-quote {
    font-size: 0.95rem;
    padding: 15px;
  }

  .dashboard-grid {
    gap: 15px;
  }

  .dashboard-card {
    padding: 18px;
  }
}

/* === VZESTUP PORTAL BANNER === */
.vzestup-banner {
  max-width: 900px;
  margin: 20px auto;
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 2px solid rgba(155,89,182,0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}
.vzestup-banner:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(155,89,182,0.35);
  border-color: rgba(155,89,182,0.8);
}
.vzestup-banner-bg {
  position: absolute;
  inset: 0;
  background: url('./Vzestup/vzestup.webpark.cz/portal.jpg') center/cover;
  opacity: 0.2;
  pointer-events: none;
}
.vzestup-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(108,52,131,0.85), rgba(155,89,182,0.6), rgba(108,52,131,0.85));
  pointer-events: none;
}
.vzestup-banner-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 30px 36px;
  flex-wrap: wrap;
}
.vzestup-banner-avatar {
  flex: 0 0 90px;
  text-align: center;
}
.vzestup-banner-avatar img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(210,180,222,0.6);
  box-shadow: 0 0 24px rgba(155,89,182,0.5);
}
.vzestup-banner-info {
  flex: 1;
  min-width: 180px;
}
.vzestup-banner-info .tag {
  font-size: 0.7rem;
  color: #d2b4de;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 700;
}
.vzestup-banner-info h3 {
  margin: 6px 0 4px;
  font-size: clamp(1.1rem, 3.5vw, 1.5rem);
  color: #fff;
  font-weight: 700;
}
.vzestup-banner-info p {
  color: #d2b4de;
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
  width: 100%;
  text-align: left;
}
.vzestup-banner-cta {
  flex: 0 0 auto;
}
.vzestup-banner-cta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 30px;
  background: linear-gradient(135deg, #9b59b6, #6c3483);
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* === FEATURED BOOK CARD === */
.featured-book {
  max-width: 800px;
  margin: 40px auto;
  background: linear-gradient(135deg, rgba(198,40,40,0.12), rgba(253,216,53,0.10), rgba(46,125,50,0.12));
  border: 2px solid var(--rasta-gold, #fdd835);
  border-radius: 18px;
  padding: 30px;
  display: flex;
  gap: 28px;
  align-items: center;
  flex-wrap: wrap;
}
.featured-book-cover {
  flex: 0 0 160px;
  text-align: center;
}
.featured-book-cover img {
  width: 160px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.5);
}
.featured-book-info {
  flex: 1;
  min-width: 200px;
}
.featured-book-info .tag {
  font-size: 0.75rem;
  color: var(--rasta-gold, #fdd835);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 700;
}
.featured-book-info h3 {
  margin: 8px 0 4px;
  font-size: clamp(1.1rem, 3vw, 1.4rem);
  color: #fff;
}
.featured-book-info p {
  color: #bbb;
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 16px;
  text-align: left;
  width: 100%;
}
.featured-book-info .langs {
  margin-top: 12px;
  font-size: 0.78rem;
  color: #888;
}
.featured-book-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.featured-book-actions a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(90deg, var(--rasta-red, #c62828), var(--rasta-gold, #fdd835), var(--rasta-green, #2e7d32));
  color: #041016;
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  font-size: 0.95rem;
  transition: transform 0.2s;
}
.featured-book-actions a:hover {
  transform: scale(1.05);
}

@media (max-width: 600px) {
  .vzestup-banner-content {
    padding: 20px 16px;
    gap: 16px;
    flex-direction: column;
    text-align: center;
  }
  .vzestup-banner-avatar {
    flex: 0 0 auto;
  }
  .vzestup-banner-avatar img {
    width: 70px;
    height: 70px;
  }
  .vzestup-banner-info {
    min-width: 0;
  }
  .vzestup-banner-info p {
    text-align: center;
    font-size: 0.85rem;
  }
  .vzestup-banner-cta span {
    padding: 10px 22px;
    font-size: 0.85rem;
  }

  .featured-book {
    padding: 20px 16px;
    gap: 16px;
    flex-direction: column;
    text-align: center;
  }
  .featured-book-cover {
    flex: 0 0 auto;
  }
  .featured-book-cover img {
    width: 120px;
  }
  .featured-book-info {
    min-width: 0;
  }
  .featured-book-info p {
    text-align: center;
  }
  .featured-book-actions {
    justify-content: center;
  }
}

/* === GLOBAL RESPONSIVE FIXES === */
img, video, canvas, iframe {
  max-width: 100%;
  height: auto;
}

@media (max-width: 768px) {
  .rasta-hero-inner,
  .rasta-section-inner,
  .rasta-container {
    max-width: 100%;
    padding-left: 16px;
    padding-right: 16px;
  }
}

@media (max-width: 480px) {
  .rasta-hero {
    min-height: auto;
    padding: clamp(40px, 10vh, 80px) 14px;
  }
}
