:root {
    --bg-main: #F8FAF7;
    --bg-surface: #FFFFFF;
    --bg-alt: #EEF5ED;
    --primary-main: #2D6A4F;
    --primary-light: #52B788;
    --primary-dark: #1B4332;
    --primary-contrast: #FFFFFF;
    --secondary-main: #74C69D;
    --secondary-light: #B7E4C7;
    --secondary-dark: #40916C;
    --text-primary: #1B4332;
    --text-secondary: #4F6F52;
    --text-muted: #8AA399;
    --border-subtle: #D8E3D8;
    --border-medium: #B7C9B7;
    --shadow-soft: 0 4px 12px rgba(27, 67, 50, 0.05);
    --shadow-medium: 0 8px 24px rgba(27, 67, 50, 0.08);
}

* {
    box-sizing: border-box;
}

.main-layout-body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-main);
    color: var(--text-primary);
    line-height: 1.5;
    overflow-x: hidden;
}

.text-muted {
    color: var(--text-muted) !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    color: var(--primary-dark);
}

.sticky-nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-subtle);
}

.section-padding {
    padding: 80px 0;
}

@media (min-width: 992px) {
    .section-padding {
        padding: 120px 0;
    }
}

.aztec-card {
    background: var(--bg-surface);
    border-radius: 12px;
    border: 1px solid var(--border-subtle);
    box-shadow: var(--shadow-soft);
    transition: border-color 0s, background-color 0s;
}

.btn-primary-custom {
    background-color: var(--primary-main);
    color: var(--primary-contrast);
    border: none;
    border-radius: 6px;
    padding: 12px 24px;
    font-weight: 600;
}

.btn-primary-custom:hover {
    background-color: var(--primary-dark);
}

.btn-secondary-custom {
    background-color: transparent;
    color: var(--primary-main);
    border: 2px solid var(--primary-main);
    border-radius: 6px;
    padding: 10px 22px;
    font-weight: 600;
}

/* ===== header ===== */
.ls-main-header .navbar {
    background-color: #FFFFFF !important;
    border-bottom: 1px solid #D8E3D8;
    padding: 0.75rem 0;
    box-shadow: 0 4px 12px rgba(27, 67, 50, 0.05);
    z-index: 1050;
}

.ls-main-header .ls-logo-img {
    max-width: 45px;
    height: auto;
    object-fit: contain;
}

.ls-main-header .ls-brand-name {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.25rem;
    color: #1B4332;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.ls-main-header .nav-link {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    color: #4F6F52;
    padding: 0.5rem 1rem !important;
    transition: color 0s ease;
}

.ls-main-header .nav-link:hover,
.ls-main-header .nav-link:focus {
    color: #2D6A4F;
}

.ls-main-header .dropdown-toggle::after {
    display: none;
}

.ls-main-header .ls-dropdown-menu {
    border: 1px solid #D8E3D8;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(27, 67, 50, 0.08);
    padding: 0.5rem 0;
    background-color: #FFFFFF;
}

.ls-main-header .dropdown-item {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    color: #4F6F52;
    padding: 0.6rem 1.25rem;
    transition: background-color 0s ease, color 0s ease;
}

.ls-main-header .dropdown-item:hover {
    background-color: #EEF5ED;
    color: #2D6A4F;
}

.ls-main-header .ls-cta-btn {
    background-color: #2D6A4F;
    color: #FFFFFF !important;
    border-radius: 6px;
    padding: 0.6rem 1.5rem !important;
    font-weight: 600;
    text-align: center;
}

.ls-main-header .ls-cta-btn:hover {
    background-color: #1B4332;
}

.ls-main-header .navbar-toggler {
    border: none;
    padding: 0;
    color: #2D6A4F;
    font-size: 1.75rem;
}

.ls-main-header .navbar-toggler:focus {
    box-shadow: none;
}

@media (max-width: 991.98px) {
    .ls-main-header .navbar-collapse {
        background-color: #FFFFFF;
        padding: 1.5rem 0;
        margin-top: 0.5rem;
        border-top: 1px solid #EEF5ED;
    }

    .ls-main-header .nav-link {
        padding: 0.75rem 0 !important;
        border-bottom: 1px solid #F8FAF7;
    }

    .ls-main-header .ls-cta-btn {
        margin-top: 1rem;
        width: 100%;
        display: block;
    }

    .ls-main-header .ls-dropdown-menu {
        border: none;
        box-shadow: none;
        padding-left: 1rem;
        background-color: #F8FAF7;
    }

    .ls-main-header .ls-brand-name {
        font-size: 1.1rem;
    }
}

/* ===== hero ===== */
.hero-section {
    background-color: #1B4332;
}

.hero-overlay {
    background: rgba(27, 67, 50, 0.6);
}

.hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    color: #FFFFFF;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.hero-description {
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    line-height: 1.6;
    color: #EEF5ED;
    max-width: 600px;
}

.hero-btn-primary {
    background-color: #2D6A4F;
    border: 2px solid #2D6A4F;
    color: #FFFFFF;
    transition: background-color 0.2s ease;
    border-radius: 6px;
}

.hero-btn-primary:hover {
    background-color: #1B4332;
    border-color: #1B4332;
    color: #FFFFFF;
}

