* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  -webkit-user-select: none; /* Safari */
  -moz-user-select: none; /* Firefox */
  -ms-user-select: none; /* IE/Edge */
  user-select: none; /* Standard syntax */
  height: 100%;
  font-family: 'Poppins', sans-serif;
  background-color: #0a0a0a;
  color: #ffffff;
  overflow-x: hidden;
  line-height: 1.6;
  position: relative;
}

/* --- Background Enhancements --- */
.background-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 10% 20%, rgba(80, 20, 40, 0.1) 0%, rgba(10, 10, 10, 0) 20%),
              radial-gradient(circle at 90% 80%, rgba(40, 20, 80, 0.1) 0%, rgba(10, 10, 10, 0) 20%);
  z-index: -2;
}

/* --- Floating Bubbles with Shimmer --- */
.bubbles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
}

.bubble {
  position: absolute;
  bottom: -100px;
  width: var(--size);
  height: var(--size);
  background: radial-gradient(circle at 30% 30%, rgba(255, 200, 200, 0.8), rgba(255, 150, 150, 0.1));
  border-radius: 50%;
  filter: blur(1px);
  animation: floatBubble var(--duration) infinite ease-in-out;
  animation-delay: var(--delay);
  opacity: 0.5;
  box-shadow: 0 0 15px rgba(255, 150, 150, 0.4);
}



@keyframes floatBubble {
  0% {
    transform: translateY(0) translateX(0) rotate(0deg) scale(1);
    opacity: 0;
  }
  10% {
    opacity: 0.5;
  }
  90% {
    opacity: 0.3;
  }
  100% {
    transform: translateY(-100vh) translateX(calc(var(--left) * 1vw)) rotate(360deg) scale(0.8);
    opacity: 0;
  }
}



