 :root {
     --warning: #ff9800;
     --danger: #dc3545;
 }

 body {
     transition: opacity 0.8s ease-out, transform 0.8s ease-out;
 }

 .text-black {
     color: var(--color-black);
 }

 .bbbblog-detail .loaded {
     opacity: 1;
     transform: translateY(0);
 }

 .bbbblog-detail .blog-header {
     background: var(--color-main);
     color: white;
     padding: 5rem 0;
     position: relative;
     overflow: hidden;
     box-shadow: 0 4px 12px rgba(14, 101, 232, 0.15);
 }

 .bbbblog-detail .blog-header::before {
     content: "";
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     opacity: 0.6;
 }

 .bbbblog-detail .blog-header h1 {
     font-weight: 700;
     font-size: 2.5rem;
     text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
     animation: fadeInDown 1s ease-out 0.5s both;
 }

 .bbbblog-detail .blog-header p.lead {
     font-weight: 300;
     font-size: var(--font-18);
     animation: fadeInUp 1s ease-out 0.8s both;
 }

 .bbbblog-detail .blog-content {
     padding: 4rem 0;
     background-color: white;
 }

 .bbbblog-detail .article-container {
     background-color: white;
     border-radius: 12px;
     box-shadow: 0 10px 30px rgb(14 101 232 / 14%);
     padding: 30px;
     position: relative;
     z-index: 10;
     animation: fadeIn 1s ease-out 1s both;
 }

 .bbbblog-detail .highlight {
     background-color: #ffffff;
     border-left: 4px solid var(--color-main);
     padding: 1.5rem;
     border-radius: 6px;
     transition: all 0.3s ease;
     box-shadow: 0 0px 10px rgba(14, 101, 232, 0.1);
 }

 .bbbblog-detail .highlight:hover {
     background-color: var(--color-white);
     transform: translateY(-5px);
     box-shadow: 0 12px 20px rgba(14, 101, 232, 0.2);
 }

 .bbbblog-detail h3,
 h4,
 h5 {
     color: var(--color-black);
     font-weight: 600;
     text-align: center;
     margin-top: 2rem;
     margin-bottom: 10px;
     opacity: 1;
     transform: translateY(10px);
     transition: all 0.5s ease;
     display: flex;
     font-size: var(--font-24);
     font-family: var(--default-font);
 }

 .bbbblog-detail .animate-in {
     opacity: 1;
     transform: translateY(0);
 }

 .bbbblog-detail ul {
     padding-left: 1.2rem;
 }

 .bbbblog-detail ul li {
     margin-bottom: 0.5rem;
     position: relative;
     padding-left: var(--zero);
     cursor: default;
 }



 .bbbblog-detail .warning-box,
 .tip-box {
     background-color: #fff8e6;
     border-radius: var(--border-r-six);
     padding: var(--twenty);
     margin: var(--twenty) var(--zero);
     border: 1px solid #ffe0a3;
     transition: all 0.3s ease;
 }

 .bbbblog-detail .warning-box:hover,
 .tip-box:hover {
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
     transform: translateY(-3px);
 }

 .bbbblog-detail .warning-box h5 {
     color: #e67e00;
     margin-bottom: var(--twenty);
     font-weight: var(--font-bold);
     line-height: 1.5;
 }

 .bbbblog-detail .tip-box {
     background-color: #e6f7ff;
     border-color: #a3d8ff;
 }

 .bbbblog-detail .tip-box h5 {
     color: var(--color-main);
     margin-bottom: var(--twenty);
     font-weight: var(--font-bold);
     line-height: 1.5;
 }

 .bbbblog-detail .warning-box i {
     margin-right: 0.5rem;
     background: #f3890a;
     padding: 10px;
     border-radius: 50%;
     width: 30px;
     height: 30px;
     color: white;
     display: flex;
     justify-content: center;
     align-items: center;
     font-size: 16px;
 }

 .bbbblog-detail .tip-box i {
     margin-right: 0.5rem;
     background: var(--color-main);
     padding: 10px;
     border-radius: 50%;
     width: 30px;
     height: 30px;
     color: white;
     display: flex;
     justify-content: center;
     align-items: center;
     font-size: 16px;
 }

 .bbbblog-detail .danger-box i {
     margin-right: 0.5rem;
     background: var(--danger);
     padding: 10px;
     border-radius: 50%;
     width: 30px;
     height: 30px;
     color: white;
     display: flex;
     justify-content: center;
     align-items: center;
     font-size: 16px;
 }

 .bbbblog-detail .danger-box {
     background-color: #ffebee;
     border-radius: var(--border-r-six);
     padding: var(--twenty);
     margin: var(--twenty) var(--zero);
     border: 1px solid #ffcdd2;
     transition: all 0.3s ease;
 }

 .bbbblog-detail .danger-box:hover {
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
     transform: translateY(-3px);
 }

 .bbbblog-detail .danger-box h5 {
     color: var(--danger);
     margin-bottom: var(--twenty);
     font-weight: var(--font-bold);
     line-height: 1.5;
 }

 .bbbblog-detail .section-divider {
     height: 4px;
     background: linear-gradient(90deg, var(--color-main), transparent);
     margin: 3rem 0;
     width: 100%;
     border-radius: 2px;
 }


 .bbbblog-detail .related-articles {
     background-color: var(--background-grey);
     padding: 3rem 0;
     margin-top: 3rem;
 }

 .bbbblog-detail .related-card {
     background: white;
     border-radius: 8px;
     overflow: hidden;
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
     transition: all 0.3s ease;
     height: 100%;
     cursor: pointer;
 }

 .bbbblog-detail .related-card:hover {
     transform: translateY(-5px);
     box-shadow: 0 10px 25px rgba(14, 101, 232, 0.15);
 }

 .bbbblog-detail .related-card-img {
     height: 160px;
     background-color: var(--color-main-light);
     display: flex;
     align-items: center;
     justify-content: center;
     color: white;
     font-size: 2rem;
 }

 .bbbblog-detail .related-card-body {
     padding: 1.5rem;
 }

 .bbbblog-detail .related-card-title {
     font-weight: 600;
     color: var(--color-black);
     margin-bottom: 0.5rem;
 }

 .bbbblog-detail .btn-primary {
     background-color: var(--color-main);
     border-color: var(--color-main);
     padding: 0.6rem 1.5rem;
     border-radius: 50px;
     font-weight: 500;
     transition: all 0.3s ease;
 }

 .bbbblog-detail .btn-primary:hover {
     background-color: var(--color-black);
     border-color: var(--color-black);
     transform: translateY(-2px);
     box-shadow: 0 5px 15px rgba(14, 101, 232, 0.3);
 }

 .bbbblog-detail .btn-outline-primary {
     color: var(--color-main);
     border-color: var(--color-main);
     padding: 0.6rem 1.5rem;
     border-radius: 50px;
     font-weight: 500;
     transition: all 0.3s ease;
 }

 .bbbblog-detail .engine-component {
     padding: var(--twenty);
     border-radius: 8px;
     background-color: var(--background-grey);
     margin-bottom: 1rem;
     transition: all 0.3s ease;
     border-left: 4px solid var(--color-main);
     height: 100%;
 }

 .bbbblog-detail .engine-component:hover {
     background-color: #eef4ff;
     transform: translateX(5px);
 }

 .bbbblog-detail .engine-component h5 {
     margin-top: 0;
     color: var(--color-main);
     display: flex;
     align-items: center;
     margin-bottom: 20px;
     font-weight: var(--font-bold);
 }

 .bbbblog-detail .engine-component h5 i {
     font-size: 16px;
     height: 36px;
     width: 36px;
     background: var(--color-main);
     border-radius: 50%;
     display: flex;
     justify-content: center;
     align-items: center;
     margin-right: 10px;
     color: white;
 }


 .btn-outline-primary:hover {
     background-color: var(--color-main);
     color: white;
     transform: translateY(-2px);
     box-shadow: 0 5px 15px rgba(14, 101, 232, 0.2);
 }

 .bbbblog-detail ul.warning-list li {
     margin-bottom: 1rem;
     padding: 1rem 1rem 1rem 3.5rem;
     background-color: #fff8e6;
     border-radius: 8px;
     position: relative;
     transition: all 0.3s ease;
     border-left: 4px solid var(--warning);
 }

 .bbbblog-detail ul.warning-list li:hover {
     background-color: #fff0d1;
     transform: translateX(5px);
 }

 .bbbblog-detail ul.warning-list li::before {
     content: "\f071";
     font-family: "Font Awesome 5 Free";
     font-weight: 900;
     position: absolute;
     left: 1rem;
     top: 18px;
     color: var(--warning);
 }

 .bbbblog-detail ul.warning-list li strong {
     color: #e67e00;
     display: block;
     margin-bottom: 0.3rem;
 }

 .bbbblog-detail ul.warning-list {
     padding-left: 0;
     list-style: none;
 }

 .bbbblog-detail .problem-card {
     border-radius: 8px;
     overflow: hidden;
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
     margin-bottom: 1.5rem;
     transition: all 0.3s ease;
 }

 .bbbblog-detail .problem-card:hover {
     transform: translateY(-5px);
     box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
 }

 .bbbblog-detail .problem-card-header {
     background-color: var(--color-main);
     color: white;
     padding: 1rem;
     font-weight: 600;
 }

 .bbbblog-detail .problem-card-body {
     padding: 1.5rem;
     background-color: white;
 }

 .bbbblog-detail .problem-card-footer {
     background-color: var(--background-grey);
     padding: 1rem;
     font-style: italic;
     color: #666;
 }

 .bbbblog-detail .problem-card {
     border-radius: 8px;
     overflow: hidden;
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
     margin-bottom: 1.5rem;
     transition: all 0.3s ease;
 }

 .bbbblog-detail .problem-card:hover {
     transform: translateY(-5px);
     box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
 }

 .bbbblog-detail .problem-card-header {
     background-color: var(--color-main);
     color: white;
     padding: 1rem;
     font-weight: 600;
 }

 .bbbblog-detail .problem-card-body {
     padding: 1.5rem;
     background-color: white;
 }

 .bbbblog-detail .problem-card-footer {
     background-color: var(--background-grey);
     padding: 1rem;
     font-style: italic;
     color: #666;
 }

 .bbbblog-detail .checklist-item {
     display: flex;
     align-items: center;
     margin-bottom: 1rem;
     padding: 1rem;
     background-color: var(--background-grey);
     border-radius: 8px;
     transition: all 0.3s ease;
 }

 .bbbblog-detail .checklist-item:hover {
     background-color: #eef4ff;
     transform: translateX(5px);
 }

 .bbbblog-detail .checklist-icon {
     flex: 0 0 40px;
     height: 40px;
     background-color: var(--color-main);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     color: white;
     margin-right: 1rem;
 }

 .bbbblog-detail .checklist-content {
     flex: 1;
 }

 .bbbblog-detail .checklist-content h5 {
     margin-top: 0;
     margin-bottom: 0;
     line-height: 1.5;
     transform: translateY(0px);
     font-weight: bold;
     font-size: 18px;
 }

 .component-two {
     transition: all 0.3s ease;
     box-shadow: 0 0px 10px rgba(14, 101, 232, 0.1);
     border-left: 4px solid #0e65e8;
     border-top: 0;
     border-right: 0;
     border-bottom: 0;
     height: 100%;
     border-radius: 6px;
     padding: 20px;
     cursor: default;
 }

 .component-two:hover {
     transform: translateY(-5px);
     box-shadow: 0 12px 20px rgba(14, 101, 232, 0.2);
 }

 .component-two .animate-in {
     animation: fadeIn 0.8s ease-out;
 }

 .component-two .icon-container {
     background-color: #0e65e8;
     box-shadow: 0 4px 10px rgba(14, 101, 232, 0.3);
     height: 36px;
     width: 36px;
     background: var(--color-main);
     display: flex;
     justify-content: center;
     align-items: center;
 }

 .component-two .icon-container i {
     font-size: 16px;
 }

 .component-two h4 {
     font-size: 20px;
     font-weight: var(--font-bold);
     color: var(--color-black);
     margin-bottom: var(--zero);
     line-height: 1.5;
 }

 .bbbblog-detail .animate-in {
     opacity: 1;
     transform: translateY(0);
 }


 .bbbblog-detail li p {
     margin-top: 0;
     margin-bottom: 0;
 }

 .bbbblog-detail h4 i {
     font-size: 16px;
     height: 36px;
     width: 36px;
     background: var(--color-main);
     border-radius: 50%;
     display: flex;
     justify-content: center;
     align-items: center;
     margin-right: 10px;
     color: white;
 }

 .bbbblog-detail h4 {
     margin-top: 0;
     color: var(--color-whiะำ);
     display: flex;
     align-items: center;
     margin-bottom: 20px;
     font-weight: var(--font-bold);
 }

 .bbbblog-detail .section-divider {
     height: 4px;
     background: linear-gradient(90deg, var(--color-main), transparent);
     margin: 3rem 0;
     width: 100%;
     border-radius: 2px;
 }

 .bbbblog-detail .footer {
     background-color: #f8f9fa;
     padding: 2rem 0;
     text-align: center;
     color: #6c757d;
     margin-top: 3rem;
 }

 .bbbblog-detail .engine-container {
     position: relative;
     width: 80%;
     height: 80%;
     background: #333;
     border-radius: 10px;
     display: flex;
     flex-direction: column;
     align-items: center;
     justify-content: center;
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
 }

 .bbbblog-detail .engine-top {
     width: 90%;
     height: 10px;
     background: #555;
     position: absolute;
     top: 20%;
     border-radius: 5px;
 }

 .bbbblog-detail .engine-middle {
     width: 70%;
     height: 40%;
     background: #444;
     position: absolute;
     top: 30%;
     border-radius: 5px;
     display: flex;
     justify-content: space-around;
     align-items: center;
     padding: 10px;
 }

 .bbbblog-detail .engine-part {
     width: 20px;
     height: 20px;
     background: #777;
     border-radius: 50%;
 }

 .bbbblog-detail .engine-bottom {
     width: 80%;
     height: 10px;
     background: #555;
     position: absolute;
     bottom: 20%;
     border-radius: 5px;
 }

 .bbbblog-detail .warning-indicator {
     position: absolute;
     width: 30px;
     height: 30px;
     background-color: rgba(255, 0, 0, 0.7);
     border-radius: 50%;
     top: 20px;
     right: 20px;
     animation: blink 2s ease-in-out infinite;
 }

 .bbbblog-detail .mouse {
     position: absolute;
     width: 30px;
     height: 20px;
     background-color: #888;
     border-radius: 50% 30% 30% 50%;
     bottom: 30px;
     left: 30px;
     animation: moveMouse 10s linear infinite;
 }

 .bbbblog-detail .mouse::before {
     content: "";
     position: absolute;
     width: 15px;
     height: 2px;
     background-color: #555;
     top: 5px;
     right: -10px;
     border-radius: 2px;
 }

 .bbbblog-detail .mouse::after {
     content: "";
     position: absolute;
     width: 4px;
     height: 4px;
     background-color: #000;
     top: 7px;
     left: 5px;
     border-radius: 50%;
 }

 .bbbblog-detail .leaf {
     position: absolute;
     width: 20px;
     height: 10px;
     background-color: #4caf50;
     border-radius: 50% 50% 0 0;
     top: 50px;
     right: 50px;
     transform: rotate(45deg);
     animation: floatLeaf 15s ease-in-out infinite;
 }

 .bbbblog-detail .leaf::before {
     content: "";
     position: absolute;
     width: 2px;
     height: 5px;
     background-color: #2e7d32;
     bottom: -5px;
     left: 9px;
 }

 .bbbblog-detail .card-hover {
     transition: all 0.3s ease;
     cursor: pointer;
 }

 .bbbblog-detail .card-hover:hover {
     transform: translateY(-5px);
     box-shadow: 0 10px 20px rgba(14, 101, 232, 0.15);
 }


 .swiper-button-next,
 .swiper-button-prev {
     background-image: none;
     top: 50%;
     width: 40px;
     height: 40px;
     background: #00000069;
     border-radius: 50%;
     transition: all 0.3s ease;
     cursor: pointer;
     z-index: 10;
     font-size: 0;
     font-weight: normal;
 }

 .swiper-button-next {
     right: 20px;
 }

 .swiper-button-prev {
     left: 20px;
 }

 .swiper-button-next::after {
     content: '\f054';
     font-family: 'Font Awesome 6 Free';
     font-weight: 900;
     color: var(--color-white);
     font-size: 16px;
     position: absolute;
     top: 50%;
     left: 50%;
     transform: translate(-50%, -50%);
     width: auto;
     height: auto;
     border: none;
 }

 .swiper-button-prev::after {
     content: '\f104';
     font-family: 'Font Awesome 6 Free';
     font-weight: 900;
     color: var(--color-white);
     font-size: 16px;
     position: absolute;
     top: 50%;
     left: 50%;
     transform: translate(-50%, -50%);
     width: auto;
     height: auto;
     border: none;
 }

 .swiper-button-next:hover,
 .swiper-button-prev:hover {
     background: var(--color-main);
     border-color: var(--color-main);
 }

 .swiper-button-next:active,
 .swiper-button-prev:active {
     box-shadow: 0 2px 10px rgba(14, 101, 232, 0.3);
 }

 .swiper-button-next.swiper-button-disabled,
 .swiper-button-prev.swiper-button-disabled {
     opacity: 0.4;
     cursor: not-allowed;
     background: var(--color-header);
     border-color: var(--color-header);
     box-shadow: none;
 }

 .swiper-button-next.swiper-button-disabled:hover,
 .swiper-button-prev.swiper-button-disabled:hover {
     transform: translateY(-50%) scale(1);
     background: var(--color-header);
     border-color: var(--color-header);
     box-shadow: none;
 }

 .swiper-button-next.square,
 .swiper-button-prev.square {
     border-radius: 8px;
     width: 45px;
     height: 45px;
 }

 .swiper-button-next.minimal,
 .swiper-button-prev.minimal {
     background: var(--color-white);
     border: 2px solid var(--color-main);
     box-shadow: 0 2px 8px rgba(12, 20, 46, 0.1);
 }

 .swiper-button-next.minimal::after,
 .swiper-button-prev.minimal::after {
     color: var(--color-main);
 }

 .swiper-button-next.minimal:hover,
 .swiper-button-prev.minimal:hover {
     background: var(--color-main);
     border-color: var(--color-main);
 }

 .swiper-button-next.minimal:hover::after,
 .swiper-button-prev.minimal:hover::after {
     color: var(--color-white);
 }

 .swiper-button-next.dark,
 .swiper-button-prev.dark {
     background: var(--color-black);
     border: 2px solid var(--color-header);
     box-shadow: 0 4px 15px rgba(12, 20, 46, 0.5);
 }

 .swiper-button-next.dark:hover,
 .swiper-button-prev.dark:hover {
     background: var(--color-header);
     border-color: var(--color-main);
 }

 .swiper-button-next.outline,
 .swiper-button-prev.outline {
     background: transparent;
     border: 2px solid var(--color-main);
     box-shadow: none;
 }

 .swiper-button-next.outline::after,
 .swiper-button-prev.outline::after {
     color: var(--color-main);
 }

 .swiper-button-next.outline:hover,
 .swiper-button-prev.outline:hover {
     background: var(--color-main);
     box-shadow: 0 4px 15px rgba(14, 101, 232, 0.3);
 }

 .swiper-button-next.outline:hover::after,
 .swiper-button-prev.outline:hover::after {
     color: var(--color-white);
 }

 .swiper-button-next.large,
 .swiper-button-prev.large {
     width: 60px;
     height: 60px;
 }

 .swiper-button-next.large::after,
 .swiper-button-prev.large::after {
     font-size: 20px;
 }

 .swiper-button-next.small,
 .swiper-button-prev.small {
     width: 40px;
     height: 40px;
 }

 .swiper-button-next.small::after,
 .swiper-button-prev.small::after {
     font-size: 14px;
 }

 .swiper-button-next.outside {
     right: -70px;
 }

 .swiper-button-prev.outside {
     left: -70px;
 }

 .swiper-button-next.bottom {
     right: 20px;
     top: auto;
     bottom: 20px;
     transform: none;
 }

 .swiper-button-prev.bottom {
     left: 20px;
     top: auto;
     bottom: 20px;
     transform: none;
 }

 .swiper-button-next.animated {
     animation: slideInRight 0.5s ease-out;
 }

 .swiper-button-prev.animated {
     animation: slideInLeft 0.5s ease-out;
 }

 @keyframes slideInRight {
     from {
         opacity: 0;
         transform: translateX(30px) translateY(-50%);
     }

     to {
         opacity: 1;
         transform: translateX(0) translateY(-50%);
     }
 }

 @keyframes slideInLeft {
     from {
         opacity: 0;
         transform: translateX(-30px) translateY(-50%);
     }

     to {
         opacity: 1;
         transform: translateX(0) translateY(-50%);
     }
 }

 @media (max-width: 768px) {

     .swiper-button-next,
     .swiper-button-prev {
         right: 10px;
         width: 40px;
         height: 40px;
     }

     .swiper-button-prev {
         left: 10px;
     }

     .swiper-button-next::after,
     .swiper-button-prev::after {
         font-size: 14px;
     }

     @media (max-width: 480px) {

         .swiper-button-next.hide-mobile,
         .swiper-button-prev.hide-mobile {
             display: none;
         }
     }
 }

 @media (prefers-contrast: high) {

     .swiper-button-next,
     .swiper-button-prev {
         border-width: 3px;
     }
 }

 @media (prefers-reduced-motion: reduce) {

     .swiper-button-next,
     .swiper-button-prev {
         transition: none;
     }

     .swiper-button-next.animated,
     .swiper-button-prev.animated {
         animation: none;
     }
 }


 @keyframes blink {
     0% {
         opacity: 0.3;
     }

     50% {
         opacity: 1;
     }

     100% {
         opacity: 0.3;
     }
 }

 @keyframes moveMouse {
     0% {
         left: 30px;
         bottom: 30px;
     }

     25% {
         left: 70%;
         bottom: 50px;
     }

     50% {
         left: 60%;
         bottom: 70%;
     }

     75% {
         left: 20%;
         bottom: 60%;
     }

     100% {
         left: 30px;
         bottom: 30px;
     }
 }

 @keyframes floatLeaf {
     0% {
         top: 50px;
         right: 50px;
         transform: rotate(45deg);
     }

     25% {
         top: 100px;
         right: 100px;
         transform: rotate(90deg);
     }

     50% {
         top: 150px;
         right: 80px;
         transform: rotate(135deg);
     }

     75% {
         top: 120px;
         right: 40px;
         transform: rotate(180deg);
     }

     100% {
         top: 50px;
         right: 50px;
         transform: rotate(45deg);
     }
 }

 @keyframes fadeIn {
     from {
         opacity: 0;
     }

     to {
         opacity: 1;
     }
 }

 @keyframes fadeInDown {
     from {
         opacity: 0;
         transform: translateY(-20px);
     }

     to {
         opacity: 1;
         transform: translateY(0);
     }
 }

 @keyframes fadeInUp {
     from {
         opacity: 0;
         transform: translateY(20px);
     }

     to {
         opacity: 1;
         transform: translateY(0);
     }
 }

 @media (max-width: 768px) {
     .bbbblog-detail .blog-header {
         padding: 3rem 0;
     }

     .bbbblog-detail .article-container {
         padding: 1.5rem;
         margin-top: -50px;
     }

     .bbbblog-detail .blog-header h1 {
         font-size: 1.8rem;
     }

     .bbbblog-detail .engine-container {
         width: 90%;
     }
 }




 @keyframes fadeIn {
     from {
         opacity: 0;
         transform: translateY(10px);
     }

     to {
         opacity: 1;
         transform: translateY(0);
     }
 }

 .component-two .pulse-icon {
     animation: pulse-icon 2s infinite;
 }

 @keyframes pulse-icon {
     0% {
         box-shadow: 0 0 0 0 rgba(14, 101, 232, 0.4);
     }

     70% {
         box-shadow: 0 0 0 10px rgba(14, 101, 232, 0);
     }

     100% {
         box-shadow: 0 0 0 0 rgba(14, 101, 232, 0);
     }
 }

 @keyframes fadeIn {
     from {
         opacity: 0;
     }

     to {
         opacity: 1;
     }
 }

 @keyframes fadeInDown {
     from {
         opacity: 0;
         transform: translateY(-20px);
     }

     to {
         opacity: 1;
         transform: translateY(0);
     }
 }

 @keyframes fadeInUp {
     from {
         opacity: 0;
         transform: translateY(20px);
     }

     to {
         opacity: 1;
         transform: translateY(0);
     }
 }

 @media (max-width: 768px) {
     .blog-header {
         padding: 3rem 0;
     }

     .article-container {
         padding: 1.5rem;
         margin-top: -50px;
     }

     .blog-header h1 {
         font-size: 1.8rem;
     }
 }