.hero-btn-secondary {
    background-color: transparent;
    border: 2px solid #FFFFFF;
    color: #FFFFFF;
    transition: all 0.2s ease;
    border-radius: 6px;
}

.hero-btn-secondary:hover {
    background-color: #FFFFFF;
    color: #1B4332;
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-section {
        min-vh-75;
        padding-top: 100px;
        padding-bottom: 60px;
    }
}

/* ===== features ===== */
.level-sparkz-features {
    background-color: #F8FAF7;
    background-image: url('../files/uploads/pics/aztec-stone-pattern-background.png');
    background-size: cover;
    background-position: center;
    position: relative;
}

.level-sparkz-features .section-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    color: #1B4332;
    font-size: 2.25rem;
}

.level-sparkz-features .section-description {
    font-family: 'Inter', sans-serif;
    color: #4F6F52;
    line-height: 1.6;
    font-size: 1.1rem;
}

.level-sparkz-features .feature-card {
    background: #FFFFFF;
    border: 1px solid #D8E3D8;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(27, 67, 50, 0.05);
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.level-sparkz-features .feature-card:hover {
    transform: translateY(-5px);
    border-color: #2D6A4F;
    box-shadow: 0 8px 24px rgba(27, 67, 50, 0.08);
}

.level-sparkz-features .icon-wrapper {
    width: 70px;
    height: 70px;
    background-color: #EEF5ED;
    border-radius: 50%;
    color: #2D6A4F;
}

.level-sparkz-features .icon-wrapper.ls-white-circle {
    background-color: #FFFFFF;
    border: 1px solid #D8E3D8;
    box-shadow: 0 4px 12px rgba(27, 67, 50, 0.05);
    color: #2D6A4F;
}

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

.level-sparkz-features .feature-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: #1B4332;
}

.level-sparkz-features .feature-text {
    font-family: 'Inter', sans-serif;
    color: #4F6F52;
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (max-width: 767.98px) {
    .level-sparkz-features .section-title {
        font-size: 1.5rem;
    }

    .level-sparkz-features .section-description {
        font-size: 0.95rem;
    }

    .level-sparkz-features .feature-card {
        padding: 1.5rem !important;
    }
}

/* ===== games_grid ===== */
.games-grid-section {
    background-color: #F8FAF7;
    overflow: hidden;
}

.games-grid-section .section-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    color: #1B4332;
    text-transform: uppercase;
}

.games-grid-section .section-subtitle {
    font-family: 'Inter', sans-serif;
    color: #4F6F52;
    font-size: 1rem;
    line-height: 1.6;
}

.games-grid-section .filter-btn {
    border: 1px solid #B7C9B7;
    background: #FFFFFF;
    color: #1B4332;
    font-weight: 600;
    padding: 0.5rem 1.25rem;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.games-grid-section .filter-btn:hover {
    background: #EEF5ED;
    color: #2D6A4F;
    border-color: #2D6A4F;
}

.games-grid-section .filter-btn.active {
    background: #2D6A4F;
    color: #FFFFFF;
    border-color: #2D6A4F;
}

.games-grid-section .search-wrapper {
    position: relative;
    width: 100%;
}

.games-grid-section .search-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #8AA399;
    font-size: 1.2rem;
}

.games-grid-section .js-search-input {
    padding-left: 40px;
    border-radius: 8px;
    border: 1px solid #D8E3D8;
    background-color: #FFFFFF;
    color: #1B4332;
    height: 45px;
}

.games-grid-section .js-search-input::placeholder {
    color: #8AA399;
}

.games-grid-section .js-search-input:focus {
    border-color: #2D6A4F;
    box-shadow: 0 0 0 0.2rem rgba(45, 106, 79, 0.1);
}

.games-grid-section .game-card {
    background: #FFFFFF;
    border: 1px solid #D8E3D8;
    border-radius: 12px;
    overflow: hidden;
    transition: border-width 0s, border-color 0s, box-shadow 0.2s ease;
    text-decoration: none;
    position: relative;
    box-shadow: 0 4px 12px rgba(27, 67, 50, 0.05);
}

.games-grid-section .game-card:hover {
    border: 2px solid #2D6A4F;
    box-shadow: 0 8px 24px rgba(27, 67, 50, 0.08);
    transform: translateY(-2px);
}

.games-grid-section .game-card-img-box {
    width: 100%;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.games-grid-section .game-card-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.games-grid-section .game-card:hover img {
    transform: scale(1.05);
}

.games-grid-section .game-card-info {
    padding: 1rem;
    border-top: 1px solid #EEF5ED;
}

.games-grid-section .game-card-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #1B4332;
    margin: 0;
    line-height: 1.3;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

@media (max-width: 767.98px) {
    .games-grid-section .section-title {
        font-size: 1.5rem;
    }

    .games-grid-section .section-subtitle {
        font-size: 0.9rem;
    }

    .games-grid-section .game-card-title {
        font-size: 1rem;
    }
}

/* ===== about_snippet ===== */
.about-snippet-section {
    padding: 80px 0;
    background-color: #EEF5ED;
    position: relative;
    overflow: hidden;
}

.about-snippet-section .about-title {
    color: #1B4332;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    line-height: 1.2;
    font-size: 2.25rem;
}

.about-snippet-section .about-description {
    color: #4F6F52;
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    line-height: 1.6;
}

.about-snippet-section .feature-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    align-items: flex-start;
}

