@import url("https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;700;900&family=Rajdhani:wght@300;400;500;600;700&family=Russo+One&family=Saira+Condensed:wght@100;200;300;400;500;600;700;800;900&display=swap");

* {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: "Rajdhani", "Arial", sans-serif; /* Changed to more military/tech font */
  font-weight: 400;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  background-color: #0a0a0a;
  color: #e0e0e0;
  letter-spacing: 0.5px; /* Added for grittier feel */
}

a {
  text-decoration: none;
  transition: color 0.3s ease;
}

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

/* Header Styles */
header {
  display: flex;
  background: linear-gradient(135deg, #000000, #1a1a1a);
  color: #e0e0e0;
  padding: 15px 30px;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.8);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 2px solid #333;
}

.logo h1 {
  margin: 0;
  font-family: "Futura CU", Arial, sans-serif; /* Keep original */
  font-size: 2rem;
  font-weight: 100;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9);
  color: #fff;
}

/* Navigation Styles */
header nav ul {
  display: flex;
  list-style-type: none;
  padding: 0;
  margin: 0;
  gap: 10px;
}

header nav ul li {
  margin: 0;
}

header nav ul li a {
  display: block;
  padding: 12px 20px;
  color: #cccccc;
  border-radius: 25px;
  transition: all 0.3s ease;
  font-weight: 600; /* Increased weight */
  letter-spacing: 1px; /* More spacing for military feel */
  font-family: "Saira Condensed", sans-serif; /* Military-style condensed font */
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

header nav ul li a:hover {
  background-color: rgba(255, 107, 53, 0.2);
  color: #ff6b35;
  transform: translateY(-2px);
  border-color: #ff6b35;
}

.cta-button {
  background: linear-gradient(45deg, #ff6b35, #cc5530) !important;
  font-weight: bold !important;
  box-shadow: 0 4px 8px rgba(255, 107, 53, 0.4);
  border-color: #ff6b35 !important;
}

.cta-button:hover {
  background: linear-gradient(45deg, #cc5530, #994029) !important;
  transform: translateY(-2px) scale(1.05);
}

/* Main Content */
main {
  position: relative;
  padding: 0;
  background: #0a0a0a;
  z-index: 0;
}

/* Hero Section */
.hero-section {
  position: relative;
  width: 100%;
  padding: 60px 20px;
  text-align: left;
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;

  color: #e0e0e0;
}

.hero-content {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
  width: 100%;
  position: relative;
  z-index: 1;
  transition: opacity 0.5s ease;
}

.hero-content.hidden {
  opacity: 0;
  transition: opacity 0.5s ease;

  pointer-events: none;
}

.background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

#about {
  flex: 2;
  padding-right: 20px;
}

#about h2 {
  font-size: 3rem;
  margin-bottom: 20px;
  color: #e0e0e0;
  border-bottom: 3px solid #ff6b35;
  padding-bottom: 10px;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.9);
  font-family: "Russo One", sans-serif; /* Bold, industrial font */
  letter-spacing: 2px;
  text-transform: uppercase;
}

#about p {
  font-size: 1.2rem;
  line-height: 1.8;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.9);
  margin-bottom: 30px;
  color: #cccccc;
  font-family: "Rajdhani", sans-serif;
  font-weight: 500;
  letter-spacing: 0.8px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  margin-top: 30px;
}

#aside {
  flex: 1;
  text-align: center;
}

.image-container {
  position: relative;
  background: rgba(0, 0, 0, 0.6);
  padding: 20px;
  border-radius: 15px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 107, 53, 0.3);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.8);
}

.image-container img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.9);
  filter: brightness(0.9) contrast(1.1);
}

.image-overlay {
  margin-top: 15px;
}

.caption {
  font-size: 1.2rem;
  font-weight: bold;
  color: #ff6b35;
  text-transform: uppercase;
  letter-spacing: 2px; /* Increased spacing */
  margin: 0 0 5px 0;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.9);
  font-family: "Saira Condensed", sans-serif;
  font-weight: 800;
}

