.wrapper-features {
    height: 100%;
    margin: 40px auto 20px auto;
}

.wrapper-errors {
    height: 100%;
    width: 100%;
    margin: 40px auto 20px auto;
}





.category-title {
  text-shadow:
    0 2px 8px rgba(0,0,0,0.45),
    0 1px 1px rgba(0,0,0,0.2); /* Nice layered shadow */
  font-weight: bold;
  /* Optional: increase font size for emphasis */
  font-size: 2.5rem;
  letter-spacing: 1px;

  font-family: "a_AllgidusDstr", "Alice", "Femme Fatale", "Times New Roman", Times, serif;
  font-family: var(--font-3);
  letter-spacing: 0.1em;
}




.container-texture {
  width: 100%;
  margin-left: 0;
  margin-right: 0;
  box-sizing: border-box;
  text-align: center; /* For text */
  /* OR, for all child elements (like buttons): */
  display: flex;
  flex-direction: column;
  align-items: center;
}


@media (max-width: 640px) {
  .container-texture {
    padding-left: 12px;
    padding-right: 12px;
  }
}





.features-title {
  color: #fff; /* Or your preferred color */
  text-shadow:
    0 2px 8px rgba(0,0,0,0.45),
    0 1px 1px rgba(0,0,0,0.2); /* Nice layered shadow */
  font-weight: bold;
  /* Optional: increase font size for emphasis */
  font-size: 2.5rem;
  letter-spacing: 1px;
}

code {
  background: #23201a;
  color: #ebd595;
  padding: 4px 10px;
  border-radius: 5px;
  font-family: 'Consolas', 'Courier New', monospace;
  font-size: 1em;
  white-space: pre-wrap;
}














/* Ensure padding/border included in width */
*, *::before, *::after {
  box-sizing: border-box;
}

.patch-list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px; /* space between cards */
  padding: 0;
  margin: 0;
}

/* Default: 1 per row */
.patch-list > .col-md-4 {
  flex: 1 1 100%; /* flex-grow, shrink, basis */
  max-width: 100%;
}

/* From 576px: 2 per row */
@media (min-width: 576px) {
  .patch-list > .col-md-4 {
    flex: 1 1 calc(50% - 15px);
    max-width: calc(50% - 15px);
  }
}

/* From 992px: 3 per row */
@media (min-width: 992px) {
  .patch-list > .col-md-4 {
    flex: 1 1 calc(33.3333% - 20px);
    max-width: calc(33.3333% - 20px);
  }
}

/* Make sure cards inside columns fill width */
.patch-list > .col-md-4 > .card {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}














/* Card styling */
.card-hover {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

/* Image styling */
.card-img {
  height: 250px;
  object-fit: cover;
  border-radius: 12px;
  transition: opacity 0.3s ease;
}

/* Overlay styling */
.card-img-overlay {
  background: rgba(0, 0, 0, 0.5);
  border-radius: 12px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 10px;
  transition: background 0.3s ease;
  width: 100%;
}

.card-hover:hover .card-img-overlay {
  background: rgba(0, 0, 0, 0.7);
}

/* Text styling */
.card-text {
  font-size: 1rem;
  font-weight: 500;
  color: #000;
  background-color: #ffc107;
  padding: 5px 10px;
  border-radius: 0px;
  white-space: normal;
  max-width: 100%;
  text-align: center;
}

.bottom-div {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  padding: 10px;
  text-align: center;
}

/* Optional: Make cards equal height */
.h-100 {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card-img-background {
    min-height: 250px;
    aspect-ratio: 1280 / 717;
    width: 100%;
    height: auto;
}






.fancy-divider {
  width: 100vw;        /* Full viewport width */
  margin-left: calc(-50vw + 50%); /* Align to screen edges, if parent is centered */
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  box-sizing: border-box;
}


.fancy-divider-line {
  flex: 1;
  height: 7px;
  border-radius: 3px;
}

.fancy-divider-line.left {
  background: linear-gradient(
    to right,
    transparent 0%,
    #ede7dd 25%,
    #bca67a 70%,
    #ede7dd 100%
  );
}

.fancy-divider-line.right {
  background: linear-gradient(
    to right,
    #bca67a 0%,
    #ede7dd 30%,
    transparent 100%
  );
}

.fancy-image {
  max-width: 120px;
  height: 48px;
  object-fit: contain;
  display: block;
  background: transparent;
}

.fade-divider {
  height: 2px;
  width: 100%;
  margin: 40px 0;
  background: linear-gradient(
    to right,
    transparent,
    #e2cfa3 50%,
    transparent
  );
  border: none;
}

.container_title {
  margin: 46px 0px 0px 0px;
}





.step-row {
  display: flex;
  align-items: center;
  gap: 16px; /* space between circle and text */
}

.circle-step {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #f3eac2 70%, #bfa46d 100%);
  color: #624c1e;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.3em;
  box-shadow: 0 2px 12px rgba(0,0,0,0.10);
  border: 2px solid #bfa46d;
}





/* mini bootstrap */
.row-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;         /* Optional: space between columns */
}

.col-6 {
  flex: 1 1 0;
  min-width: 280px;  /* Make responsive for small screens */
  max-width: 50%;
  box-sizing: border-box;
  padding: 0 12px;   /* Optional: side padding */
}

@media (max-width: 768px) {
  .row-flex {
    flex-direction: column;
    gap: 0;
  }
  .col-6 {
    max-width: 100%;
    padding: 0;
  }
}

.row-flex-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;         /* Optional: space between columns */
}













