.header-main {
  font-family: 'Hammersmith One', sans-serif;
}

.overlay-red {
  background: rgba(210, 47, 37, 0.9);
}

.section-header {
  text-transform: uppercase;
  color: rgb(210, 47, 37);
  font-weight: 400;
  font-size: 31px;
  font-family: 'Fjalla One', sans-serif;
}

.section-subheader {
  text-transform: uppercase;
  color: rgb(210, 47, 37);
  font-weight: 400;
  font-size: 24px;
  font-family: 'Fjalla One', sans-serif;
}

.section-subtitle {
  font-size: 20px;
  font-family: 'Fjalla One', sans-serif;
}

.clickable-row {
  cursor: pointer;
}

/* Modern layout improvements */
.feature-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: none;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

.feature-image {
  max-width: 200px;
  height: auto;
  border-radius: 12px;
}

.download-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: none;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  min-height: 220px;
}

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

.discord-widget {
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  max-width: 100%;
}

/* Responsive grid layout */
@media screen and (max-width: 959px) {
.mainlayout {
  display: block;
}

.content {
  margin-bottom: 2rem;
}

.discord-widget {
  width: 100%;
  height: 400px;
}
}

@media screen and (min-width: 960px) {
.mainlayout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1rem;
}

.content {
  min-width: 0;
}

.sidebar {
  min-width: 0;
}
}

/* Enhanced visual hierarchy */
.uk-section {
  padding: 3rem 0;
}

.uk-section-small {
  padding: 1.5rem 0;
}

.uk-card-body {
  padding: 2rem;
}

/* Improved button styling */
.uk-button-primary {
  background-color: rgb(210, 47, 37);
  border-color: rgb(210, 47, 37);
  transition: all 0.3s ease;
}

.uk-button-primary:hover {
  background-color: rgb(180, 37, 27);
  border-color: rgb(180, 37, 27);
  transform: translateY(-2px);
}

/* Footer styling */
footer {
  background-color: #f8f9fa;
  border-top: 1px solid #e5e5e5;
  margin-top: 2rem;
}

footer .uk-link-text {
  color: rgb(210, 47, 37);
  text-decoration: none;
}

footer .uk-link-text:hover {
  color: rgb(180, 37, 27);
  text-decoration: underline;
}
