/* ========================================================= FUNEXCHANGE - MAIN CSS Phase 1 Desktop Website + Mobile App Layout ========================================================= */
/* ========================================================= 1. ROOT VARIABLES ========================================================= */
 :root {
     --primary: #ffb900;
     --primary-dark: #e5a400;
     --dark: #080808;
     --dark-2: #101010;
     --dark-3: #152c38;
     --navy: #173340;
     --navy-light: #214657;
     --blue: #42b8f0;
     --green: #00a56a;
     --green-dark: #00845b;
     --red: #e90000;
     --white: #ffffff;
     --black: #000000;
     --page-bg: #eeeade;
     --text-light: #ffffff;
     --text-muted: #b9c4c9;
     --border: rgba(255, 255, 255, 0.12);
     --desktop-width: 768px;
     --bottom-nav-height: 72px;
     --radius-sm: 4px;
     --radius-md: 10px;
     --radius-lg: 20px;
}
/* ========================================================= 2. GLOBAL RESET ========================================================= */
 *, *::before, *::after {
     box-sizing: border-box;
}
 html {
     scroll-behavior: smooth;
}
 html, body {
     margin: 0;
     padding: 0;
     min-height: 100%;
}
 body {
     background: var(--page-bg);
     color: var(--white);
     font-family: Arial, Helvetica, sans-serif;
     font-size: 14px;
     line-height: 1.5;
     overflow-x: hidden;
}
 img {
     max-width: 100%;
     display: block;
}
 a {
     color: inherit;
     text-decoration: none;
}
 button, input, textarea, select {
     font-family: inherit;
}
 button {
     cursor: pointer;
     border: 0;
}
/* ========================================================= 3. MAIN APP / WEBSITE WRAPPER ========================================================= */
 .site-wrapper {
     width: var(--desktop-width);
     min-height: 100vh;
     background: var(--dark-3);
     position: relative;
     overflow-x: hidden;
}
/* ========================================================= 4. HEADER ========================================================= */
 .site-header {
     height: 70px;
     background: linear-gradient( to bottom, #181818 0%, #111111 55%, #050505 100% );
     display: flex;
     align-items: center;
     position: relative;
     z-index: 100;
}
 .header-inner {
     width: 100%;
     padding: 0 25px;
     display: flex;
     align-items: center;
     justify-content: space-between;
}
 .logo-area {
     display: flex;
     align-items: center;
}
 .site-logo {
     width: 145px;
     height: auto;
}
 .header-actions {
     display: flex;
     align-items: center;
     gap: 5px;
}
 .header-btn {
     height: 36px;
     min-width: 95px;
     display: inline-flex;
     align-items: center;
     justify-content: center;
     gap: 6px;
     font-size: 14px;
     font-weight: 700;
     border-radius: 4px;
     color: #000;
     transition: 0.2s ease;
}
 .header-btn:hover {
     transform: translateY(-1px);
}
 .signup-btn {
     background: #ffff00;
}
 .login-btn {
     background: #ed0000;
     color: #fff;
}
/* ========================================================= 5. NEWS / ANNOUNCEMENT BAR ========================================================= */
 .news-bar {
     height: 34px;
     background: linear-gradient( to right, #09151b, #1c3541, #071319 );
     border-bottom: 1px solid #294957;
     display: flex;
     align-items: center;
     position: relative;
     z-index: 90;
     overflow: hidden;
}
 .news-label {
     height: 34px;
     min-width: 72px;
     background: #101820;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 16px;
     font-weight: 700;
     position: relative;
     z-index: 2;
}
 .news-label::after {
     content: "";
     position: absolute;
     right: -12px;
     width: 22px;
     height: 22px;
     background: #101820;
     transform: rotate(45deg);
}
 .news-label span {
     position: relative;
     z-index: 2;
}
 .news-ticker-wrapper {
     flex: 1;
     overflow: hidden;
     white-space: nowrap;
}
 .news-ticker {
     display: inline-block;
     padding-left: 20px;
     color: #4dbaf1;
     font-size: 14px;
     font-weight: 700;
     animation: newsTicker 18s linear infinite;
}
 @keyframes newsTicker {
     0% {
         transform: translateX(100%);
    }
     100% {
         transform: translateX(-100%);
    }
}
/* ========================================================= 6. HERO SLIDER ========================================================= */
 .hero-section {
     width: 100%;
     position: relative;
     overflow: hidden;
}
 .hero-slider {
     width: 100%;
     position: relative;
}
 .hero-slide {
     width: 100%;
     position: relative;
}
 .hero-slide img {
     width: 100%;
     height: 220px;
     object-fit: cover;
}
 .hero-overlay {
     position: absolute;
     left: 0;
     right: 0;
     bottom: 0;
     height: 42px;
     background: rgba(0, 0, 0, 0.70);
     display: flex;
     align-items: center;
     justify-content: space-between;
     border-bottom: 4px solid var(--primary);
}
 .hero-title {
     padding-left: 8px;
     font-size: 17px;
     font-weight: 700;
}
 .play-btn {
     height: 38px;
     min-width: 88px;
     background: var(--primary);
     color: #000;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 14px;
     font-weight: 700;
     clip-path: polygon( 12px 0, 100% 0, 100% 100%, 0 100% );
}
/* ========================================================= 7. HERO ARROWS ========================================================= */
 .slider-arrow {
     position: absolute;
     top: 50%;
     transform: translateY(-50%);
     width: 40px;
     height: 40px;
     border-radius: 50%;
     background: rgba(0, 0, 0, 0.35);
     color: #fff;
     font-size: 28px;
     display: flex;
     align-items: center;
     justify-content: center;
     z-index: 10;
}
 .slider-prev {
     left: 8px;
}
 .slider-next {
     right: 8px;
}
 .slider-arrow:hover {
     background: rgba(0, 0, 0, 0.65);
}
/* ========================================================= 8. LIVE SPORTS PANEL ========================================================= */
 .live-sports {
     position: absolute;
     right: 10px;
     bottom: 54px;
     width: 175px;
     z-index: 20;
}
 .live-badge {
     display: inline-flex;
     align-items: center;
     gap: 5px;
     background: #f00;
     padding: 2px 7px;
     font-size: 12px;
     font-weight: 700;
     border-radius: 2px;
}
 .live-sports-list {
     margin-top: 4px;
     display: flex;
     flex-direction: column;
     gap: 3px;
}
 .live-sport-row {
     display: flex;
     align-items: center;
     justify-content: space-between;
     color: #fff;
     font-weight: 700;
}
 .live-count {
     width: 20px;
     height: 20px;
     background: #fff;
     color: #000;
     border-radius: 5px;
     display: flex;
     align-items: center;
     justify-content: center;
}
/* ========================================================= 9. CATEGORY SECTION ========================================================= */
 .category-section {
     width: 100%;
     padding: 4px 0;
}
 .category-grid {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 4px;
}
 .category-card {
     position: relative;
     height: 245px;
     background: #111;
     overflow: hidden;
     border-bottom: 4px solid var(--primary);
}
 .category-card img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: transform 0.35s ease;
}
 .category-card:hover img {
     transform: scale(1.04);
}
 .category-info {
     position: absolute;
     left: 0;
     right: 0;
     bottom: 0;
     height: 42px;
     background: rgba(0, 0, 0, 0.72);
     display: flex;
     align-items: center;
     justify-content: space-between;
}
 .category-name {
     padding-left: 8px;
     font-size: 17px;
     font-weight: 700;
     white-space: nowrap;
     overflow: hidden;
     text-overflow: ellipsis;
}
 .category-play {
     height: 42px;
     min-width: 88px;
     background: var(--primary);
     color: #000;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 14px;
     font-weight: 700;
     clip-path: polygon( 12px 0, 100% 0, 100% 100%, 0 100% );
}
/* ========================================================= 10. FEATURE / CONTENT SECTIONS ========================================================= */
 .content-section {
     padding: 28px 24px;
     background: linear-gradient( 135deg, #193541, #142b36 );
}
 .content-box {
     padding: 20px;
     background: rgba(10, 22, 28, 0.72);
     border: 1px solid rgba(255, 255, 255, 0.14);
     border-radius: 15px;
     box-shadow: 0 5px 25px rgba(0, 0, 0, 0.25);
}
 .content-title {
     margin: 0 0 18px;
     padding-bottom: 10px;
     border-bottom: 1px solid rgba(255, 255, 255, 0.18);
     font-size: 20px;
     font-weight: 700;
     display: flex;
     align-items: center;
     gap: 10px;
}
 .content-title::before {
     content: "★";
     color: var(--primary);
     font-size: 16px;
}
 .content-heading {
     margin: 15px 0 8px;
     padding-left: 10px;
     border-left: 5px solid var(--primary);
     font-size: 19px;
     font-weight: 700;
}
 .content-box p {
     margin: 0 0 14px;
     color: #f0f0f0;
     font-size: 14px;
     line-height: 1.8;
     font-weight: 600;
}
 .content-box ul {
     margin: 10px 0 0;
     padding-left: 25px;
}
 .content-box li {
     margin-bottom: 8px;
     font-weight: 600;
}
/* ========================================================= 11. CHECK LIST ========================================================= */
 .feature-list {
     list-style: none !important;
     padding-left: 0 !important;
}
 .feature-list li {
     position: relative;
     padding-left: 25px;
}
 .feature-list li::before {
     content: "✓";
     position: absolute;
     left: 0;
     top: 1px;
     width: 17px;
     height: 17px;
     background: #00b51a;
     color: #fff;
     border-radius: 2px;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 12px;
     font-weight: 700;
}
/* ========================================================= 12. FAQ SECTION ========================================================= */
 .faq-section {
     padding: 30px 24px;
     background: linear-gradient( 135deg, #152d38, #172f3a );
}
 .faq-container {
     padding: 20px;
     background: repeating-linear-gradient( 135deg, #07100e 0, #07100e 2px, #0b1513 2px, #0b1513 12px );
     border-radius: 15px;
}
 .faq-title {
     margin: 0 0 22px;
     padding-left: 12px;
     border-left: 5px solid var(--primary);
     font-size: 27px;
     font-weight: 700;
}
 .faq-item {
     margin-bottom: 10px;
}
 .faq-question {
     width: 100%;
     min-height: 55px;
     padding: 12px 18px;
     background: linear-gradient( to right, #00865f, #007d59 );
     color: #fff;
     border-radius: 35px;
     display: flex;
     align-items: center;
     justify-content: space-between;
     text-align: left;
     font-size: 15px;
     font-weight: 700;
     transition: 0.25s ease;
}
 .faq-question:hover {
     background: #00976b;
}
 .faq-icon {
     width: 34px;
     height: 34px;
     background: rgba(0, 0, 0, 0.14);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 24px;
     line-height: 1;
}
 .faq-answer {
     max-height: 0;
     overflow: hidden;
     background: #202b33;
     transition: max-height 0.3s ease, padding 0.3s ease;
     padding: 0 20px;
     color: #eee;
     border-radius: 0 0 10px 10px;
}
 .faq-item.active .faq-answer {
     max-height: 500px;
     padding: 15px 20px;
}
 .faq-item.active .faq-icon {
     transform: rotate(45deg);
}
/* ========================================================= 13. APP DOWNLOAD SECTION ========================================================= */
 .app-section {
     padding: 25px 30px;
     background: #1d3745;
     text-align: center;
}
 .app-download {
     display: inline-flex;
     align-items: center;
     justify-content: center;
     gap: 10px;
     padding: 8px 15px;
     background: #111;
     border: 1px solid #ddd;
     border-radius: 5px;
     color: #fff;
     font-size: 13px;
}
 .app-download-icon {
     font-size: 20px;
}
 .app-download strong {
     display: block;
     font-size: 14px;
}
 .app-download small {
     display: block;
     font-size: 10px;
     color: #aaa;
}
/* ========================================================= 14. BENEFITS / FEATURES ========================================================= */
 .benefits-section {
     padding: 15px 40px 30px;
     background: #1d3745;
}
 .benefits-grid {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 25px 20px;
}
 .benefit-item {
     text-align: center;
     color: #fff;
}
 .benefit-icon {
     width: 45px;
     height: 45px;
     margin: 0 auto 8px;
     color: #f6c127;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 28px;
}
 .benefit-title {
     font-size: 11px;
     line-height: 1.5;
     color: #ddd;
}
/* ========================================================= 15. FOOTER ========================================================= */
 .site-footer {
     background: #1d3745;
     padding: 25px 30px 100px;
     color: #fff;
}
 .footer-divider {
     height: 1px;
     background: rgba(255, 196, 0, 0.45);
     margin-bottom: 25px;
}
 .footer-links {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 15px 40px;
     text-align: center;
}
 .footer-link {
     font-size: 15px;
     transition: 0.2s ease;
}
 .footer-link:hover {
     color: var(--primary);
}
 .footer-social {
     margin-top: 25px;
     display: flex;
     align-items: center;
     gap: 28px;
     justify-content: center;
}
 .social-icon {
     width: 28px;
     height: 28px;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 22px;
     color: #fff;
     transition: 0.2s ease;
}
 .social-icon:hover {
     color: var(--primary);
     transform: translateY(-2px);
}
 .footer-description {
     margin-top: 15px;
     color: #b8c4c9;
     font-size: 10px;
     line-height: 1.5;
     text-align: left;
}
/* ========================================================= 16. PAYMENT / TRUST LOGOS ========================================================= */
 .payment-section {
     margin-top: 30px;
     display: flex;
     flex-wrap: wrap;
     justify-content: center;
     gap: 5px;
}
 .payment-logo {
     height: 64px;
     min-width: 90px;
     padding: 8px;
     border: 1px solid rgba(255, 255, 255, 0.15);
     display: flex;
     align-items: center;
     justify-content: center;
     background: rgba(0, 0, 0, 0.08);
}
 .payment-logo img {
     max-height: 45px;
     max-width: 85px;
     object-fit: contain;
}
/* ========================================================= 17. FLOATING WHATSAPP ========================================================= */
 .whatsapp-float {
     position: fixed;
     right: 28px;
     bottom: 165px;
     width: 75px;
     height: 75px;
     border-radius: 50%;
     background: #25d366;
     border: 4px solid rgba(255, 255, 255, 0.4);
     box-shadow: 0 0 0 7px rgba(37, 211, 102, 0.12), 0 5px 20px rgba(0, 0, 0, 0.25);
     color: #fff;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 40px;
     z-index: 500;
     animation: whatsappPulse 2s infinite;
}
 @keyframes whatsappPulse {
     0% {
         box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.35);
    }
     70% {
         box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
     100% {
         box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}
/* ========================================================= 18. TELEGRAM / BONUS FLOAT ========================================================= */
 .telegram-float {
     position: fixed;
     right: 28px;
     bottom: 95px;
     min-width: 200px;
     height: 58px;
     padding: 5px 15px 5px 8px;
     border-radius: 35px;
     background: linear-gradient( to right, #229ed9, #30a9e0 );
     border: 2px solid rgba(255, 255, 255, 0.3);
     box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
     display: flex;
     align-items: center;
     gap: 10px;
     color: #fff;
     z-index: 500;
}
 .telegram-icon {
     width: 40px;
     height: 40px;
     background: #fff;
     color: #229ed9;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 22px;
}
 .telegram-text strong {
     display: block;
     font-size: 14px;
}
 .telegram-text span {
     display: block;
     font-size: 11px;
}
/* ========================================================= 19. MOBILE BOTTOM NAVIGATION ========================================================= */
 .mobile-bottom-nav {
     position: fixed;
     left: 0;
     bottom: 0;
     width: 100%;
     height: var(--bottom-nav-height);
     background: linear-gradient( to bottom, #285b73, #173c4e );
     display: flex;
     align-items: stretch;
     z-index: 1000;
     box-shadow: 0 -3px 15px rgba(0, 0, 0, 0.35);
}
 .mobile-nav-item {
     flex: 1;
     position: relative;
     display: flex;
     flex-direction: column;
     align-items: center;
     justify-content: center;
     gap: 2px;
     color: #fff;
     font-size: 13px;
     font-weight: 700;
     transition: 0.2s ease;
}
 .mobile-nav-icon {
     font-size: 22px;
     line-height: 1;
}
 .mobile-nav-item.active {
     background: var(--primary);
     color: #fff;
     border-radius: 35px 35px 0 0;
     transform: translateY(-8px);
     height: calc(var(--bottom-nav-height) + 8px);
}

 .mobile-nav-item.active .mobile-nav-icon, .mobile-nav-item.active span {
     position: relative;
     z-index: 2;
}
/* ========================================================= 20. MOBILE NAV CURVED STYLE ========================================================= */
 .mobile-nav-item:first-child {
     border-radius: 0 35px 0 0;
}
 .mobile-nav-item:last-child {
     border-radius: 35px 0 0 0;
}
/* ========================================================= 21. PAGE CONTENT SPACING ========================================================= */
 .main-content {
     min-height: 500px;
}
 .page-section {
     width: 100%;
}
/* ========================================================= 22. BUTTONS ========================================================= */
 .btn-primary-custom {
     display: inline-flex;
     align-items: center;
     justify-content: center;
     padding: 10px 22px;
     background: var(--primary);
     color: #000;
     border-radius: 4px;
     font-weight: 700;
     transition: 0.2s ease;
}
 .btn-primary-custom:hover {
     background: #ffd000;
     color: #000;
}
 .btn-green {
     background: var(--green);
     color: #fff;
}
 .btn-red {
     background: var(--red);
     color: #fff;
}
/* ========================================================= 23. MOBILE CARD / APP EFFECTS ========================================================= */
 .app-card {
     background: #162f3b;
     border-radius: 12px;
     overflow: hidden;
     box-shadow: 0 3px 12px rgba(0, 0, 0, 0.25);
}
/* ========================================================= 24. MOBILE RESPONSIVE ========================================================= */
 @media (max-width: 767px) {
     :root {
         --bottom-nav-height: 68px;
    }
     body {
         background: #142d38;
    }
     .site-wrapper {
         width: 100%;
         min-height: 100vh;
         padding-bottom: var(--bottom-nav-height);
    }
    /* HEADER */
     .site-header {
         height: 62px;
    }
     .header-inner {
         padding: 0 12px;
    }
     .site-logo {
         width: 115px;
    }
     .header-actions {
         gap: 4px;
    }
     .header-btn {
         min-width: 65px;
         height: 32px;
         font-size: 11px;
    }
    /* NEWS */
     .news-bar, .news-label {
         height: 32px;
    }
     .news-label {
         min-width: 65px;
         font-size: 14px;
    }
     .news-ticker {
         font-size: 12px;
    }
    /* HERO */
     .hero-slide img {
         height: 180px;
    }
     .hero-overlay {
         height: 38px;
    }
     .hero-title {
         font-size: 14px;
    }
     .play-btn {
         height: 34px;
         min-width: 78px;
         font-size: 12px;
    }
     .slider-arrow {
         width: 32px;
         height: 32px;
         font-size: 22px;
    }
    /* LIVE SPORTS */
     .live-sports {
         width: 130px;
         right: 6px;
         bottom: 46px;
         font-size: 11px;
    }
     .live-count {
         width: 18px;
         height: 18px;
    }
    /* CATEGORY GRID */
     .category-section {
         padding: 2px 0;
    }
     .category-grid {
         gap: 3px;
    }
     .category-card {
         height: 150px;
    }
     .category-info {
         height: 34px;
    }
     .category-name {
         padding-left: 6px;
         font-size: 13px;
    }
     .category-play {
         height: 34px;
         min-width: 70px;
         font-size: 11px;
    }
    /* CONTENT */
     .content-section {
         padding: 20px 12px;
    }
     .content-box {
         padding: 16px;
         border-radius: 12px;
    }
     .content-title {
         font-size: 18px;
    }
     .content-heading {
         font-size: 17px;
    }
     .content-box p {
         font-size: 13px;
         line-height: 1.7;
    }
    /* FAQ */
     .faq-section {
         padding: 20px 12px;
    }
     .faq-container {
         padding: 15px;
         border-radius: 12px;
    }
     .faq-title {
         font-size: 23px;
    }
     .faq-question {
         min-height: 50px;
         padding: 10px 15px;
         font-size: 13px;
    }
     .faq-icon {
         width: 30px;
         height: 30px;
         font-size: 20px;
    }
     .faq-answer {
         font-size: 13px;
    }
    /* APP DOWNLOAD */
     .app-section {
         padding: 20px 15px;
    }
    /* BENEFITS */
     .benefits-section {
         padding: 15px 20px 25px;
    }
     .benefits-grid {
         grid-template-columns: repeat(3, 1fr);
         gap: 22px 10px;
    }
     .benefit-icon {
         width: 38px;
         height: 38px;
         font-size: 23px;
    }
     .benefit-title {
         font-size: 9px;
    }
    /* FOOTER */
     .site-footer {
         padding: 20px 15px 90px;
    }
     .footer-links {
         gap: 12px 20px;
    }
     .footer-link {
         font-size: 13px;
    }
     .footer-social {
         gap: 20px;
    }
     .footer-description {
         font-size: 9px;
    }
     .payment-section {
         gap: 4px;
    }
     .payment-logo {
         min-width: 75px;
         height: 55px;
    }
     .payment-logo img {
         max-width: 65px;
         max-height: 38px;
    }
    /* FLOATING BUTTONS */
     .whatsapp-float {
         width: 58px;
         height: 58px;
         right: 12px;
         bottom: 140px;
         font-size: 30px;
    }
     .telegram-float {
         right: 10px;
         bottom: 78px;
         min-width: 170px;
         height: 48px;
         padding-right: 10px;
    }
     .telegram-icon {
         width: 34px;
         height: 34px;
         font-size: 18px;
    }
     .telegram-text strong {
         font-size: 11px;
    }
     .telegram-text span {
         font-size: 9px;
    }
    /* MOBILE NAV */
     .mobile-bottom-nav {
         height: var(--bottom-nav-height);
    }
     .mobile-nav-item {
         font-size: 11px;
    }
     .mobile-nav-icon {
         font-size: 19px;
    }
}
/* ========================================================= 25. SMALL MOBILE DEVICES ========================================================= */
 @media (max-width: 390px) {
     .site-logo {
         width: 100px;
    }
     .header-btn {
         min-width: 58px;
         font-size: 10px;
    }
     .hero-slide img {
         height: 165px;
    }
     .category-card {
         height: 135px;
    }
     .category-name {
         font-size: 12px;
    }
     .category-play {
         min-width: 65px;
         font-size: 10px;
    }
     .mobile-nav-item {
         font-size: 10px;
    }
     .mobile-nav-icon {
         font-size: 18px;
    }
}
/* ========================================================= 26. TABLET ========================================================= */
 @media (min-width: 768px) and (max-width: 991px) {
     .site-wrapper {
         width: 768px;
    }
}
/* ========================================================= 27. DESKTOP BEIGE BACKGROUND ========================================================= */
 @media (min-width: 768px) {
    html,
    body {
        width: 100%;
        min-height: 100%;
        margin: 0;
        padding: 0;
    }

    body {
        background: #eeeade;
    }

    .site-wrapper {
        width: 768px;
        max-width: 768px;
        min-height: 100vh;

        margin-left: auto !important;
        margin-right: auto !important;

        background: #173340;

        position: relative;
    }

    .mobile-bottom-nav {
        width: 768px;
        left: 50%;
        transform: translateX(-50%);
    }
}
/* ========================================================= 28. HIDE MOBILE NAV ON VERY LARGE DESKTOP IF REQUIRED ========================================================= */
 @media (min-width: 1200px) {
     .mobile-bottom-nav {
         display: flex;
    }
}
/* ========================================================= 29. UTILITY CLASSES ========================================================= */
 .text-yellow {
     color: var(--primary) !important;
}
 .text-green {
     color: var(--green) !important;
}
 .text-blue {
     color: var(--blue) !important;
}
 .text-muted-custom {
     color: var(--text-muted) !important;
}
 .bg-dark-custom {
     background: var(--dark) !important;
}
 .bg-navy {
     background: var(--navy) !important;
}
 .bg-yellow {
     background: var(--primary) !important;
}
 .no-overflow {
     overflow: hidden !important;
}
/* ========================================================= 30. SCROLLBAR ========================================================= */
 ::-webkit-scrollbar {
     width: 7px;
}
 ::-webkit-scrollbar-track {
     background: #111;
}
 ::-webkit-scrollbar-thumb {
     background: #555;
     border-radius: 10px;
}
 ::-webkit-scrollbar-thumb:hover {
     background: #777;
}
/* ========================================================= 31. DESKTOP HOVER EFFECTS ========================================================= */
 @media (min-width: 768px) {
     .category-card {
         cursor: pointer;
    }
     .category-card:hover {
         box-shadow: 0 0 0 1px var(--primary);
    }
     .mobile-nav-item:hover {
         background: rgba(255, 255, 255, 0.08);
    }
}
/* ========================================================= 32. MOBILE TOUCH EFFECT ========================================================= */
 @media (max-width: 767px) {
     .category-card:active {
         transform: scale(0.99);
    }
     .header-btn:active {
         transform: scale(0.97);
    }
     .mobile-nav-item:active {
         opacity: 0.8;
    }
}
