 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
 }

 body {
     font-family: 'Poppins', sans-serif;
     background: #08090a url('../media/body.webp') center top / 100% no-repeat;
     color: #ddd;
     line-height: 1.5;
     min-height: 100vh;
 }

 a {
     text-decoration: none;
     color: inherit;
 }

 ul {
     list-style: none;
 }

 .qe-wrapper {
     max-width: 1100px;
     margin: 0 auto;
     padding: 0 24px;
     background: #08090a;
     position: relative;
     border-left: 5px solid rgba(37, 19, 22, 0.6);
     border-right: 5px solid rgba(37, 19, 22, 0.6);
     box-shadow: 0 0 20px rgba(37, 19, 22, 0.3);
 }

 .qe-title {
     font-family: 'Oswald', sans-serif;
     text-transform: uppercase;
     color: #fff;
     line-height: 1.1;
     font-weight: 700;
 }

 .qe-title span {
     background: linear-gradient(0deg, rgba(104, 28, 33, 1) 0%, rgba(153, 41, 55, 1) 100%);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     background-clip: text;
     display: inline-block;
 }

 .qe-text {
     font-family: 'Poppins', sans-serif;
     color: #ddd;
     font-weight: 300;
 }

 .qe-btn {
     display: inline-block;
     background: linear-gradient(90deg, rgba(122, 34, 43, 1) 0%, rgba(98, 26, 34, 1) 100%);
     color: #fff;
     text-transform: uppercase;
     font-weight: 600;
     font-family: 'Poppins', sans-serif;
     border: none;
     padding: 10px 28px;
     font-size: 0.9rem;
     letter-spacing: 0.5px;
     transition: opacity 0.2s;
     cursor: pointer;
     border-radius: 0;
 }

 .qe-btn:hover {
     opacity: 0.85;
 }

 .qe-block {
     background: #131212;
     border: 1px solid #1a1717;
     padding: 20px 16px;
 }

 .qe-header {
     display: flex;
     align-items: center;
     justify-content: space-between;
     padding: 18px 0;
     flex-wrap: wrap;
     gap: 16px;
 }

 .qe-logo img {
     height: 24px;
     width: auto;
     display: block;
 }

 .qe-nav {
     display: flex;
     align-items: center;
     gap: 28px;
     flex-wrap: wrap;
 }

 .qe-nav a {
     text-transform: uppercase;
     font-family: 'Poppins', sans-serif;
     font-weight: 400;
     font-size: 0.9rem;
     color: #ddd;
     transition: color 0.2s;
     letter-spacing: 0.3px;
 }

 .qe-nav a:hover {
     color: #fff;
 }

 .qe-nav .qe-btn {
     padding: 6px 20px;
     font-size: 0.8rem;
 }

 .qe-menu-toggle {
     display: none;
     flex-direction: column;
     gap: 5px;
     background: transparent;
     border: none;
     cursor: pointer;
     padding: 6px;
 }

 .qe-menu-toggle span {
     display: block;
     width: 26px;
     height: 2px;
     background: #ddd;
     transition: 0.3s;
 }

 .qe-mobile-nav {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100vh;
     background: #08090a;
     display: none;
     flex-direction: column;
     align-items: center;
     justify-content: center;
     gap: 20px;
     z-index: 999;
     padding: 40px 24px;
     border-bottom: 2px solid #251316;
 }

 .qe-mobile-nav a {
     font-family: 'Oswald', sans-serif;
     text-transform: uppercase;
     font-size: 1.8rem;
     color: #fff;
     letter-spacing: 2px;
     display: block;
 }

 .qe-mobile-nav .qe-btn {
     font-size: 1.2rem;
     padding: 12px 40px;
 }

 .qe-mobile-nav .qe-close {
     position: absolute;
     top: 30px;
     right: 30px;
     font-size: 2.8rem;
     color: #ddd;
     background: none;
     border: none;
     cursor: pointer;
 }

 .qe-hero {
     display: flex;
     align-items: center;
     padding: 80px 0 80px;
     gap: 40px;
     min-height: 360px;
     background-image: url('../media/hero.webp');
     background-repeat: no-repeat;
     background-position: right center;
     background-size: contain;
 }

 .qe-hero-content {
     flex: 1 1 300px;

 }

 .qe-hero-content .qe-title {
     font-size: 3.2rem;
     margin-bottom: 16px;
 }

 .qe-hero-content .qe-text {
     font-size: 1.1rem;
     margin-bottom: 30px;
     max-width: 500px;
 }

 .qe-hero-image {
     display: none;
 }

 .qe-benefits {
     display: grid;
     grid-template-columns: repeat(5, 1fr);
     gap: 20px;
     padding: 30px 0 50px;
 }

 .qe-benefit-item {
     background: #131212;
     border: 1px solid #1a1717;
     padding: 24px 12px;
     text-align: center;
 }

 .qe-benefit-item img {
     height: 48px;
     width: auto;
     margin-bottom: 12px;
 }

 .qe-benefit-item h4 {
     font-family: 'Oswald', sans-serif;
     text-transform: uppercase;
     color: #fff;
     font-size: 1rem;
     margin-bottom: 6px;
 }

 .qe-benefit-item p {
     font-size: 0.85rem;
     color: #bbb;
 }

 .qe-games-section {
     padding: 40px 0 50px;
 }

 .qe-games-header {
     display: flex;
     justify-content: space-between;
     align-items: flex-end;
     flex-wrap: wrap;
     margin-bottom: 30px;
 }

 .qe-games-header .qe-title {
     font-size: 2.2rem;
 }

 .qe-games-header .qe-text {
     max-width: 400px;
 }

 .qe-game-item {
     display: flex;
     flex-wrap: nowrap;
     background: #131212;
     border: 1px solid #1a1717;
     margin-bottom: 20px;
     align-items: stretch;
 }

 .qe-game-img {
     flex: 0 0 160px;
     background: #1a1717;
     min-height: 120px;
     display: flex;
     align-items: center;
     justify-content: center;
 }

 .qe-game-img img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     display: block;
 }

 .qe-game-info {
     flex: 1;
     background: #131212;
     display: flex;
     align-items: center;
     gap: 30px;
     justify-content: space-between;
 }

 .qe-game-number {
     font-family: 'Oswald', sans-serif;
     font-size: 1.6rem;
     font-weight: 700;
     color: #872732;
     background: #261316;
     height: 100%;
     display: flex;
     align-items: center;
     justify-content: center;
     min-width: 50px;
     line-height: 1.4;
 }

 .qe-game-info h4 {
     font-family: 'Oswald', sans-serif;
     text-transform: uppercase;
     color: #fff;
     font-size: 1.2rem;
     margin-top: 2px;
 }

 .qe-game-title {
     max-width: 450px;
     width: 100%;
 }

 .qe-game-info .qe-text {
     font-size: 0.9rem;
     margin: 4px 0 8px;
 }

 .qe-rating {
     display: flex;
     flex-direction: column;
     align-items: center;
     background: #1a1717;
     min-width: 100px;
     text-align: center;
 }

 .qe-rating span {
     font-family: 'Oswald', sans-serif;
     font-size: 1.4rem;
     color: #fff;
     line-height: 1.2;
 }

 .qe-rating small {
     font-size: 0.7rem;
     color: #aaa;
     text-transform: uppercase;
     letter-spacing: 0.5px;
 }

 .qe-game-actions {
     display: flex;
     flex-direction: column;
     align-items: center;
     text-align: center;
     gap: 6px;
     margin-top: 4px;
 }

 .qe-game-actions .qe-btn {
     padding: 6px 20px;
     font-size: 0.75rem;
     color: #fff;
 }

 .qe-game-actions a {
     font-size: 0.75rem;
     color: #bbb;
     border-bottom: 1px solid transparent;
     transition: 0.2s;
 }

 .qe-game-actions a:hover {
     color: #fff;
     border-color: #872732;
 }

 .qe-stats {
     background: #251415;
     display: grid;
     grid-template-columns: repeat(4, 1fr);
     gap: 10px;
     padding: 40px 20px;
     margin: 20px 0 30px;
 }

 .qe-stat-item {
     display: flex;
     align-items: center;
     gap: 16px;
 }

 .qe-stat-item .qe-number {
     font-family: 'Oswald', sans-serif;
     font-size: 2.6rem;
     color: #fff;
     line-height: 1;
     flex-shrink: 0;
 }

 .qe-stat-item .qe-stat-text {
     display: flex;
     flex-direction: column;
 }

 .qe-stat-item h4 {
     font-family: 'Oswald', sans-serif;
     text-transform: uppercase;
     color: #fff;
     font-size: 1rem;
     margin: 0;
 }

 .qe-stat-item p {
     font-size: 0.8rem;
     color: #bbb;
     margin: 0;
 }

 .qe-faq {
     padding: 40px 0 50px;
 }

 .qe-faq-item {
     background: #131212;
     border: 1px solid #1a1717;
     margin-bottom: 12px;
 }

 .qe-faq-question {
     padding: 16px 20px;
     font-family: 'Oswald', sans-serif;
     text-transform: uppercase;
     color: #fff;
     cursor: pointer;
     display: flex;
     justify-content: space-between;
     background: #131212;
     border: none;
     width: 100%;
     text-align: left;
     font-size: 1rem;
 }

 .qe-faq-question span {
     font-size: 1.4rem;
 }

 .qe-faq-answer {
     padding: 0 20px 20px;
     display: none;
     color: #ccc;
 }

 .qe-faq-answer.active {
     display: block;
 }

 .qe-faq-answer p {
     margin: 8px 0;
 }

 .qe-footer {
     background: #131212;
     border: 1px solid #1a1717;
     padding: 40px 24px 20px;
     margin-top: 30px;
 }

 .qe-footer-grid {
     display: grid;
     grid-template-columns: 2fr 1.5fr 1.5fr 2fr;
     gap: 30px;
     margin-bottom: 30px;
 }

 .qe-footer-col img {
     height: 24px;
     width: auto;
     margin-bottom: 12px;
 }

 .qe-footer-col p {
     font-size: 0.85rem;
     color: #bbb;
     max-width: 200px;
 }

 .qe-footer-col h4 {
     font-family: 'Oswald', sans-serif;
     text-transform: uppercase;
     color: #fff;
     font-size: 1rem;
     margin-bottom: 12px;
 }

 .qe-footer-col a {
     display: block;
     font-size: 0.85rem;
     color: #bbb;
     margin-bottom: 6px;
 }

 .qe-footer-col a:hover {
     color: #fff;
 }

 .qe-subscribe {
     display: flex;
     flex-wrap: wrap;
     gap: 8px;
     margin-top: 6px;
 }

 .qe-subscribe input {
     flex: 1;
     padding: 8px 12px;
     background: #1a1717;
     border: 1px solid #2a1e1e;
     color: #ddd;
     border-radius: 0;
     font-family: 'Poppins', sans-serif;
 }

 .qe-subscribe .qe-btn {
     padding: 8px 20px;
     font-size: 0.75rem;
 }

 .qe-thanks {
     font-size: 0.8rem;
     color: #aaa;
     margin-top: 8px;
     display: none;
 }

 .qe-footer-legal {
     font-size: 0.85rem;
     color: #888;
     border-top: 1px solid #1a1717;
     padding-top: 20px;
     margin-top: 10px;
     line-height: 1.6;
 }

 .qe-footer-legal p {
     margin-bottom: 4px;
 }

 .qe-copy {
     text-align: center;
     font-size: 0.75rem;
     color: #555;
     padding-top: 16px;
     border-top: 1px solid #1a1717;
     margin-top: 16px;
 }



 .qe-contacts {
     padding: 50px 0 60px;
     background: transparent;
 }

 .qe-contacts-header {
     display: flex;
     justify-content: space-between;
     align-items: center;
     flex-wrap: wrap;
     margin-bottom: 40px;
 }

 .qe-breadcrumbs {
     font-family: 'Poppins', sans-serif;
     font-size: 0.9rem;
     color: #888;
 }

 .qe-breadcrumbs a {
     color: #bbb;
     transition: color 0.2s;
 }

 .qe-breadcrumbs a:hover {
     color: #fff;
 }

 .qe-breadcrumbs span {
     color: #ddd;
 }

 .qe-contacts-grid {
     display: grid;
     grid-template-columns: 1fr 1.2fr;
     gap: 50px;
     align-items: start;
 }


 .qe-contacts-info {
     padding-top: 8px;
 }

 .qe-email-link {
     display: inline-block;
     font-family: 'Poppins', sans-serif;
     font-size: 1.1rem;
     color: #fff;
     background: transparent;
     padding: 8px 0;
     border-bottom: 2px solid #872732;
     transition: border-color 0.2s;
 }

 .qe-email-link:hover {
     border-color: #a03a45;
 }


 .qe-contacts-form {
     background: #131212;
     border: 1px solid #1a1717;
     padding: 30px 28px;
 }

 .qe-form-group {
     margin-bottom: 16px;
 }

 .qe-form-group input,
 .qe-form-group textarea {
     width: 100%;
     padding: 12px 16px;
     background: #1a1717;
     border: 1px solid #2a1e1e;
     color: #ddd;
     font-family: 'Poppins', sans-serif;
     font-size: 0.95rem;
     border-radius: 0;
     transition: border-color 0.2s;
 }

 .qe-form-group input:focus,
 .qe-form-group textarea:focus {
     outline: none;
     border-color: #872732;
 }

 .qe-form-group textarea {
     resize: vertical;
     min-height: 100px;
 }

 .qe-contacts-form .qe-btn {
     width: 100%;
     padding: 14px;
     font-size: 1rem;
     letter-spacing: 1px;
     border: none;
     cursor: pointer;
 }


 .qe-popup-overlay {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: rgba(8, 9, 10, 0.85);
     backdrop-filter: blur(4px);
     display: none;
     align-items: center;
     justify-content: center;
     z-index: 1000;
 }

 .qe-popup {
     background: #131212;
     border: 2px solid #1a1717;
     padding: 40px 48px;
     max-width: 460px;
     width: 90%;
     text-align: center;
     position: relative;
     left: 50%;
     top: 50%;
     transform: translate(-50%, -50%);
 }

 .qe-popup-close {
     position: absolute;
     top: 12px;
     right: 20px;
     font-size: 2rem;
     color: #888;
     cursor: pointer;
     transition: color 0.2s;
     background: none;
     border: none;
     line-height: 1;
 }

 .qe-popup-close:hover {
     color: #fff;
 }

 .qe-popup-icon {
     font-size: 3.6rem;
     color: #4caf50;
     line-height: 1;
 }

 @keyframes qeFadeIn {
     from {
         opacity: 0;
         transform: scale(0.95);
     }

     to {
         opacity: 1;
         transform: scale(1);
     }
 }


 @media (max-width: 768px) {
     .qe-contacts-grid {
         grid-template-columns: 1fr;
         gap: 30px;
     }

     .qe-contacts-header {
         flex-direction: column;
         align-items: flex-start;
         gap: 10px;
     }

     .qe-popup {
         padding: 32px 24px;
     }
 }




 .qe-page {
     padding: 40px 0 60px;
     background: transparent;
 }

 .qe-page-header {
     display: flex;
     justify-content: space-between;
     align-items: center;
     flex-wrap: wrap;
     margin-bottom: 40px;
     padding-bottom: 20px;
     border-bottom: 2px solid #1a1717;
 }

 .qe-breadcrumbs {
     font-family: 'Poppins', sans-serif;
     font-size: 0.9rem;
     color: #888;
 }

 .qe-breadcrumbs a {
     color: #bbb;
     transition: color 0.2s;
 }

 .qe-breadcrumbs a:hover {
     color: #fff;
 }

 .qe-breadcrumbs span {
     color: #ddd;
 }

 .qe-page-content {
     max-width: 900px;
 }

 .qe-page-content .qe-text {
     font-size: 1rem;
     line-height: 1.8;
     color: #ddd;
     margin-bottom: 16px;
 }

 .qe-page-content h2 {
     margin: 32px 0 16px;
 }

 .qe-page-content h3 {
     font-family: 'Oswald', sans-serif;
     text-transform: uppercase;
     color: #fff;
     font-size: 1.2rem;
     margin: 24px 0 12px;
 }

 .qe-page-content ul {
     margin: 16px 0 24px 24px;
     color: #ddd;
     line-height: 1.8;
 }

 .qe-page-content ul li {
     margin-bottom: 8px;
 }

 .qe-page-content .qe-highlight-box {
     background: #131212;
     border: 1px solid #1a1717;
     border-left: 4px solid #872732;
     padding: 20px 24px;
     margin: 24px 0;
 }

 .qe-page-content .qe-highlight-box p {
     margin-bottom: 0;
     font-style: italic;
 }

 .qe-resource-grid {
     display: grid;
     grid-template-columns: 1fr 1fr 1fr;
     gap: 20px;
     margin: 24px 0 32px;
 }

 .qe-resource-card {
     background: #131212;
     border: 1px solid #1a1717;
     padding: 20px;
     text-align: center;
 }

 .qe-resource-card h4 {
     font-family: 'Oswald', sans-serif;
     color: #fff;
     font-size: 1.1rem;
     margin-bottom: 8px;
     text-transform: uppercase;
 }

 .qe-resource-card p {
     font-size: 0.9rem;
     color: #bbb;
     margin-bottom: 12px;
 }

 .qe-resource-card .qe-btn {
     font-size: 0.8rem;
     padding: 6px 20px;
 }

 .qe-page-footer {
     margin-top: 40px;
     padding-top: 24px;
     border-top: 1px solid #1a1717;
 }

 .qe-page-footer p {
     font-size: 0.85rem;
     color: #888;
     margin-bottom: 4px;
 }

 .qe-page-footer a {
     color: #bbb;
     transition: color 0.2s;
 }

 .qe-page-footer a:hover {
     color: #fff;
 }

 @media (max-width: 768px) {
     .qe-page-header {
         flex-direction: column;
         align-items: flex-start;
         gap: 12px;
     }

     .qe-resource-grid {
         grid-template-columns: 1fr;
     }
 }




 .qe-about-grid {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 50px;
     align-items: start;
 }

 .qe-about-content {
     padding-top: 8px;
 }

 .qe-about-features {
     padding-top: 8px;
 }

 .qe-feature-item {
     display: flex;
     gap: 20px;
     align-items: flex-start;
     margin-bottom: 28px;
     background: #131212;
     border: 1px solid #1a1717;
     padding: 20px;
     transition: border-color 0.3s;
 }

 .qe-feature-item:hover {
     border-color: #872732;
 }

 .qe-feature-number {
     font-family: 'Oswald', sans-serif;
     font-size: 2.2rem;
     font-weight: 700;
     color: #872732;
     background: #261316;
     padding: 0 10px;
     line-height: 1.2;
     flex-shrink: 0;
     min-width: 50px;
     text-align: center;
 }

 .qe-feature-content {
     flex: 1;
 }

 .qe-feature-content h4 {
     font-family: 'Oswald', sans-serif;
     text-transform: uppercase;
     color: #fff;
     font-size: 1.1rem;
     margin-bottom: 4px;
 }

 .qe-feature-content p {
     font-size: 0.9rem;
     color: #bbb;
     line-height: 1.6;
 }

 @media (max-width: 768px) {
     .qe-about-grid {
         grid-template-columns: 1fr;
         gap: 30px;
     }

     .qe-feature-item {
         padding: 16px;
     }

     .qe-feature-number {
         font-size: 1.8rem;
         min-width: 40px;
     }
 }




 .qe-review-grid {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 50px;
     align-items: start;
 }

 .qe-review-content {
     padding-top: 8px;
 }

 .qe-review-steps {
     padding-top: 8px;
 }


 .qe-steps-nav {
     display: flex;
     flex-direction: column;
     gap: 8px;
     margin-bottom: 24px;
 }

 .qe-step-btn {
     background: #131212;
     border: 1px solid #1a1717;
     color: #bbb;
     font-family: 'Oswald', sans-serif;
     text-transform: uppercase;
     font-size: 0.95rem;
     padding: 14px 20px;
     text-align: left;
     cursor: pointer;
     transition: all 0.3s ease;
     border-radius: 0;
     letter-spacing: 0.5px;
 }

 .qe-step-btn:hover {
     background: #1a1717;
     color: #fff;
     border-color: #2a1e1e;
 }

 .qe-step-btn.active {
     background: #261316;
     border-color: #872732;
     color: #fff;
     border-left: 4px solid #872732;
 }


 .qe-step-content {
     display: none;
     background: #131212;
     border: 1px solid #1a1717;
     padding: 24px 28px;
     animation: qeFadeIn 0.3s ease;
 }

 .qe-step-content.active {
     display: block;
 }

 .qe-step-content h4 {
     font-family: 'Oswald', sans-serif;
     text-transform: uppercase;
     color: #fff;
     font-size: 1.2rem;
     margin-bottom: 12px;
 }

 .qe-step-content p {
     font-size: 0.95rem;
     color: #ddd;
     line-height: 1.8;
     margin-bottom: 12px;
 }

 .qe-step-content p:last-child {
     margin-bottom: 0;
 }

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

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

 @media (max-width: 768px) {
     .qe-review-grid {
         grid-template-columns: 1fr;
         gap: 30px;
     }

     .qe-step-btn {
         padding: 12px 16px;
         font-size: 0.85rem;
     }

     .qe-step-content {
         padding: 20px;
     }
 }



 .qe-devices-grid {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 50px;
     align-items: start;
 }

 .qe-devices-content {
     padding-top: 8px;
 }

 .qe-devices-list {
     padding-top: 8px;
 }

 .qe-device-item {
     display: flex;
     gap: 20px;
     align-items: flex-start;
     background: #131212;
     border: 1px solid #1a1717;
     padding: 20px;
     margin-bottom: 20px;
     transition: border-color 0.3s ease;
 }

 .qe-device-item:hover {
     border-color: #872732;
 }

 .qe-device-icon {
     font-size: 2.4rem;
     line-height: 1;
     flex-shrink: 0;
     width: 50px;
     text-align: center;
     padding-top: 4px;
 }

 .qe-device-info {
     flex: 1;
 }

 .qe-device-info h4 {
     font-family: 'Oswald', sans-serif;
     text-transform: uppercase;
     color: #fff;
     font-size: 1.1rem;
     margin-bottom: 10px;
 }

 .qe-device-info p {
     font-size: 0.9rem;
     color: #bbb;
     line-height: 1.6;
     margin-bottom: 8px;
 }

 .qe-device-list {
     list-style: none;
     padding: 0;
     margin: 0;
 }

 .qe-device-list li {
     font-size: 0.85rem;
     color: #ddd;
     padding: 4px 0;
     padding-left: 20px;
     position: relative;
     line-height: 1.5;
 }

 .qe-device-list li::before {
     content: "▸";
     position: absolute;
     left: 0;
     color: #872732;
     font-weight: bold;
 }

 @media (max-width: 768px) {
     .qe-devices-grid {
         grid-template-columns: 1fr;
         gap: 30px;
     }

     .qe-device-item {
         padding: 16px;
         flex-direction: column;
         align-items: flex-start;
     }

     .qe-device-icon {
         font-size: 2rem;
         width: 100%;
         text-align: left;
     }
 }



















 @media (max-width: 900px) {
     .qe-benefits {
         grid-template-columns: repeat(3, 1fr);
     }

     .qe-stats {
         grid-template-columns: repeat(2, 1fr);
         gap: 20px;
     }

     .qe-footer-grid {
         grid-template-columns: 1fr 1fr;
     }

     .qe-game-item {
         flex-wrap: wrap;
     }

     .qe-game-img {
         flex: 0 0 100%;
         min-height: 100px;
     }
 }

 @media (max-width: 700px) {
     .qe-nav {
         display: none;
     }

     .qe-menu-toggle {
         display: flex;
     }

     .qe-benefits {
         grid-template-columns: repeat(2, 1fr);
     }

     .qe-hero {
         background-position: left center;
         background-size: cover;
         min-height: 280px;
     }

     .qe-mobile-nav a {
         margin: 10px 0;
     }

     .qe-games-header {
         flex-direction: column;
         align-items: flex-start;
     }

     .qe-footer-grid {
         grid-template-columns: 1fr;
     }

     .qe-stats {
         grid-template-columns: 1fr;
     }

     .qe-stat-item {
         justify-content: flex-start;
     }

     .qe-game-info {
         flex-direction: column;
         gap: 20px;

     }

     .qe-game-number {
         width: 100%;
         padding: 5px 0;
     }

     .qe-game-title {
         text-align: center;
         padding: 0 10px;
     }

     .qe-stat-item .qe-number {
         width: 82px;
         text-align: center;
     }

     .qe-stats {
         margin-top: 0;
     }

     .qe-logo img {
         height: 24px;
     }
 }

 @media (max-width: 480px) {
     .qe-benefits {
         grid-template-columns: 1fr 1fr;
     }
 }