.about-snippet-section .feature-icon-wrapper {
    min-width: 48px;
    height: 48px;
    background-color: #FFFFFF;
    border: 1px solid #D8E3D8;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2D6A4F;
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(27, 67, 50, 0.05);
}

.about-snippet-section .feature-text h5 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1B4332;
    margin-bottom: 4px;
    font-family: 'Montserrat', sans-serif;
}

.about-snippet-section .feature-text p {
    font-size: 0.95rem;
    color: #8AA399;
    margin-bottom: 0;
    line-height: 1.4;
}

.about-snippet-section .btn-about-primary {
    background-color: #2D6A4F;
    color: #FFFFFF;
    padding: 12px 32px;
    font-weight: 600;
    border-radius: 6px;
    border: none;
    transition: background-color 0s ease;
}

.about-snippet-section .btn-about-primary:hover {
    background-color: #1B4332;
    color: #FFFFFF;
}

.about-snippet-section .about-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(27, 67, 50, 0.08);
}

.about-snippet-section .about-image-wrapper img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

@media (max-width: 767.98px) {
    .about-snippet-section {
        padding: 40px 0;
    }

    .about-snippet-section .about-title {
        font-size: 16px;
    }

    .about-snippet-section .about-description {
        font-size: 14px;
    }

    .about-snippet-section .feature-text h5 {
        font-size: 14px;
    }

    .about-snippet-section .feature-text p {
        font-size: 12px;
    }

    .about-snippet-section .about-image-wrapper img {
        height: 300px;
    }
}

/* ===== footer ===== */
.site-footer .font-heading {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.site-footer .hover-link {
    transition: color 0.2s ease-in-out;
}

.site-footer .hover-link:hover {
    color: #52B788 !important;
}

.site-footer .footer-bottom {
    border-color: rgba(82, 183, 136, 0.2) !important;
}

.site-footer i {
    font-size: 1.1rem;
}

/* ===== PAGE: about ===== */
.about-history {
  background-color: #F8FAF7;
}
.about-history__title {
  font-family: 'Montserrat', sans-serif;
  color: #1B4332;
  font-weight: 800;
  line-height: 1.2;
}
.about-history__subtitle {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #2D6A4F !important;
}
.about-history__description p {
  font-family: 'Inter', sans-serif;
  color: #4F6F52;
  line-height: 1.8;
}
.about-history__image-wrapper img {
  width: 100%;
  height: 450px;
  object-fit: cover;
}

.about-mission {
  background-color: #EEF5ED;
}
.about-mission__heading {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: #1B4332;
}
.about-mission__lead {
  font-family: 'Inter', sans-serif;
  color: #4F6F52;
  font-size: 1.1rem;
}
.about-mission__card {
  transition: transform 0s;
  border: 1px solid #D8E3D8 !important;
}
.about-mission__card-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: #1B4332;
}
.about-mission__card-text {
  font-family: 'Inter', sans-serif;
  color: #8AA399;
  font-size: 0.95rem;
  line-height: 1.6;
}
.text-primary {
  color: #2D6A4F !important;
}

.about-values {
  background-color: #FFFFFF;
}
.about-values__title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: #1B4332;
}
.about-values__content p {
  font-family: 'Inter', sans-serif;
  color: #4F6F52;
  line-height: 1.7;
}
.about-values__content span {
  font-family: 'Inter', sans-serif;
  color: #1B4332;
  font-weight: 500;
}
.about-values__image-wrapper img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.shadow-soft {
  box-shadow: 0 4px 12px rgba(27, 67, 50, 0.05);
}
.shadow-medium {
  box-shadow: 0 8px 24px rgba(27, 67, 50, 0.08);
}

@media (max-width: 767.98px) {
  .about-history__title {
    font-size: 1.5rem;
  }
  .about-history__subtitle {
    font-size: 1.1rem;
  }
  .about-history__image-wrapper img,
  .about-values__image-wrapper img {
    height: 300px;
  }
  .about-mission__heading {
    font-size: 1.25rem;
  }
}