.subtitle {
  font-size: 1rem;
  color: #999999;
  margin: 0;
  font-family: "Rajdhani", sans-serif;
  font-weight: 400;
  letter-spacing: 0.8px;
}

/* Button Styles */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 25px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1.5px; /* Increased spacing */
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-size: 0.9rem;
  font-family: "Saira Condensed", sans-serif; /* Military condensed */
  font-weight: 700;
}

.btn-primary {
  background: linear-gradient(45deg, #ff6b35, #cc5530);
  color: #fff;
  box-shadow: 0 4px 8px rgba(255, 107, 53, 0.4);
}

.btn-primary:hover {
  background: linear-gradient(45deg, #cc5530, #994029);
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(255, 107, 53, 0.6);
}

.btn-secondary {
  background: transparent;
  color: #e0e0e0;
  border: 2px solid #666666;
}

.btn-secondary:hover {
  background: #666666;
  color: #e0e0e0;
  border-color: #999999;
}

.btn-outline {
  background: transparent;
  color: #cccccc;
  border: 2px solid #333333;
}

.btn-outline:hover {
  background: #333333;
  color: #e0e0e0;
  border-color: #ff6b35;
}

.btn-large {
  padding: 16px 32px;
  font-size: 1.1rem;
}

/* Section Styles */
section:not(.hero-section) {
  padding: 80px 0;
  background: #111111;
}

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

.section-header h2 {
  font-size: 2.5rem;
  color: #e0e0e0;
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
  font-family: "Russo One", sans-serif; /* Consistent with hero */
  letter-spacing: 2px;
  text-transform: uppercase;
}

.section-header h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: #ff6b35;
  box-shadow: 0 0 10px rgba(255, 107, 53, 0.5);
}

.section-subtitle {
  margin-top: 1em;
  font-size: 1.2rem;
  color: #999999;
  font-style: italic;
  font-family: "Orbitron", sans-serif; /* Tech/military font */
  font-weight: 300;
  letter-spacing: 1px;
}

/* Features Section */
.features-section {
  background: #0a0a0a;
  border-top: 1px solid #333333;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.feature-card {
  background: #1a1a1a;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.8);
  transition: transform 0.3s ease;
  border-top: 4px solid #ff6b35;
  border: 1px solid #333333;
}

.feature-card:hover {
  transform: translateY(-10px);
  border-color: #ff6b35;
  box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  filter: grayscale(50%);
}

.feature-card h3 {
  font-size: 1.3rem;
  color: #e0e0e0;
  margin-bottom: 15px;
  font-family: "Orbitron", sans-serif; /* Tech font */
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.feature-card p {
  color: #cccccc;
  line-height: 1.6;
  font-family: "Rajdhani", sans-serif;
  font-weight: 400;
  letter-spacing: 0.5px;
}

/* Update feature list */
.feature-list {
  list-style: none;
  padding: 0;
}

.feature-list li {
  background: #1a1a1a;
  margin: 15px 0;
  padding: 20px;
  border-radius: 10px;
  border-left: 4px solid #ff6b35;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.8);
  border: 1px solid #333333;
  color: #cccccc;
  font-family: "Rajdhani", sans-serif;
  font-weight: 500;
  letter-spacing: 0.8px;
}

.feature-list li:hover {
  transform: translateX(10px);
  box-shadow: 0 4px 10px rgba(255, 107, 53, 0.3);
  border-color: #ff6b35;
}

.feature-list li::before {
  content: "▶";
  color: #ff6b35;
  font-weight: bold;
  margin-right: 10px;
}

/* Gameplay Section */
.gameplay-content {
  display: flex;
  align-items: center;
  gap: 50px;
}

.gameplay-text {
  flex: 1;
}

.gameplay-text p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #cccccc;
  margin-bottom: 30px;
  text-align: center;
  font-family: "Rajdhani", sans-serif;
  font-weight: 500;
  letter-spacing: 0.8px;
}

.gameplay-stats {
  display: flex;
  gap: 40px;
  justify-content: center;
}

.stat {
  text-align: center;
  background: #1a1a1a;
  padding: 20px;
  border-radius: 10px;
  border: 1px solid #333333;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.6);
  transition: transform 0.3s ease;
}

.stat:hover {
  transform: translateY(-10px);
  border-color: #ff6b35;
  box-shadow: 0 8px 20px rgba(255, 107, 53, 0.2);
}

.stat-number {
  display: block;
  font-size: 3rem;
  font-weight: bold;
  color: #ff6b35;
  line-height: 1;
  text-shadow: 0 0 10px rgba(255, 107, 53, 0.5);
  font-family: "Orbitron", sans-serif; /* Tech/digital font for numbers */
  font-weight: 900;
}

.stat-label {
  display: block;
  font-size: 1.1rem;
  color: #999999;
  text-transform: uppercase;
  letter-spacing: 1.5px; /* Increased spacing */
  margin-top: 5px;
  font-family: "Saira Condensed", sans-serif;
  font-weight: 600;
}

/* Community Section */
.community-section {
  background: #0a0a0a;
  border-top: 1px solid #333333;
}

.community-content p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #cccccc;
  text-align: center;
  margin-bottom: 50px;
}

