#fw-section-custom-html-c88d6f0a-efe6-46a7-99eb-f58dd155c43a {

#header {
  font-family: Arial, sans-serif !important;
}

.video-tools {
    font-family: 'Dosis', sans-serif;
    margin: 0;
    padding: 0;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    min-height: 15vh;
    text-align: center;
    width: 100%;
}

.video-tools h1 {
    font-family: 'Dosis', sans-serif;
    font-weight: 700;
    font-size: 30px;
    margin-bottom: 30px;
    text-align: center;
    color: white;
}

.video-tools .content-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* Responsive grid */
    gap: 20px;
    width: 90%;
    max-width: 1200px;
    padding: 20px;
    box-sizing: border-box;
}

.video-tools .content-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    text-align: center;
    background-color: transparent;
    border: 2px solid white;
    border-radius: 10px;
}

.video-tools .content-section .title {
    font-family: 'Dosis', sans-serif;
    font-weight: 700;
    font-size: 22px;
    margin-bottom: 10px;
}

.video-tools .content-section p {
    font-family: 'Dosis', sans-serif;
    margin: 0;
    flex-grow: 1;
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 10px;
    font-size: 16px;
}

.video-tools .content-section button {
    padding: 12px 25px; /* Adjusted size for smaller buttons */
    font-size: 16px;
    background-color: #8a1c1c; /* Updated to the new color */
    border: none;
    border-radius: 30px;
    color: white;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: 'Dosis', sans-serif;
    font-weight: bold;
}

.video-tools .content-section button:hover {
    background-color: #721919; /* Darker shade when hovered */
    transform: scale(0.95); /* Shrinks the button when hovered */
}

.video-tools .content-section button:focus {
    outline: none;
}

.video-tools .content-section a {
    text-decoration: none;
}

/* Mobile-Friendly Adjustments */
@media screen and (max-width: 900px) {
    .video-tools .content-container {
        grid-template-columns: repeat(2, 1fr); /* Switch to 2 columns on medium screens */
    }
}

@media screen and (max-width: 600px) {
    .video-tools .content-container {
        grid-template-columns: repeat(1, 1fr); /* Switch to 1 column on small screens */
    }
}
}



#fw-section-footer {

/* === Match the footer nav links to Lato 400 normal, 14px === */
nav.footer__nav .footer__menu-link {
  font-family: 'Lato', sans-serif !important;
  font-size:    15px              !important;
  font-weight:  400               !important;
  font-style:   normal            !important;
  line-height:  1.5               !important;
  letter-spacing: normal          !important;
  text-transform: none            !important;
}
/* footer currency dropdown items */
nav.footer__nav .header__link--icon,
nav.footer__nav .header__dropdown--content,
nav.footer__nav .header__dropdown--content * {
  font-family: 'Lato', sans-serif !important;
  font-size:    14px              !important;
  font-weight:  400               !important;
  line-height:  1.5               !important;
}
/* ==== Footer dynamic currency dropdown items ==== */
.footer__dropdown--content .footer__dropdown-link {
  font-family: 'Lato', sans-serif  !important;
  font-size:    14px               !important;
  font-weight:  400                !important;
  line-height:  1.5                !important;
  letter-spacing: normal           !important;
  text-transform: none             !important;
}

}





#fw-section-custom-html-50690de2-83ca-44d7-9ca9-d46cb8698bbd {

@import url('https://fonts.googleapis.com/css2?family=Dosis:wght@400;700&display=swap');

#header {
  font-family: Arial, sans-serif !important;
}

body {
    font-family: 'Dosis', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #c63434;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.header-title {
    font-size: 30px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
    width: 100%;
}

.info-container {
    width: 90%;
    max-width: 1200px;
    margin: 20px auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.info-card {
    background: #2d1818;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    border-left: 5px solid #8a1c1c;
    flex: 1 1 calc(50% - 20px);
    margin-bottom: 20px;
    position: relative;
    min-width: 250px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

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

.info-card h2 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #a82328;
}

.info-card p {
    font-size: 16px;
    margin-bottom: 8px;
    word-wrap: break-word;
    max-width: 100%;
}

/* Buttons */
.info-card a {
    text-decoration: none;
    color: white;
    background: #8a1c1c;
    padding: 10px 15px;
    border-radius: 8px;
    display: inline-block;
    transition: background 0.3s, transform 0.2s;
    font-weight: 700;
    white-space: nowrap;
    width: auto;
    margin: 5px;
    max-width: 100%;
    text-align: center;
    box-sizing: border-box;
}

.info-card a:hover {
    background: #721919;
    transform: scale(0.95);
}

/* Optifine Button */
.main-button {
    background: #8a1c1c;
    padding: 12px 20px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    color: white;
    display: inline-block;
    transition: background 0.3s, transform 0.2s;
    white-space: nowrap;
    margin-top: 10px;
    max-width: 100%;
    text-align: center;
    box-sizing: border-box;
}

.main-button:hover {
    background: #852323;
    transform: scale(0.95);
}

/* Minecraft Mods Section (Preserved Original Styling) */
.minecraft-mods {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    text-align: center;
}

.minecraft-mods h2 {
    text-align: center;
    margin-bottom: 10px;
}

.minecraft-mods p {
    text-align: center;
    margin-bottom: 20px;
}

.horizontal-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    width: 100%;
    margin-bottom: 20px;
}