.htp__block-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 36px; /* Space between buttons */
  margin: 32px 0;
  flex-wrap: wrap; /* Responsive: wrap on small screens */
}

.htp__block-button {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: bold;
  text-decoration: none;
  color: #fff;
  padding: 12px 24px;
  border-radius: 32px;
  background: rgba(40, 30, 20, 0.85);
  transition: box-shadow 0.18s;
  box-shadow: 0 2px 10px rgba(0,0,0,0.18);
}
.htp__block-button:hover {
  box-shadow: 0 4px 24px #bfa46d80;
  background: rgba(80, 50, 20, 0.95);
}

.circle-icon {
  width: 40px;
  height: 40px;
  background: #fff2e0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  margin-right: 6px;
}

.circle-icon img,
.circle-icon svg {
  width: 22px;
  height: 22px;
  display: block;
}





.download-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: bold;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(90deg, #bfa46d 0%, #faedc7 100%);
  padding: 13px 32px;
  border-radius: 32px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.15);
  font-size: 1.14em;
  transition: background 0.18s, box-shadow 0.18s;
  margin: 0 auto;
}

.download-btn:hover {
  background: linear-gradient(90deg, #faedc7 0%, #bfa46d 100%);
  color: #624c1e;
  box-shadow: 0 4px 32px #bfa46d60;
}

.download-btn .circle-icon {
  width: 40px;
  height: 40px;
  background: #fff2e0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.10);
}

.download-btn .circle-icon svg {
  display: block;
}






.accordion-css {
  border-radius: 12px;
  background: rgba(30, 20, 15, 0.70);
  box-shadow: 0 2px 18px rgba(0,0,0,0.17);
  width: 100%;
  margin: 32px 0;
  padding: 0;
}

.accordion-item {
  border-bottom: 1px solid #bfa46d44;
}
.accordion-item:last-child {
  border-bottom: none;
}

/* Hide the default checkbox */
.accordion-checkbox {
  display: none;
}

/* Label styles */
.accordion-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 32px;
  cursor: pointer;
  font-size: 1.13em;
  font-weight: bold;
  color: #ffe4ae;
  font-family: var(--font-2, 'Cormorant Garamond', serif);
  letter-spacing: 0.03em;
  user-select: none;
  transition: background 0.13s;
  width: 100%;
  box-sizing: border-box;
}