.community-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.highlight {
  background: #1a1a1a;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.8);
  border-top: 4px solid #cc5530;
  border: 1px solid #333333;
  transition: all 0.3s ease;
}

.highlight:hover {
  border-color: #ff6b35;
  box-shadow: 0 8px 20px rgba(255, 107, 53, 0.2);
  transform: translateY(-10px);
}

.highlight h4 {
  font-size: 1.3rem;
  color: #e0e0e0;
  margin-bottom: 15px;
  font-family: "Orbitron", sans-serif;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.highlight p {
  color: #cccccc;
  line-height: 1.6;
  margin: 0;
  font-family: "Rajdhani", sans-serif;
  font-weight: 400;
  letter-spacing: 0.5px;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, #000000, #1a1a1a);
  color: #e0e0e0;
  text-align: center;
  border-top: 2px solid #333333;
}

.cta-content h2 {
  font-size: 3rem;
  margin-bottom: 20px;
  color: #e0e0e0;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.9);
  font-family: "Russo One", sans-serif;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.cta-content p {
  font-size: 1.3rem;
  margin-bottom: 40px;
  color: #999999;
  font-family: "Rajdhani", sans-serif;
  font-weight: 500;
  letter-spacing: 0.8px;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

/* Footer Styles */
footer {
  background: linear-gradient(135deg, #000000, #0a0a0a);
  color: #cccccc;
  padding: 60px 0 0 0;
  border-top: 2px solid #333333;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px 40px 20px;
  text-align: center;
}

.footer-section h3 {
  color: #ff6b35;
  font-size: 1.5rem;
  margin-bottom: 20px;
  border-bottom: 2px solid #ff6b35;
  padding-bottom: 10px;
  text-shadow: 0 0 10px rgba(255, 107, 53, 0.3);
  font-family: "Orbitron", sans-serif;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.footer-section p {
  color: #999999;
  line-height: 1.6;
  margin-bottom: 20px;
  font-family: "Rajdhani", sans-serif;
  font-weight: 400;
  letter-spacing: 0.5px;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin: 10px 0;
}

.footer-section ul li a {
  color: #999999;
  transition: color 0.3s ease;
  display: inline-block;
  padding: 5px 0;
  font-family: "Rajdhani", sans-serif;
  font-weight: 500;
  letter-spacing: 0.8px;
}

.footer-section ul li a:hover {
  color: #ff6b35;
  transform: translateX(5px);
  text-shadow: 0 0 5px rgba(255, 107, 53, 0.5);
}

.social-links {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.social-link {
  background: rgba(255, 255, 255, 0.05);
  padding: 10px 15px;
  border-radius: 20px;
  color: #999999;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  border: 1px solid #333333;
}

.social-link:hover {
  background: #ff6b35;
  color: #000;
  transform: translateY(-2px);
  border-color: #ff6b35;
  box-shadow: 0 4px 8px rgba(255, 107, 53, 0.4);
}

.footer-bottom {
  background: rgba(0, 0, 0, 0.8);
  text-align: center;
  padding: 20px;
  border-top: 1px solid #333333;
}

.footer-bottom p {
  margin: 0;
  color: #666666;
  font-size: 0.9rem;
}

@media (max-width: 1135px) {
  header {
    flex-direction: column;
    padding: 10px 20px;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  /* Header Mobile */
  header {
    flex-direction: column;
    padding: 15px 20px;
  }

  .logo h1 {
    font-size: 1.5rem;
    margin-bottom: 10px;
  }

  header nav ul {
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-top: 10px;
  }

  header nav ul li a {
    padding: 8px 15px;
    font-size: 0.85rem;
  }

  /* Hero Section Mobile */
  .hero-section {
    height: 130vh;
    padding: 30px 15px;
  }

  .hero-content {
    flex-direction: column;
    gap: 25px;
    text-align: center;
    margin-top: -10em;
  }

  #about,
  #aside {
    flex: 1;
    width: 100%;
    padding-right: 0;
  }

  #aside {
    width: 70% !important;
    padding-left: 0;
    align-items: center;
    margin: 0 auto;
  }

  #about h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
  }

  #about p {
    font-size: 1.1rem;
    margin-bottom: 25px;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }

  .hero-buttons .btn {
    width: 80%;
    max-width: 280px;
    text-align: center;
    padding: 14px 20px;
  }

  .image-container {
    padding: 15px;
    margin-top: 20px;
  }

  /* Container Mobile */
  .container {
    padding: 0 15px;
  }

  /* Sections Mobile */
  section:not(.hero-section) {
    padding: 50px 0;
  }

  .section-header {
    margin-bottom: 35px;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .section-subtitle {
    font-size: 1.1rem;
    margin-top: 0.8rem;
  }

  /* Features Mobile */
  .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 35px;
  }

  .feature-card {
    padding: 25px 20px;
  }

  .feature-card h3 {
    font-size: 1.2rem;
  }

  .feature-icon {
    font-size: 2.5rem;
  }

  /* Gameplay Mobile */
  .gameplay-content {
    flex-direction: column;
    gap: 30px;
  }

  .gameplay-text p {
    font-size: 1.1rem;
    text-align: center;
  }

  .gameplay-stats {
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
  }

  .stat {
    flex: 1;
    min-width: 120px;
    padding: 15px 10px;
  }

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

  .stat-label {
    font-size: 1rem;
  }

  /* Community Mobile */
  .community-highlights {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .highlight {
    padding: 25px 20px;
  }

  .community-content p {
    font-size: 1.1rem;
    margin-bottom: 35px;
  }

  /* CTA Mobile */
  .cta-content h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
  }

  .cta-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    padding: 0 10px;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }

  .btn-large {
    width: 85%;
    max-width: 300px;
    padding: 14px 25px;
    font-size: 1rem;
  }

  .footer-section h3 {
    color: #ff6b35;
    font-size: 1.5rem;
    margin-bottom: 20px;
    border-bottom: 0px solid #ff6b35;
    padding-bottom: 10px;
    text-shadow: 0 0 10px rgba(255, 107, 53, 0.3);
  }

  /* Footer Mobile */
  .footer-content {
    grid-template-columns: 1fr;
    gap: 25px;
    text-align: center;
    padding: 0 15px 30px 15px;
  }

  .footer-section h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
  }

  .footer-section ul li {
    margin: 8px 0;
  }

  .footer-section ul li a {
    font-size: 0.95rem;
  }

  .social-links {
    justify-content: center;
    gap: 10px;
  }

  .social-link {
    padding: 8px 12px;
    font-size: 0.85rem;
  }

  .footer-bottom {
    padding: 15px;
  }

  .footer-bottom p {
    font-size: 0.85rem;
  }
}

/* Small Mobile (480px and below) */
@media (max-width: 480px) {
  .hero-content {
    height: 130vh;
    margin-top: 2em;
  }
  .hero-section {
  }
  .logo h1 {
    font-size: 1.3rem;
  }

  header nav ul li a {
    padding: 6px 12px;
    font-size: 0.8rem;
  }

  #about h2 {
    font-size: 1.8rem;
  }

  #about p {
    font-size: 1rem;
  }

  .section-header h2 {
    font-size: 1.7rem;
  }

  .feature-card {
    padding: 20px 15px;
  }

  .stat {
    min-width: 100px;
    padding: 12px 8px;
  }

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

  .cta-content h2 {
    font-size: 1.8rem;
  }

  .btn-large {
    padding: 12px 20px;
    font-size: 0.95rem;
  }
  #aside {
    margin-top: -15em;
  }
}