.horizontal-container ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.horizontal-container li {
    margin-bottom: 5px;
    font-size: 15px;
}

.mod-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 33%;
    min-width: 250px;
}

/* Resource Section Fix (Centered Text) */
.resource-area {
    text-align: center;
    margin-bottom: 20px;
}

/* Fix for Hosting/Resource/Farm Card Buttons */
.hosting-resource-farm-card a,
.hosting-resource-farm-card .main-button {
    max-width: 100%;
    width: auto;
    margin: 5px auto;
    display: block;
    box-sizing: border-box;
    text-align: center;
}

/* Responsive Design */
@media screen and (max-width: 900px) {
    .info-card {
        flex: 1 1 calc(100% - 20px);
    }

    .horizontal-container {
        flex-direction: column;
    }

    .mod-column {
        width: 100%;
    }

    .minecraft-mods {
        width: 100%;
    }
}

@media screen and (max-width: 600px) {
    .header-title {
        font-size: 24px;
    }

    .info-card {
        padding: 15px;
        border-radius: 10px;
        align-items: center;
    }

    .horizontal-container {
        flex-direction: column;
    }

    .info-card a,
    .main-button,
    .hosting-resource-farm-card a {
        width: 100%;
        max-width: 100%;
        margin: 10px 0;
        text-align: center;
    }

    .info-card p {
        padding: 0 10px;
    }
}

}
#fw-section-custom-html-9f7d7a1b-980d-43e1-a511-c5a744dbd03f {

#header {
  font-family: Arial, sans-serif !important;
}

.streaming-tools {
    font-family: 'Dosis', sans-serif;
    margin: 0;
    padding: 0;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    min-height: 15vh;
    text-align: center;
    width: 100%;
}

.streaming-tools .content-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* Adjusts based on screen size */
    gap: 20px;
    width: 90%;
    max-width: 1200px;
    padding: 20px;
    box-sizing: border-box;
}

.streaming-tools .content-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    text-align: center;
    background-color: transparent;
    border: 2px solid white;
    border-radius: 10px;
}

.streaming-tools .content-section .title {
    font-family: 'Dosis', sans-serif;
    font-weight: 700;
    font-size: 22px;
    margin-bottom: 10px;
}

.streaming-tools .content-section p {
    font-family: 'Dosis', sans-serif;
    margin: 0;
    flex-grow: 1;
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 10px;
    font-size: 16px;
}

.streaming-tools .content-section button {
    padding: 12px 25px; /* Adjusted size for smaller buttons */
    font-size: 16px;
    background-color: #8a1c1c; /* Updated to the new color */
    border: none;
    border-radius: 30px;
    color: white;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: 'Dosis', sans-serif;
    font-weight: bold;
}

.streaming-tools .content-section button:hover {
    background-color: #721919; /* Darker shade when hovered */
    transform: scale(0.95); /* Shrinks the button when hovered */
}

.streaming-tools .content-section button:focus {
    outline: none;
}

.streaming-tools .content-section a {
    text-decoration: none;
}

/* Mobile-Friendly Adjustments */
@media screen and (max-width: 900px) {
    .streaming-tools .content-container {
        grid-template-columns: repeat(2, 1fr); /* Switch to 2 columns on medium screens */
    }
}

@media screen and (max-width: 600px) {
    .streaming-tools .content-container {
        grid-template-columns: repeat(1, 1fr); /* Switch to 1 column on small screens */
    }
}
/* 1. Identify your real Fourthwall header selector.
   In DevTools, right-click one of your nav links → Inspect → 
   note the containing element’s class or ID. 
   Below I’m using `.site-header` as an example—swap in yours. */

.site-header, 
.site-header nav, 
.site-header nav a {
  font-family: var(--font-heading), system-ui, sans-serif !important;
  font-size: 1rem !important;        /* match your other pages’ size */
  font-weight: 600 !important;       /* or whatever weight you use */
  letter-spacing: normal !important; /* reset any custom letter-spacing */
  text-transform: none !important;   /* reset any custom case tweaks */
}

}



#fw-section-header {

 /* === Header nav links (Home, Commands, Donations, etc.) === */
  nav.header__nav .header__link {
    font-family: 'Lato', sans-serif !important;
    font-size:    15px              !important;
    font-weight:  400               !important;
    font-style:   normal            !important;
    line-height:  1.5               !important;
    letter-spacing: normal          !important;
    text-transform: none            !important;
  }

  /* === Header static USD button & dropdown container + children === */
  .header__icons .header__link.header__link--icon,
  nav.header__nav .header__link--icon,
  .header__icons .header__dropdown--content,
  nav.header__nav .header__dropdown--content,
  .header__icons .header__dropdown--content *,
  nav.header__nav .header__dropdown--content * {
    font-family: 'Lato', sans-serif !important;
    font-size:    14px              !important;
    font-weight:  400               !important;
    font-style:   normal            !important;
    line-height:  1.5               !important;
    letter-spacing: normal          !important;
    text-transform: none            !important;
  }

  /* === Header dynamic currency dropdown links (EUR, CAD, etc.) === */
  .header__dropdown--content .header__dropdown-link {
    font-family: 'Lato', sans-serif !important;
    font-size:    14px              !important;
    font-weight:  400               !important;
    font-style:   normal            !important;
    line-height:  1.5               !important;
    letter-spacing: normal          !important;
    text-transform: none            !important;
  }
}