.accordion-label:hover {
  background: linear-gradient(90deg, #3b2b18 60%, #a88e53 100%);
  color: #fff6d1;
}

/* Arrow indicator */
.accordion-label .arrow {
  transition: transform 0.28s cubic-bezier(.54,.01,.57,1.23);
  display: inline-block;
  margin-left: 18px;
  width: 22px;
  height: 22px;
  background: url("data:image/svg+xml,%3Csvg width='22' height='22' viewBox='0 0 22 22' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 9l5 5 5-5' stroke='%23ffe4ae' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center center/22px;
}

.accordion-checkbox:checked + .accordion-label .arrow {
  transform: rotate(180deg);
}

/* Accordion body */
.accordion-body {
  max-height: 0;
  overflow: hidden;
  background: rgba(52, 36, 25, 0.38);
  color: #f9e9c2;
  font-size: 1em;
  font-family: var(--font-2, 'Cormorant Garamond', serif);
  line-height: 1.7;
  padding: 0 36px;
  transition: max-height 0.28s cubic-bezier(.54,.01,.57,1.23), padding 0.17s;
  width: 100%;
  box-sizing: border-box;
}

.accordion-checkbox:checked + .accordion-label + .accordion-body {
  max-height: 260px; /* adjust as needed */
  padding: 20px 36px 24px 36px;
}

@media (max-width: 640px) {
  .accordion-label,
  .accordion-body {
    padding-left: 14px;
    padding-right: 14px;
  }
}



/* about - Main wrapper to center everything */
.main-wrapper {
    width: 100%;
    margin: 0 auto;
}

/* Server header styles */
.server-header {
    background: linear-gradient(to right, rgba(51, 51, 51, 0) 0%, rgba(51, 51, 51, 0.8) 50%, rgba(51, 51, 51, 0) 100%);
    padding: 20px;
    text-align: center;
    margin-left: 0%; /* Left margin */
    margin-right: 0%; /* Right margin */
}

/* Header title */
.server-header h1 {
    font-size: 2em;
    margin: 0;
}

/* Server info section styles */
.server-info {
    padding: 0px;
}

.info-title h2 {
    font-size: 1.5em;
    color: #C18374;
}

.info-description p {
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Call to action section styles */
.cta-wrapper {
    padding: 0px;
}

.cta-header h2 {
    font-size: 1.5em;
    color: #C18374;
}

.cta-description p {
    line-height: 1.6;
}

.cta-button-wrapper {
    text-align: center;
}

.cta-button {
    display: inline-block;
    padding: 15px 30px;
    background-color: #C18374;
    color: #fff;
    font-size: 1.2em;
    text-decoration: none;
    border-radius: 5px;
    text-align: center;
}

.cta-button:hover {
    background-color: #FF7F00;
}


.features_blocks {
  margin: 0 auto; 
  display: block;
  text-align: center;
}


/* Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  width: 100%;
  margin-top: 30px;
  padding: 0px;
}

/* Card */
.feature-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #1e1e1e;
  border: 1px solid #2a2a2a;
  border-radius: 1rem;
  padding: 2rem;
  color: #f5f5f5;
  box-shadow: 0 8px 20px rgba(0,0,0,0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

/* Header */
.feature-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 1rem;
}

.feature-icon {
  /*max-width: 250px;*/
  height: auto;
  margin-bottom: 1rem;
}

.feature-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0;
  color: #ff9800;
}

/* Body */
.feature-body {
  flex: 1;
  text-align: center;
  margin-bottom: 1.5rem;
}

.feature-text {
  font-size: 1rem;
  line-height: 1.6;
  color: #ddd;
  margin: 0;
}

/* Footer */
/* Footer separator (keep if you already have it) */
.feature-footer {
  border-top: 1px solid #333;
  padding-top: 1rem;
  text-align: center;
}

/* Rating system */
.feature-rating {
  display: inline-flex;
  flex-direction: row-reverse; /* highest star first */
  justify-content: center;
  gap: 0.2rem;
  font-size: 2rem;
}

.feature-rating input {
  display: none; /* hide radios */
}

.feature-rating label {
  color: #666; /* dim by default */
  cursor: pointer;
  transition: color 0.2s, -webkit-text-stroke 0.2s;
}

/* Hover (only when not yet voted) */
.feature-rating:not(.voted) label:hover,
.feature-rating:not(.voted) label:hover ~ label {
  -webkit-text-stroke: 2px red;
  color: #fbff03;
}

/* Selected stars = gold */
.feature-rating input:checked ~ label {
  color: #fbff03;
  -webkit-text-stroke: 0;
}

/* Thank-you message */
.vote-message {
  margin-top: 0.5rem;
  font-size: 1rem;
  color: #4caf50; /* green */
  display: none;
}




/* Full width modifier */
.feature-card--full {
  grid-column: 1 / -1;
}

.feature-card--full .feature-icon {
  max-width: 100%;
}

/* Responsive */
@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}

/* Intro text */
.feature-intro {
  font-size: 1rem;
  color: #ccc;
  margin: 0 0 0.75rem;
  text-align: left;
}

/* Preview image */
.feature-preview {
  text-align: center;
  margin-top: 1rem;
}

.feature-preview img {
  max-width: 100%;
  height: auto;
  border-radius: 0.5rem;
  border: 1px solid #2a2a2a;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}


.feature-list {
  list-style: none;          /* remove default bullets */
  padding: 0;
  margin: 0;
  text-align: left;          /* keep aligned even in centered card */
}

.feature-list li {
  position: relative;
  padding-left: 1.8rem;      /* space for check icon */
  margin-bottom: 0.5rem;
  line-height: 1.4;
  color: #ddd;
  font-size: 0.95rem;
}

/* Custom checkmark */
.feature-list li::before {
  position: absolute;
  left: 0;
  top: 0;
  color: #4caf50;            /* green check */
  font-weight: bold;
}

/* NEW: two-column feature list */
.feature-list-2col {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.feature-list-2col .feature-col {
  flex: 1 1 50%;
  max-width: 50%;
}

.feature-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-col li {
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  line-height: 1.4;
}