/* News/Articles Section */
.news-section {
  background: #0a0a0a;
  border-top: 1px solid #333333;
}

.articles-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 40px;
}

.news-article {
  background: #1a1a1a;
  border-radius: 15px;
  overflow: hidden;
  border: 1px solid #333333;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.8);
  transition: all 0.3s ease;
  position: relative;
}

.news-article:hover {
  transform: translateY(-10px);
  border-color: #ff6b35;
  box-shadow: 0 15px 30px rgba(255, 107, 53, 0.2);
}

.news-article.featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 400px;
}

.article-image {
  position: relative;
  overflow: hidden;
  height: 250px;
}

.featured .article-image {
  height: 100%;
}

.article-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  filter: brightness(0.8) contrast(1.1);
}

.news-article:hover .article-image img {
  transform: scale(1.05);
}

.article-category {
  position: absolute;
  top: 15px;
  left: 15px;
  background: linear-gradient(45deg, #ff6b35, #cc5530);
  color: #fff;
  padding: 5px 12px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px; /* Increased spacing */
  z-index: 2;
  font-family: "Saira Condensed", sans-serif;
  font-weight: 800;
}

.article-content {
  padding: 25px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.article-header {
  margin-bottom: 15px;
}

.article-header h3 {
  color: #e0e0e0;
  font-size: 1.4rem;
  margin: 0 0 10px 0;
  line-height: 1.3;
  transition: color 0.3s ease;
  font-family: "Orbitron", sans-serif; /* Tech font for article titles */
  font-weight: 700;
  letter-spacing: 1px;
}

.news-article:hover .article-header h3 {
  color: #ff6b35;
}

.featured .article-header h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.article-meta {
  display: flex;
  gap: 15px;
  font-size: 0.85rem;
  color: #999999;
  margin-bottom: 15px;
}

.article-meta time {
  color: #ff6b35;
  font-weight: 500;
  font-family: "Saira Condensed", sans-serif;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.article-meta .author {
  color: #cccccc;
  font-family: "Rajdhani", sans-serif;
  font-weight: 500;
  letter-spacing: 0.8px;
}

.article-content p {
  color: #cccccc;
  line-height: 1.6;
  margin: 0 0 20px 0;
  flex-grow: 1;
  font-family: "Rajdhani", sans-serif;
  font-weight: 400;
  letter-spacing: 0.5px;
}

.featured .article-content p {
  font-size: 1.1rem;
  line-height: 1.7;
}

.read-more {
  display: inline-block;
  color: #ff6b35;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px; /* Increased spacing */
  font-size: 0.9rem;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
  margin-top: auto;
  font-family: "Saira Condensed", sans-serif;
  font-weight: 700;
}

/* Update captions and subtitles */
.caption {
  font-size: 1.2rem;
  font-weight: bold;
  color: #ff6b35;
  text-transform: uppercase;
  letter-spacing: 2px; /* Increased spacing */
  margin: 0 0 5px 0;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.9);
  font-family: "Saira Condensed", sans-serif;
  font-weight: 800;
}

.subtitle {
  font-size: 1rem;
  color: #999999;
  margin: 0;
  font-family: "Rajdhani", sans-serif;
  font-weight: 400;
  letter-spacing: 0.8px;
}

/* ...existing responsive code remains the same... */
