 [lang="ar"] .chronicle-node,
[lang="ar"] .node-content-update,
[lang="ar"] .node-features li,
[lang="ar"] .commitment-statement {
  text-align: right;
  direction: rtl;
}

[lang="en"] .chronicle-node,
[lang="fr"] .chronicle-node,
[lang="en"] .node-content-update,
[lang="fr"] .node-content-update,
[lang="en"] .node-features li,
[lang="fr"] .node-features li,
[lang="en"] .commitment-statement,
[lang="fr"] .commitment-statement {
  text-align: left;
  direction: ltr;
}

 [lang="en"] .chronicle-node,
[lang="fr"] .chronicle-node {
  padding-right: 0;
  padding-left: 60px;
}

[lang="en"] .node-orb,
[lang="fr"] .node-orb {
  right: auto;
  left: 10px;
}

[lang="en"] .node-connector,
[lang="fr"] .node-connector {
  right: auto;
  left: 20px;
}

[lang="en"] .node-title::after,
[lang="fr"] .node-title::after {
  right: auto;
  left: 0;
}

[lang="en"] .node-features li,
[lang="fr"] .node-features li {
  padding-right: 0;
  padding-left: 1.5rem;
}

[lang="en"] .node-features li::before,
[lang="fr"] .node-features li::before {
  right: auto;
  left: 0;
}

[lang="en"] .commitment-statement,
[lang="fr"] .commitment-statement {
  padding-right: 0;
  padding-left: 2rem;
}

[lang="en"] .statement-orb,
[lang="fr"] .statement-orb {
  right: auto;
  left: 0;
} 

.chronicle-timeline {
  max-width: 1000px;
  margin: 5rem auto;
  position: relative;
  padding: 0 1.5rem;
}

.chronicle-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  right: 20px;
  width: 2px;
  height: 100%;
  background: linear-gradient(to bottom, 
    transparent 0%, 
    var(--zenith-blood) 10%, 
    var(--zenith-blood) 90%, 
    transparent 100%);
  z-index: 1;
}

.chronicle-node {
  position: relative;
  margin-bottom: 3rem;
  padding-right: 60px;
}

.node-orb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--zenith-void);
  border: 3px solid var(--zenith-blood);
  position: absolute;
  right: 10px;
  top: 0;
  z-index: 2;
  animation: pulse 2s infinite;
}

.node-content-update {
  width: 100%;
  padding: 1.8rem;
  background: rgba(10, 10, 10, 0.8);
  border: 1px solid var(--zenith-blood);
  border-radius: 10px;
  backdrop-filter: blur(5px);
  box-shadow: 0 10px 25px rgba(255, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.node-content-update:hover {
  transform: translateY(-5px);
}

.node-date {
  font-size: 0.85rem;
  color: var(--zenith-blood);
  margin-bottom: 0.5rem;
  font-weight: 700;
  display: block;
}

.node-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--zenith-bone);
  position: relative;
  line-height: 1.4;
}

.node-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  right: 0;
  width: 50px;
  height: 2px;
  background: var(--zenith-blood);
}

.node-description {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--zenith-bone);
  opacity: 0.9;
  margin-bottom: 1.2rem;
}

.node-features {
  list-style: none;
  padding: 0;
  margin: 1.2rem 0 0;
}

.node-features li {
  position: relative;
  padding-right: 1.5rem;
  margin-bottom: 0.7rem;
  font-size: 0.92rem;
  line-height: 1.6;
}

.node-features li::before {
  content: '✧';
  position: absolute;
  right: 0;
  top: 0;
  color: var(--zenith-embers);
}

.node-connector {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 2px;
  height: calc(100% + 1rem);
  background: var(--zenith-blood);
  opacity: 0.5;
}

.chronicle-node:last-child .node-connector {
  display: none;
}
 
.commitment-container {
  max-width: 700px;
  margin: 3rem auto;
  padding: 1.8rem;
  background: rgba(10, 10, 10, 0.8);
  border: 1px solid var(--zenith-aqua);
  border-radius: 10px;
  backdrop-filter: blur(5px);
  box-shadow: 0 10px 25px rgba(78, 205, 196, 0.1);
}

.commitment-statement {
  position: relative;
  padding-right: 2rem;
  margin-bottom: 1.3rem;
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--zenith-bone);
}

.commitment-statement:last-child {
  margin-bottom: 0;
}

.statement-orb {
  position: absolute;
  right: 0;
  top: 0.6rem;
  width: 8px;
  height: 8px;
  background: var(--zenith-aqua);
  border-radius: 50%;
  filter: blur(1px);
  animation: orb-pulse 3s ease-in-out infinite alternate;
}

.updates-back {
  text-align: center;
  margin-top: 2rem;
  padding-bottom: 5rem;
}

@keyframes pulse {
  0% { transform: scale(0.95); opacity: 0.8; }
  50% { transform: scale(1.05); opacity: 1; }
  100% { transform: scale(0.95); opacity: 0.8; }
}

@keyframes orb-pulse {
  0% { opacity: 0.6; transform: scale(0.9); }
  50% { opacity: 1; transform: scale(1.1); }
  100% { opacity: 0.6; transform: scale(0.9); }
}
 
@media (min-width: 576px) {
  .chronicle-timeline {
    padding: 0 2rem;
  }
  
  .chronicle-node {
    padding-right: 80px;
  }
  
  .node-orb {
    right: 20px;
    width: 24px;
    height: 24px;
  }
  
  .node-content-update {
    padding: 2rem;
  }
  
  .node-title {
    font-size: 1.6rem;
  }
  
  .node-description {
    font-size: 1.1rem;
  }
  
  .commitment-statement {
    font-size: 1.25rem;
  }
}
 
@media (min-width: 992px) {
  .chronicle-timeline::before {
    right: 50%;
    transform: translateX(50%);
  }
  
  .chronicle-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-right: 0;
  }
  
  .node-orb {
    position: relative;
    right: auto;
    top: auto;
    margin-bottom: 1.5rem;
  }
  
  .node-content-update {
    max-width: 600px;
  }
  
  .node-connector {
    right: 50%;
    transform: translateX(50%);
  }
  
  .node-title::after {
    width: 60px;
  }
  
  .commitment-container {
    padding: 2.5rem;
  }
}
 
@media (min-width: 1200px) {
  .node-content-update {
    padding: 2.5rem;
  }
  
  .node-title {
    font-size: 1.8rem;
  }
  
  .node-description {
    font-size: 1.15rem;
  }
  
  .commitment-statement {
    font-size: 1.3rem;
  }
} 

.future-card {
  will-change: transform, opacity;
}