/* ===== PAGE: games ===== */
.games-section { background-color: #F8FAF7; font-family: 'Inter', sans-serif; }
.games-section .text-primary { color: #2D6A4F !important; font-family: 'Montserrat', sans-serif; }
.games-section .text-secondary { color: #4F6F52 !important; }
.games-section .search-wrapper { margin-bottom: 2rem; }
.games-section .search-icon { position: absolute; left: 1rem; top: 50%; transform: translateY(-50%); color: #8AA399; font-size: 1.25rem; }
.games-section .search-input { padding-left: 3rem; border: 1px solid #D8E3D8; border-radius: 8px; height: 50px; background-color: #FFFFFF; color: #1B4332; }
.games-section .search-input:focus { border-color: #2D6A4F; box-shadow: 0 0 0 0.25rem rgba(45, 106, 79, 0.1); }
.games-section .game-card { background: #FFFFFF; border-radius: 12px; border: 1px solid #D8E3D8; overflow: hidden; transition: box-shadow 0.2s ease; box-shadow: 0 4px 12px rgba(27, 67, 50, 0.05); }
.games-section .game-card:hover { box-shadow: 0 8px 24px rgba(27, 67, 50, 0.08); }
.games-section .game-image-container { position: relative; width: 100%; height: 180px; overflow: hidden; background-color: #EEF5ED; }
.games-section .game-img { width: 100%; height: 100%; object-fit: cover; }
.games-section .game-content { padding: 1.25rem; display: flex; flex-direction: column; justify-content: space-between; }
.games-section .game-title { font-size: 1.15rem; font-weight: 600; color: #1B4332; margin-bottom: 1.25rem; line-height: 1.4; min-height: 3.2rem; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.games-section .btn-primary { background-color: #2D6A4F; border: none; padding: 0.75rem; font-weight: 600; border-radius: 6px; transition: background-color 0.2s ease; }
.games-section .btn-primary:hover { background-color: #1B4332; }
.games-section .page-btn { padding: 0.5rem 1rem; border: 1px solid #D8E3D8; background-color: #FFFFFF; color: #2D6A4F; border-radius: 6px; font-weight: 600; cursor: pointer; transition: all 0.2s; }
.games-section .page-btn.active { background-color: #2D6A4F; color: #FFFFFF; border-color: #2D6A4F; }
.games-section .page-btn:hover:not(.active) { background-color: #EEF5ED; }

/* ===== PAGE: guide ===== */
.guide-list-section { background-color: #F8FAF7; padding: 80px 0; }
.guide-list-section .guide-section-title { font-family: 'Montserrat', sans-serif; color: #1B4332; font-weight: 800; font-size: 2.25rem; }
.guide-list-section .guide-section-desc { font-family: 'Inter', sans-serif; color: #4F6F52; line-height: 1.6; margin-bottom: 2rem; }
.guide-list-section .search-box-container { position: relative; margin-bottom: 2rem; }
.guide-list-section .search-icon { position: absolute; left: 15px; top: 50%; transform: translateY(-50%); color: #2D6A4F; font-size: 1.25rem; z-index: 5; }
.guide-list-section .js-search-input { padding-left: 45px; height: 50px; border-radius: 6px; border: 1px solid #D8E3D8; background-color: #FFFFFF; font-family: 'Inter', sans-serif; color: #1B4332; }
.guide-list-section .js-search-input::placeholder { color: #8AA399; }
.guide-list-section .js-search-input:focus { border-color: #2D6A4F; box-shadow: 0 0 0 0.2rem rgba(45, 106, 79, 0.1); }
.guide-list-section .guide-card { background-color: #FFFFFF; border-radius: 12px; border: 1px solid #D8E3D8; overflow: hidden; transition: box-shadow 0.2s ease; box-shadow: 0 4px 12px rgba(27, 67, 50, 0.05); }
.guide-list-section .guide-card:hover { box-shadow: 0 8px 24px rgba(27, 67, 50, 0.08); }
.guide-list-section .guide-card-img-wrapper { height: 220px; overflow: hidden; }
.guide-list-section .guide-card-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s ease; }
.guide-list-section .guide-card-body { padding: 1.5rem; }
.guide-list-section .guide-meta { font-size: 0.85rem; color: #8AA399; display: flex; align-items: center; }
.guide-list-section .guide-card-title { font-family: 'Montserrat', sans-serif; font-size: 1.25rem; color: #1B4332; font-weight: 700; margin-bottom: 1rem; line-height: 1.3; }
.guide-list-section .guide-card-excerpt { font-family: 'Inter', sans-serif; font-size: 0.95rem; color: #4F6F52; line-height: 1.5; }
.guide-list-section .guide-btn { background-color: #2D6A4F; border: none; color: #FFFFFF; font-weight: 600; padding: 0.75rem; border-radius: 6px; transition: background-color 0s; }
.guide-list-section .guide-btn:hover { background-color: #1B4332; color: #FFFFFF; }
.guide-list-section .no-results-message h3 { color: #1B4332; font-weight: 700; }
.guide-list-section .no-results-message p { color: #4F6F52; }

/* ===== PAGE: hall-of-fame ===== */
.leaderboard-section {
  padding: 80px 0;
  background-color: #F8FAF7;
  min-height: 800px;
}

.leaderboard-section .leaderboard-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  color: #1B4332;
  margin-bottom: 16px;
  font-size: 2.25rem;
}

.leaderboard-section .leaderboard-subtitle {
  font-family: 'Inter', sans-serif;
  color: #4F6F52;
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 40px;
}

.leaderboard-section .tab-group {
  background: #EEF5ED;
  padding: 6px;
  border-radius: 8px;
  border: 1px solid #D8E3D8;
}

.leaderboard-section .tab-btn {
  border: none;
  background: transparent;
  padding: 8px 24px;
  border-radius: 6px;
  font-weight: 600;
  color: #4F6F52;
  transition: color 0s, background-color 0s;
  font-size: 0.9rem;
}

.leaderboard-section .tab-btn.active {
  background-color: #2D6A4F;
  color: #FFFFFF;
}

.leaderboard-section .search-box {
  position: relative;
  width: 100%;
  max-width: 300px;
}

.leaderboard-section .search-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #8AA399;
}

.leaderboard-section .search-input {
  width: 100%;
  padding: 10px 12px 10px 40px;
  border-radius: 8px;
  border: 1px solid #D8E3D8;
  background-color: #FFFFFF;
  color: #1B4332;
  outline: none;
}

.leaderboard-section .search-input::placeholder {
  color: #8AA399;
}

.leaderboard-section .rank-card {
  background: #FFFFFF;
  border-radius: 12px;
  padding: 24px;
  border: 1px solid #D8E3D8;
  text-align: center;
  height: 100%;
  box-shadow: 0 4px 12px rgba(27, 67, 50, 0.05);
  position: relative;
}

.leaderboard-section .rank-card.top-1 {
  border: 2px solid #2D6A4F;
  background: linear-gradient(180deg, #FFFFFF 0%, #EEF5ED 100%);
}

.leaderboard-section .rank-badge {
  width: 48px;
  height: 48px;
  background: #2D6A4F;
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  margin: 0 auto 16px;
  font-size: 1.25rem;
}

.leaderboard-section .rank-card .avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 12px;
  border: 3px solid #EEF5ED;
}

.leaderboard-section .rank-card .player-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: #1B4332;
  margin-bottom: 4px;
}

.leaderboard-section .rank-card .score-value {
  font-weight: 800;
  color: #2D6A4F;
  font-size: 1.5rem;
}

.leaderboard-section .leaderboard-table-container {
  background: #FFFFFF;
  border-radius: 12px;
  border: 1px solid #D8E3D8;
  overflow: hidden;
}

.leaderboard-section .leaderboard-table-header {
  padding: 16px 24px;
  background-color: #EEF5ED;
  border-bottom: 1px solid #D8E3D8;
  color: #1B4332;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.5px;
}

.leaderboard-section .leaderboard-row {
  display: flex;
  align-items: center;
  padding: 16px 24px;
  border-bottom: 1px solid #EEF5ED;
  transition: background-color 0s;
}

.leaderboard-section .leaderboard-row:hover {
  background-color: #F8FAF7;
}

.leaderboard-section .col-rank {
  width: 80px;
  font-weight: 700;
  color: #4F6F52;
}

.leaderboard-section .col-player {
  flex-grow: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  color: #1B4332;
}

.leaderboard-section .list-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.leaderboard-section .col-status {
  width: 150px;
  color: #8AA399;
  font-size: 0.9rem;
}

.leaderboard-section .col-score {
  width: 150px;
  font-weight: 700;
  color: #2D6A4F;
}

@media (max-width: 768px) {
  .leaderboard-section .leaderboard-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .leaderboard-section .col-rank, .leaderboard-section .col-status, .leaderboard-section .col-score {
    width: 100%;
    text-align: left !important;
  }
  .leaderboard-section .col-score::before {
    content: 'คะแนน: ';
    font-weight: 400;
    color: #8AA399;
  }
}

/* ===== PAGE: achievements ===== */
.achievements-list {
  background-color: #F8FAF7;
  font-family: 'Inter', sans-serif;
}

.achievements-list h1 {
  font-family: 'Montserrat', sans-serif;
  color: #1B4332;
  text-transform: uppercase;
}

.achievements-list .btn-primary {
  background-color: #2D6A4F;
  border-color: #2D6A4F;
  font-weight: 600;
  padding: 0.5rem 1.5rem;
  border-radius: 6px;
}

.achievements-list .btn-primary:hover,
.achievements-list .btn-primary.active {
  background-color: #1B4332;
  border-color: #1B4332;
}

.achievements-list .btn-outline-primary {
  color: #2D6A4F;
  border-color: #2D6A4F;
  font-weight: 600;
  padding: 0.5rem 1.5rem;
  border-radius: 6px;
}

.achievements-list .btn-outline-primary:hover {
  background-color: #EEF5ED;
  color: #1B4332;
  border-color: #1B4332;
}

.achievements-list .achievement-card {
  background-color: #FFFFFF;
  border: 1px solid #D8E3D8;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(27, 67, 50, 0.05);
  transition: transform 0s, border-color 0s;
}

.achievements-list .achievement-card:hover {
  border-color: #2D6A4F;
}

.achievements-list .achievement-icon-box {
  width: 48px;
  height: 48px;
  background-color: #EEF5ED;
  color: #2D6A4F;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 24px;
}

.achievements-list h3 {
  font-family: 'Montserrat', sans-serif;
  color: #1B4332;
  font-weight: 700;
}

.achievements-list .achievement-desc {
  color: #4F6F52;
  font-size: 0.9rem;
  line-height: 1.5;
}

.achievements-list .progress {
  height: 8px;
  background-color: #EEF5ED;
  border-radius: 4px;
  overflow: hidden;
}

.achievements-list .progress-bar {
  background-color: #52B788;
}

.achievements-list .status-label.locked {
  color: #8AA399;
  font-size: 0.8rem;
  font-weight: 500;
}

.achievements-list .badge {
  font-weight: 500;
  font-size: 0.75rem;
  padding: 0.4em 0.8em;
}

/* ===== PAGE: contact ===== */
.contact-info-section {
  padding: 80px 0;
  background-color: #F8FAF7;
  position: relative;
  overflow: hidden;
}

.contact-info-section .contact-info-wrapper {
  position: relative;
  z-index: 2;
}

.contact-info-section .contact-content-box {
  padding-right: 20px;
}

.contact-info-section .contact-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.25rem;
  font-weight: 800;
  color: #1B4332;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.contact-info-section .contact-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  color: #4F6F52;
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.contact-info-section .contact-details-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-info-section .contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: #FFFFFF;
  border-radius: 12px;
  border: 1px solid #D8E3D8;
  box-shadow: 0 4px 12px rgba(27, 67, 50, 0.05);
  transition: border-color 0.2s ease;
}

.contact-info-section .contact-item:hover {
  border-color: #2D6A4F;
}

.contact-info-section .contact-icon-box {
  background-color: #EEF5ED;
  color: #2D6A4F;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.5rem;
}

.contact-info-section .contact-text-box {
  display: flex;
  flex-direction: column;
}

.contact-info-section .contact-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: #8AA399;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.contact-info-section .contact-value {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #1B4332;
  margin-bottom: 0;
  line-height: 1.5;
}

.contact-info-section .contact-link {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #2D6A4F;
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-info-section .contact-link:hover {
  color: #52B788;
}

.contact-info-section .contact-map-container {
  height: 100%;
  min-height: 500px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #B7C9B7;
  box-shadow: 0 8px 24px rgba(27, 67, 50, 0.08);
}

@media (max-width: 991px) {
  .contact-info-section {
    padding: 60px 0;
  }
  .contact-info-section .contact-map-container {
    min-height: 400px;
    margin-top: 30px;
  }
  .contact-info-section .contact-title {
    font-size: 1.75rem;
  }
}

@media (max-width: 767px) {
  .contact-info-section .contact-title {
    font-size: 1.5rem;
  }
  .contact-info-section .contact-subtitle {
    font-size: 1rem;
  }
  .contact-info-section .contact-map-container {
    min-height: 300px;
  }
}

/* ===== PAGE: privacy ===== */
.privacy-content {
  background-color: #F8FAF7;
  padding: 80px 0;
  font-family: 'Inter', sans-serif;
}

.privacy-content .privacy-card {
  background-color: #FFFFFF;
  border-radius: 12px;
  border: 1px solid #D8E3D8;
}

.privacy-content h1 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  color: #1B4332;
  font-size: 2.25rem;
  line-height: 1.2;
}

.privacy-content h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: #2D6A4F;
  font-size: 1.5rem;
  border-bottom: 2px solid #EEF5ED;
  padding-bottom: 10px;
}

.privacy-content h2 i {
  color: #52B788;
}

.privacy-content p {
  color: #4F6F52;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.privacy-content strong {
  color: #1B4332;
}

.privacy-content .text-primary-main {
  color: #2D6A4F;
}

.privacy-content .feature-item {
  background-color: #F8FAF7;
  border-color: #D8E3D8 !important;
  transition: none;
}

.privacy-content .feature-item h3 {
  color: #2D6A4F;
  font-family: 'Montserrat', sans-serif;
}

@media (max-width: 767.98px) {
  .privacy-content {
    padding: 40px 0;
  }
  .privacy-content h1 {
    font-size: 1.5rem;
  }
  .privacy-content h2 {
    font-size: 1.25rem;
  }
  .privacy-content .privacy-card {
    padding: 1.5rem !important;
  }
}

/* ===== PAGE: terms ===== */
.ls-terms-section { background-color: #F8FAF7; padding: 80px 0; color: #1B4332; font-family: 'Inter', sans-serif; } .ls-terms-card { background-color: #FFFFFF; border: 1px solid #D8E3D8; border-radius: 12px; padding: 60px; box-shadow: 0 4px 12px rgba(27, 67, 50, 0.05); } .ls-title { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 2.5rem; color: #2D6A4F; margin-bottom: 0.5rem; } .ls-update-date { color: #8AA399; font-size: 0.95rem; } .ls-h2 { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 1.5rem; color: #1B4332; margin-bottom: 1.5rem; display: flex; align-items: center; gap: 12px; } .ls-h2 i { color: #2D6A4F; font-size: 1.75rem; } .ls-content-block p { line-height: 1.8; color: #4F6F52; margin-bottom: 1.5rem; } .ls-content-block ul { padding-left: 1.5rem; margin-bottom: 1.5rem; } .ls-content-block li { color: #4F6F52; margin-bottom: 0.75rem; position: relative; list-style-type: none; } .ls-content-block li::before { content: '•'; color: #52B788; font-weight: bold; display: inline-block; width: 1em; margin-left: -1em; } @media (max-width: 768px) { .ls-terms-section { padding: 40px 0; } .ls-terms-card { padding: 30px 20px; } .ls-title { font-size: 1.75rem; } .ls-h2 { font-size: 1.25rem; } .ls-content-block p, .ls-content-block li { font-size: 0.95rem; } }

/* ===== PAGE: disclaimer ===== */
.ls-disclaimer-content {
  background-color: #F8FAF7;
  font-family: 'Inter', sans-serif;
  color: #1B4332;
}

.ls-disclaimer-content .ls-disclaimer-card {
  border-radius: 12px;
  border: 1px solid #D8E3D8;
  box-shadow: 0 8px 24px rgba(27, 67, 50, 0.08) !important;
}

.ls-disclaimer-content .ls-main-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  letter-spacing: -0.5px;
  font-size: 2.25rem;
}

.ls-disclaimer-content .ls-subtitle {
  font-size: 1.1rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  color: #4F6F52 !important;
}

.ls-disclaimer-content .ls-section-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: #2D6A4F;
  border-bottom: 2px solid #EEF5ED;
  padding-bottom: 0.5rem;
}

.ls-disclaimer-content .ls-text-body p {
  line-height: 1.8;
  font-size: 1rem;
  color: #4F6F52;
  text-align: justify;
}

.ls-disclaimer-content .ls-contact-box {
  background-color: #EEF5ED;
  border: 1px dashed #B7C9B7;
}

.ls-disclaimer-content .ls-icon-wrapper {
  background: #EEF5ED;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .ls-disclaimer-content .ls-main-title {
    font-size: 1.5rem;
  }
  .ls-disclaimer-content .ls-section-title {
    font-size: 1.1rem;
  }
  .ls-disclaimer-content .ls-subtitle {
    font-size: 0.95rem;
  }
  .ls-disclaimer-content .ls-disclaimer-card {
    padding: 1.5rem !important;
  }
}

.aztec-comment-container {
    background-color: transparent;
}

.comment-body {
    background-color: #FFFFFF;
    border: 1px solid #D8E3D8;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(27, 67, 50, 0.05);
}

.comment-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #52B788;
}

.comment-author {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: #1B4332;
}

.comment-date {
    font-size: 0.75rem;
    color: #8AA399;
}

.comment-content {
    font-family: 'Inter', sans-serif;
    color: #4F6F52;
    line-height: 1.6;
}

.action-link {
    color: #2D6A4F;
    font-weight: 600;
    font-size: 0.85rem;
    padding: 0;
    border: none;
    background: none;
    transition: color 0s;
}

.action-link:hover {
    color: #1B4332;
}

.aztec-reply-container {
    border-left: 2px solid #EEF5ED;
    padding-left: 12px;
}

.reply-body {
    background-color: #EEF5ED;
    border: 1px solid #B7C9B7;
    border-radius: 12px;
}

.avatar-sm {
    width: 36px;
    height: 36px;
}

.reply-body .comment-content {
    font-size: 0.95rem;
    color: #1B4332;
}


/* ===== PAGE TEMPLATE: games ===== */
.ls-game-template {
    font-family: 'Inter', sans-serif;
    color: #1B4332;
}

.ls-game-frame-section {
    background-color: #000;
    position: relative;
}

.ls-iframe-wrapper {
    position: relative;
    width: 100%;
    height: 550px;
    overflow: hidden;
    background: #1B4332;
}

.ls-iframe-wrapper.is-fullscreen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw !important;
    height: 100vh !important;
    z-index: 9999;
}

.ls-iframe-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.ls-iframe-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    pointer-events: none;
    transition: opacity 0s;
}

.ls-iframe-wrapper:hover .ls-iframe-overlay {
    opacity: 0;
}

.ls-fullscreen-trigger {
    pointer-events: auto;
    background: #2D6A4F;
    color: #fff;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background 0s;
}

.ls-fullscreen-trigger:hover {
    background: #1B4332;
}

.ls-close-fullscreen {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
}

.ls-page-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    color: #1B4332;
}

.ls-meta-item {
    background: #EEF5ED;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    color: #4F6F52;
    display: flex;
    align-items: center;
    gap: 6px;
}

.ls-meta-item i {
    color: #2D6A4F;
}

.ls-text-content {
    line-height: 1.8;
    font-size: 1.05rem;
}

.ls-share-btn {
    font-weight: 600;
    font-size: 0.9rem;
    color: #fff !important;
}

.btn-facebook {
    background-color: #1877F2;
}

.btn-twitter {
    background-color: #1DA1F2;
}

.ls-sidebar-widget {
    border: 1px solid #D8E3D8;
    background: #fff;
}

.widget-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    border-bottom: 2px solid #2D6A4F;
    display: inline-block;
    padding-bottom: 5px;
}


.comment-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.comment-body {
    background: #FFFFFF;
    border: 1px solid #D8E3D8;
    border-radius: 12px;
}

.comment-author {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: #1B4332;
}

.comment-date {
    font-size: 0.8rem;
}

.action-link {
    color: #4F6F52;
    padding: 0;
    font-weight: 500;
}

.action-link:hover {
    color: #2D6A4F;
}

.aztec-reply-container {
    border-left: 2px solid #B7E4C7;
}

.ls-cta-btn {
    background-color: #2D6A4F;
    color: #FFFFFF !important;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0s;
    border: none;
}

.ls-cta-btn:hover {
    background-color: #1B4332;
}

.ls-main-header .navbar {
    background-color: #FFFFFF !important;
    border-bottom: 1px solid #D8E3D8;
    padding: 0.75rem 0;
    box-shadow: 0 4px 12px rgba(27, 67, 50, 0.05);
    z-index: 1050;
}

.ls-main-header .ls-logo-img {
    max-width: 45px;
    height: auto;
}

.ls-main-header .ls-brand-name {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.25rem;
    color: #1B4332;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .ls-iframe-wrapper {
        height: 400px;
    }

    .ls-page-title {
        font-size: 1.5rem;
    }

    .ls-meta-grid {
        flex-direction: column;
        gap: 10px !important;
    }
}

/* ===== PAGE TEMPLATE: guide ===== */
.ls-main-header .navbar {
    background-color: #FFFFFF !important;
    border-bottom: 1px solid #D8E3D8;
    padding: 0.75rem 0;
    box-shadow: 0 4px 12px rgba(27, 67, 50, 0.05);
    z-index: 1050;
}

.ls-main-header .ls-logo-img {
    max-width: 45px;
    height: auto;
    object-fit: contain;
}

.ls-main-header .ls-brand-name {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.25rem;
    color: #1B4332;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.ls-main-header .nav-link {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    color: #4F6F52;
    padding: 0.5rem 1rem !important;
    transition: color 0s ease;
}

.ls-main-header .ls-cta-btn {
    background-color: #2D6A4F;
    color: #FFFFFF !important;
    border-radius: 6px;
    padding: 0.6rem 1.5rem !important;
    font-weight: 600;
    text-align: center;
}

.ls-hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
}

.ls-game-iframe-section {
    background: #000;
}

.ls-iframe-container {
    max-width: 1200px;
    margin: 0 auto;
    background: #000;
    overflow: hidden;
}

.ls-game-iframe {
    background-color: #000;
    display: block;
}

.ls-fullscreen-toggle {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(27, 67, 50, 0.8);
    color: #FFFFFF;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
}

.ls-rich-text h1,
.ls-rich-text h2,
.ls-rich-text h3 {
    color: #1B4332;
    font-family: 'Montserrat', sans-serif;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.ls-rich-text p {
    color: #4F6F52;
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

.ls-share-btn {
    background-color: #EEF5ED;
    color: #2D6A4F;
    border: 1px solid #D8E3D8;
    font-weight: 600;
    padding: 10px;
}

.ls-share-btn:hover {
    background-color: #2D6A4F;
    color: #FFFFFF;
}

.comment-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.comment-avatar.avatar-sm {
    width: 40px;
    height: 40px;
}

.comment-body {
    background-color: #F8FAF7;
    border-radius: 12px;
    border: 1px solid #D8E3D8;
}

.action-link {
    color: #4F6F52;
    font-weight: 600;
    padding: 0;
    text-decoration: none;
}

.action-link:hover,
.action-link.active {
    color: #2D6A4F;
}

.site-footer .font-heading {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

.site-footer .hover-link:hover {
    color: #52B788 !important;
}

@media (max-width: 768px) {
    .ls-hero-title {
        font-size: 1.75rem;
    }

    .ls-game-iframe {
        height: 350px !important;
    }
}

/* ===== site-wide overrides ===== */
html,
body {
    overflow-x: hidden;
    max-width: 100%;
}

.level-sparkz-features .section-title,
.level-sparkz-features .section-description {
    color: #FFFFFF !important;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}

.level-sparkz-features .section-title i {
    color: #FFFFFF;
}

.site-footer .font-heading,
.site-footer .footer-brand h2 {
    color: #2D6A4F !important;
}

.site-footer .footer-bottom p {
    color: #8AA399 !important;
}

.site-footer .row.g-4.mb-5 > [class*="col-"] {
    min-width: 0;
}

.ls-share-box {
    background: transparent !important;
    border-color: transparent !important;
    box-shadow: none !important;
}

.ls-share-box .h6 {
    color: #2D6A4F !important;
}

.ls-share-btn,
.ls-share-btn.btn-facebook,
.ls-share-btn.btn-twitter {
    background-color: #2D6A4F !important;
    border-color: #2D6A4F !important;
    color: #FFFFFF !important;
}

.ls-share-btn:hover,
.ls-share-btn.btn-facebook:hover,
.ls-share-btn.btn-twitter:hover {
    background-color: #1B4332 !important;
    border-color: #1B4332 !important;
    color: #FFFFFF !important;
}

.ls-sidebar-widget.mb-4 {
    padding: 20px !important;
}

.ls-sidebar-widget.p-4.rounded {
    background-color: #EEF5ED !important;
    color: #2D6A4F !important;
}

.ls-sidebar-widget.p-4.rounded h3,
.ls-sidebar-widget.p-4.rounded p {
    color: #2D6A4F !important;
}

.ls-sidebar-widget.p-4.rounded .btn-outline-light {
    color: #2D6A4F !important;
    border-color: #2D6A4F !important;
    background-color: transparent !important;
}

.ls-sidebar-widget.p-4.rounded .btn-outline-light:hover {
    color: #FFFFFF !important;
    background-color: #2D6A4F !important;
    border-color: #2D6A4F !important;
}

.ls-iframe-overlay,
.ls-close-fullscreen {
    display: none !important;
}

@media (max-width: 767.98px) {
    .site-footer .row.g-4.mb-5 > [class*="col-"] {
        flex: 0 0 100%;
        max-width: 100%;
        width: 100%;
    }
}