/* --- Navigation --- */
.main-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.2rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(15, 10, 20, 0.85);
  backdrop-filter: blur(12px);
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 200, 200, 0.1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.nav-brand {
  font-family: 'Cinzel', serif;
  font-weight: 700;
  font-size: 1.4rem;
  background: linear-gradient(135deg, #ff758c, #ff8a65);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 1px;
  text-shadow: 0 0 8px rgba(255, 117, 140, 0.3);
}

.nav-links a {
  color: #ccc;
  text-decoration: none;
  margin-left: 1.8rem;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  font-size: 1.05rem;
}

.nav-links a:hover,
.nav-links a.active {
  color: #ff8a65;
  text-shadow: 0 0 8px rgba(255, 138, 101, 0.5);
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #ff758c, #ff8a65);
  border-radius: 2px;
}

/* --- Shared Containers --- */
.container {
  background: url('/assets/bg.png') no-repeat center center/cover;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-attachment: fixed;
  padding-top: 80px;
}

/* --- Buttons --- */
.button {
  display: inline-block;
  background: linear-gradient(135deg, #ff758c, #e34234);
  color: white;
  padding: 0.9rem 2.2rem;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(227, 66, 52, 0.4);
  border: none;
  cursor: pointer;
  font-size: 1.05rem;
  margin: 0.5rem;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transform: scale(1);
}

.button:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(227, 66, 52, 0.6);
}

.button.large {
  padding: 1.1rem 2.7rem;
  font-size: 1.15rem;
  background: linear-gradient(135deg, #ff758c, #e34234);
}

.button.large:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(227, 66, 52, 0.6);
}

/* --- Animations for Elements --- */
@keyframes popInLoad {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  70% {
    opacity: 1;
    transform: scale(1.05);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.button.animated-element {
  opacity: 0;
  animation: popInLoad 0.7s forwards ease-out;
}

.overlay:not(.page-overlay) .button.animated-element {
  animation-delay: 1.7s;
}

.download-section .button.large {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  margin: 0.8rem 0;
  background: linear-gradient(135deg, #ff758c, #e34234);
  color: white;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  animation: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.download-section .button.large:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(227, 66, 52, 0.6);
}

.animated-element:not(.button) {
  opacity: 0;
  animation: fadeInSlideUp 0.8s forwards;
}

@keyframes fadeInSlideUp {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --- Home Page Overlay Enhancements --- */
.overlay {
  background: linear-gradient(145deg, rgba(25, 15, 35, 0.9), rgba(15, 10, 25, 0.95));
  backdrop-filter: blur(15px);
  padding: 2.8rem 2.2rem;
  width: 92%;
  text-align: center;
  box-shadow:
    0 15px 40px rgba(0, 0, 0, 0.6),
    inset 0 0 30px rgba(255, 200, 200, 0.08);
  border-radius: 30px;
  border: 1px solid rgba(255, 200, 200, 0.15);
  position: relative;
  overflow: hidden;
  z-index: 10;
}

.overlay:not(.page-overlay) {
  max-width: 520px;
}

.page-overlay {
  max-width: 600px;
  padding: 2.5rem 2rem;
}

/* --- Logo Animation --- */
.logo-placeholder {
  margin-top: 1rem;
  margin-bottom: 1rem;
  transform: scale(1.4);
  overflow: visible;
}

.logo {
  max-width: 280px;
  height: auto;
  opacity: 0.95;
  filter: drop-shadow(0 3px 8px rgba(0, 0, 0, 0.7));
  transform: scale(0.85);
  animation: float 5s ease-in-out infinite, logoPulseSharp 4s ease-in-out infinite;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

@keyframes logoPulseSharp {
  from {
    transform: scale(0.85);
    filter: drop-shadow(0 3px 8px rgba(0, 0, 0, 0.7));
  }
  50% {
    transform: scale(0.88);
    filter: drop-shadow(0 5px 12px rgba(255, 138, 101, 0.85));
  }
  to {
    transform: scale(0.85);
    filter: drop-shadow(0 3px 8px rgba(0, 0, 0, 0.7));
  }
}

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

.animated-element {
  opacity: 0;
  animation: fadeInSlideUp 0.8s forwards;
}

/* --- Page Container --- */
.page-container {
  max-width: 1200px;
  margin: 80px auto 40px;
  padding: 0 20px;
  animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --- Progress Page Specific Styles --- */
.page-header {
  text-align: center;
  margin-bottom: 3rem;
}

.page-header h1 {
  font-family: 'Cinzel', serif;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, #ff758c, #ff8a65);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.page-header p {
  font-size: 1.1rem;
  color: #bbb;
}

.progress-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin: 2rem 0 3rem 0;
}

.progress-card {
  background: rgba(20, 20, 30, 0.7);
  backdrop-filter: blur(10px);
  padding: 1.8rem 1.5rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.progress-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.progress-card h3 {
  font-size: 1.4rem;
  margin-bottom: 1.2rem;
  color: #fff;
}

.meter {
  height: 12px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 1.2rem;
}

.meter-fill {
  height: 100%;
  border-radius: 10px;
  transition: width 1.5s ease-out;
}

.progress-card p {
   font-size: 1.05rem;
   color: #ccc;
}

/* --- Development Timeline Styles (Fixed Alignment) --- */
.roadmap-section h2 {
  font-family: 'Cinzel', serif;
  font-size: 2rem;
  margin: 3rem 0 2rem 0;
  color: #ff8a65;
  text-align: center;
}

.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto 3rem;
  padding: 0 40px; /* Increased padding to give more space */
}

/* Central line */
.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(to bottom, rgba(255, 138, 101, 0.5), rgba(255, 117, 140, 0.3), rgba(255, 138, 101, 0.5));
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}

.timeline-item {
  position: relative;
  margin-bottom: 50px; /* Increased margin for better separation */
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  min-height: 100px; /* Increased minimum height */
}


/* --- Discord Page Specific Styles (Ensure consistency) --- */

/* Make sure the page header inside the container looks good */
/* (This might already exist, but ensuring font is consistent) */
.page-header h1 {
  font-family: 'Cinzel', serif; /* Use Cinzel for the main title */
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, #ff758c, #ff8a65);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.5px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* --- Discord Section (Updated for better spacing/style) --- */
.discord-section {
  display: grid;
  grid-template-columns: 1fr 1fr; /* Two equal columns */
  gap: 2.5rem; /* Space between columns */
  align-items: center;
  margin: 3rem 0; /* Vertical margin */
}

.discord-preview {
  /* Styles for the image container */
  display: flex;
  justify-content: center;
  align-items: center;
}

.discord-img {
  width: 100%;
  transform: scale(0.8);
  max-width: 100%; /* Ensure it doesn't overflow */
  /* border-radius: 16px; */
  /* box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4); */
  transition: transform 0.3s ease;
  /* border: 1px solid rgba(255, 255, 255, 0.1); */
}

.discord-img:hover {
  transform: scale(1.02);
}

.discord-info h2 {
  font-family: 'Cinzel', serif; /* Use Cinzel */
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: #ff8a65; /* Accent color */
}

.discord-info ul {
  list-style: none;
  margin-bottom: 2rem;
  padding: 0;
}

.discord-info li {
  padding: 0.6rem 0;
  padding-left: 1.8rem; /* Space for custom bullet */
  position: relative;
  font-size: 1.05rem; /* Slightly larger text */
  color: #ccc;
}

/* Custom bullet point */
.discord-info li:before {
  content: '✓'; /* Simple checkmark */
  position: absolute;
  left: 0;
  color: #4caf50; /* Green color for checkmark */
  font-weight: bold;
}

.invite-cta {
  text-align: center; /* Centers the button block */
  margin-top: 1.5rem; /* Add some space above the button */
  width: 100%; /* Ensure it takes the full width of its grid cell for consistent centering */
  display: flex; /* Use flexbox for robust centering */
  justify-content: center; /* Horizontally center content (the button) */
  align-items: center; /* Vertically center content (if needed, though not strictly necessary here) */
}

/* --- Rules Card (Updated for better spacing/style) --- */
.rules-card {
  margin: 3rem auto; /* Center and add vertical space */
  max-width: 800px; /* Constrain width */
  background: rgba(20, 20, 30, 0.7);
  backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.rules-card h3 {
  font-family: 'Cinzel', serif; /* Use Cinzel */
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
  color: #ff8a65;
  text-align: center; /* Center the title */
}

.rules-card ol {
  list-style-type: decimal;
  padding-left: 1.5rem; /* Indent the list */
  color: #ccc;
}

.rules-card li {
  margin-bottom: 0.8rem; /* Space between items */
  font-size: 1.05rem; /* Slightly larger text */
  padding-left: 0.5rem; /* Small padding */
}

/* --- Animation Delays for Discord Page Elements --- */
/* Ensure elements animate in sequence */
.page-container > .page-header { animation-delay: 0.2s; }
.page-container > .discord-section { animation-delay: 0.5s; }
.page-container > .rules-card { animation-delay: 1.0s; }

/* Delays for items inside the Discord section */
.discord-section > .discord-preview { animation-delay: 0.7s; }
.discord-section > .discord-info { animation-delay: 0.9s; }

.discord-info li:nth-child(1) { animation-delay: 1.1s; }
.discord-info li:nth-child(2) { animation-delay: 1.3s; }
.discord-info li:nth-child(3) { animation-delay: 1.5s; }
.discord-info li:nth-child(4) { animation-delay: 1.7s; }

.discord-info .invite-cta { animation-delay: 1.9s; }

.rules-card li:nth-child(1) { animation-delay: 1.2s; }
.rules-card li:nth-child(2) { animation-delay: 1.4s; }
.rules-card li:nth-child(3) { animation-delay: 1.6s; }
.rules-card li:nth-child(4) { animation-delay: 1.8s; }

/* --- End Discord Page Specific Styles --- */


/* --- Mobile Responsive Updates (for Discord page) --- */
@media (max-width: 768px) {
  .discord-section {
    grid-template-columns: 1fr; /* Stack columns on mobile */
    text-align: center; /* Center text */
    gap: 1.5rem; /* Reduce gap */
  }

  .discord-info ul {
    text-align: left; /* Re-align list items left on mobile */
    padding-left: 1.8rem; /* Add padding for bullets */
  }

  .rules-card {
    padding: 1.5rem; /* Reduce padding */
  }
}
/* --- End Mobile Responsive Updates --- */

/* Date */
.timeline-date {
  /* Calculate width: 50% minus padding/margin */
  /* Total space for date + content is 50% of container width */
  width: calc(50% - 50px); /* 50% minus 50px (20px dot width + 30px gap) */
  padding: 0 15px;
  font-weight: 600;
  color: #ffaa90;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  height: 100%;
  box-sizing: border-box; /* Include padding in width calculation */
}

/* Dot */
.timeline-dot {
  position: absolute;
  width: 24px; /* Slightly larger dot */
  height: 24px;
  background: #ff758c;
  border: 4px solid #0a0a0a;
  border-radius: 50%;
  z-index: 1;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 0 4px rgba(255, 117, 140, 0.5);
  flex-shrink: 0;
}

/* Content Box */
.timeline-content {
  /* Calculate width: 50% minus padding/margin */
  width: calc(50% - 50px); /* 50% minus 50px (20px dot width + 30px gap) */
  background: rgba(20, 20, 30, 0.7);
  backdrop-filter: blur(10px);
  padding: 1.2rem 1.5rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  text-align: left;
  display: flex;
  align-items: center;
  height: 100%;
  box-sizing: border-box; /* Include padding in width calculation */
}

/* --- Specific positioning for Odd (Left) Items --- */
.timeline-item:nth-child(odd) {
  flex-direction: row;
}
.timeline-item:nth-child(odd) .timeline-date {
  text-align: right;
  justify-content: flex-end;
  padding-right: 25px; /* Add padding between date and dot */
}
.timeline-item:nth-child(odd) .timeline-content {
  margin-left: 50px; /* Push content away from the center line (24px dot width + 26px gap) */
  padding-left: 25px; /* Add padding inside the content box */
}

/* --- Specific positioning for Even (Right) Items --- */
.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
}
.timeline-item:nth-child(even) .timeline-date {
  text-align: left;
  justify-content: flex-start;
  padding-left: 25px; /* Add padding between date and dot */
}
.timeline-item:nth-child(even) .timeline-content {
  margin-right: 50px; /* Push content away from the center line (24px dot width + 26px gap) */
  padding-right: 25px; /* Add padding inside the content box */
}

/* Text inside content */
.timeline-content p {
  margin: 0;
  color: #ccc;
  font-size: 1.05rem;
  font-weight: 500;
}

/* Improve responsiveness for smaller screens */
@media (max-width: 768px) {
  .timeline {
    padding: 0 20px; /* Adjust padding for mobile */
  }

  .timeline-item {
    flex-direction: column !important;
    text-align: center;
    min-height: auto;
  }

  .timeline-date,
  .timeline-content {
    width: 100%; /* Full width on mobile */
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding: 10px 0;
  }

  .timeline-date {
    order: 1;
    text-align: center !important;
    justify-content: center !important;
    padding: 5px 0 !important; /* Reduce padding */
  }

  .timeline-dot {
    order: 2;
    margin: 15px 0; /* Increase vertical space */
  }

  .timeline-content {
    order: 3;
    text-align: center !important;
    margin-bottom: 30px; /* Increase space between items */
    padding: 15px !important; /* Ensure padding inside content */
  }
}
/* --- End Development Timeline Styles --- */
/* Improve responsiveness for smaller screens */
@media (max-width: 768px) {
  .timeline {
    padding: 0 15px;
  }

  .timeline-item {
    flex-direction: column !important; /* Force vertical stacking */
    text-align: center;
    min-height: auto;
  }

  .timeline-date,
  .timeline-content {
    width: calc(100% - 40px);
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding: 10px 0;
  }

  .timeline-date {
    order: 1;
    text-align: center !important;
    justify-content: center !important;
  }

  .timeline-dot {
    order: 2;
    margin: 10px 0;
  }

  .timeline-content {
    order: 3;
    text-align: center !important;
    margin-bottom: 20px;
  }
}
/* --- End Development Timeline Styles --- */


/* --- Animation Delays for Progress Page Elements --- */
.page-container > .page-header { animation-delay: 0.2s; }
.page-container > .progress-grid { animation-delay: 0.5s; }
.page-container > .roadmap-section { animation-delay: 1.2s; }

.progress-grid > .progress-card:nth-child(1) { animation-delay: 0.7s; }
.progress-grid > .progress-card:nth-child(2) { animation-delay: 0.9s; }
.progress-grid > .progress-card:nth-child(3) { animation-delay: 1.1s; }
.progress-grid > .progress-card:nth-child(4) { animation-delay: 1.3s; }

.roadmap-section .timeline-item:nth-child(1) { animation-delay: 1.4s; }
.roadmap-section .timeline-item:nth-child(2) { animation-delay: 1.6s; }
.roadmap-section .timeline-item:nth-child(3) { animation-delay: 1.8s; }
.roadmap-section .timeline-item:nth-child(4) { animation-delay: 2.0s; }

.overlay:not(.page-overlay) > :nth-child(1) { animation-delay: 0.2s; }
.overlay:not(.page-overlay) > :nth-child(2) { animation-delay: 0.5s; }
.overlay:not(.page-overlay) > :nth-child(3) { animation-delay: 0.8s; }
.overlay:not(.page-overlay) > :nth-child(4) { animation-delay: 1.1s; }
.overlay:not(.page-overlay) > :nth-child(5) { animation-delay: 1.4s; }
.overlay:not(.page-overlay) > :nth-child(6) { animation-delay: 1.7s; }

/* --- Text Styles --- */
h1 {
  font-family: 'Cinzel', serif;
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  background: linear-gradient(135deg, #ff758c, #ff8a65);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.5px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.page-overlay h1 {
  font-size: 2.4rem;
  margin-bottom: 0.8rem;
}

.subtitle {
  font-size: 1.05rem;
  margin-bottom: 1rem;
  color: #d8d8d8;
  line-height: 1.6;
  font-weight: 400;
}

.page-overlay .subtitle {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.release-date {
  margin: 1rem 0;
}

.release-date p {
  font-size: 1.15rem;
  color: #ffffff;
  font-weight: 500;
}

.release-date span {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: #ff8a65;
  margin-top: 0.4rem;
  letter-spacing: -0.5px;
  text-shadow: 0 0 8px rgba(255, 138, 101, 0.3);
}

.launch-message {
  font-size: 1.1rem;
  margin: 0.8rem 0 1.2rem 0;
  color: #e8e8e8;
  font-weight: 500;
}

.button-group {
  margin: 1.2rem 0;
}

/* --- Footer --- */
.global-footer {
  text-align: center;
  padding: 2rem;
  font-size: 0.85rem;
  color: #777;
  letter-spacing: 0.5px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  margin-top: 2rem;
  background: rgba(10, 5, 15, 0.7);
  backdrop-filter: blur(5px);
}

/* --- Download Page Specific Styles --- */
.download-section {
  margin: 2rem 0;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(255, 200, 200, 0.1);
}

.download-section h2 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  color: #ff8a65;
}

.download-section p {
  margin-bottom: 1.2rem;
  color: #d0d0d0;
}

.download-section .button.large {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  margin: 0.8rem 0;
  background: linear-gradient(135deg, #ff758c, #e34234);
  color: white;
  border: none;
  border-radius: 50px;
  cursor: pointer;
}

.file-info {
  font-size: 0.9rem;
  color: #aaa;
  font-style: italic;
}

.notes-section {
  margin: 2rem 0;
  text-align: left;
}

.notes-section h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: #ff8a65;
}

.notes-section ul {
  list-style-type: disc;
  padding-left: 1.5rem;
  color: #ccc;
}

.notes-section li {
  margin-bottom: 0.6rem;
}

.support-message {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.95rem;
  color: #b8b8b8;
}

.support-message a {
  color: #ff8a65;
  text-decoration: none;
  transition: color 0.3s ease;
}

.support-message a:hover {
  color: #ffaa90;
  text-shadow: 0 0 8px rgba(255, 138, 101, 0.5);
}




/* --- Mobile Responsive --- */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .overlay {
    max-width: 90%;
    padding: 2.2rem 1.8rem;
  }

  .page-overlay {
    max-width: 90%;
    padding: 2rem 1.5rem;
  }

  .page-overlay h1 {
    font-size: 2.1rem;
  }

  .download-section .button.large {
    width: 100%;
    padding: 1rem;
    font-size: 1.05rem;
  }

  h1 {
    font-size: 2.2rem;
  }

  .page-overlay h1 {
    font-size: 2.1rem;
  }

  .logo {
    max-width: 180px;
  }
}

@media (max-width: 600px) {
  .container {
    background: url('/assets/bg_mobile.png') no-repeat center top/cover;
  }

  .logo {
    max-width: 160px;
  }

  h1 {
    font-size: 2rem;
  }

  .page-overlay h1 {
    font-size: 1.9rem;
  }

  .subtitle {
    font-size: 1rem;
  }

  .page-overlay .subtitle {
    font-size: 1rem;
  }

  .release-date span {
    font-size: 1.35rem;
  }

  .download-section h2 {
    font-size: 1.4rem;
  }

  .notes-section h3 {
    font-size: 1.2rem;
  }
}

/* --- Revamped Download Page Styles --- */
/* Download Options Grid - Force one line */
.download-options-grid {
  display: grid;
  /* --- Change: Force 3 columns on one line --- */
  grid-template-columns: repeat(3, 1fr); /* Always 3 columns */
  gap: 2.5rem;
  margin: 3rem 0 4rem 0;
}

/* Individual Download Option Card */
.download-option-card {
  background: rgba(20, 20, 30, 0.7);
  backdrop-filter: blur(10px);
  padding: 2.2rem 2rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  /* --- Add: Prevent cards from getting too narrow --- */
  min-width: 0; /* Allows card to shrink below content size if needed */
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.download-option-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.download-option-card h3 {
  font-family: 'Cinzel', serif;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #ff8a65;
}

.download-option-card p {
  font-size: 1rem;
  color: #ccc;
  margin-bottom: 1.2rem;
  flex-grow: 1;
}

.download-option-card .button.large {
  padding: 0.9rem 1.8rem;
  font-size: 1.05rem;
  margin: 0.7rem 0;
  background: linear-gradient(135deg, #ff758c, #e34234);
  color: white;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  width: 100%;
  box-sizing: border-box;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.download-option-card .button.large:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 20px rgba(227, 66, 52, 0.6);
}

.download-option-card .file-info {
  font-size: 0.85rem;
  color: #aaa;
  font-style: italic;
  margin-top: 0.4rem;
}

.requirements-section,
.notes-section {
  margin: 3rem 0;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(255, 200, 200, 0.1);
}

.requirements-section h3,
.notes-section h3 {
  font-family: 'Cinzel', serif;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: #ff8a65;
  text-align: center;
}

.requirements-section ul,
.notes-section ul {
  list-style-type: disc;
  padding-left: 1.8rem;
  color: #ccc;
}

.requirements-section li,
.notes-section li {
  margin-bottom: 0.8rem;
  font-size: 1rem;
}

.support-message {
   margin: 2.5rem 0 2rem 0;
}
