html { scroll-behavior: smooth; } body { font-family: 'Arial', sans-serif; margin: 0; padding: 0; background-color: #f8f8f8; color: #333; line-height: 1.6; } .page-tongits-demo__container { max-width: 1200px; margin: 0 auto; padding: 20px; box-sizing: border-box; } .page-tongits-demo__section { padding: 40px 20px; margin-bottom: 20px; background-color: #fff; border-radius: 8px; box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05); } .page-tongits-demo__hero-section { background: linear-gradient(135deg, #0f4c81, #1e6091); color: #fff; text-align: center; padding: 100px 20px 60px; border-radius: 0 0 15px 15px; position: relative; overflow: hidden; padding-top: calc(var(--header-offset, 122px) + 10px); } .page-tongits-demo__hero-image { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.3; z-index: 0; } .page-tongits-demo__hero-content { position: relative; z-index: 1; max-width: 800px; margin: 0 auto; } .page-tongits-demo__hero-title { font-size: 2.8em; margin-bottom: 15px; line-height: 1.2; text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3); } .page-tongits-demo__hero-subtitle { font-size: 1.3em; margin-bottom: 30px; opacity: 0.9; } .page-tongits-demo__cta-button { display: inline-block; background-color: #ffcc00; color: #1a1a1a; padding: 15px 30px; border-radius: 50px; text-decoration: none; font-weight: bold; font-size: 1.1em; transition: background-color 0.3s ease, transform 0.2s ease; border: none; cursor: pointer; } .page-tongits-demo__cta-button:hover { background-color: #e6b800; transform: translateY(-2px); } .page-tongits-demo__section-title { font-size: 2em; color: #0f4c81; text-align: center; margin-bottom: 30px; position: relative; padding-bottom: 10px; } .page-tongits-demo__section-title::after { content: ''; display: block; width: 60px; height: 4px; background-color: #ffcc00; margin: 10px auto 0; border-radius: 2px; } .page-tongits-demo__intro-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 25px; text-align: center; } .page-tongits-demo__intro-item { background-color: #f2f7fa; padding: 25px; border-radius: 8px; transition: transform 0.3s ease, box-shadow 0.3s ease; } .page-tongits-demo__intro-item:hover { transform: translateY(-5px); box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); } .page-tongits-demo__intro-icon { font-size: 3em; color: #ffcc00; margin-bottom: 15px; } .page-tongits-demo__intro-item h3 { font-size: 1.4em; color: #0f4c81; margin-bottom: 10px; } .page-tongits-demo__game-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 25px; } .page-tongits-demo__game-card { background-color: #f2f7fa; border-radius: 8px; overflow: hidden; text-align: center; box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05); transition: transform 0.3s ease, box-shadow 0.3s ease; } .page-tongits-demo__game-card:hover { transform: translateY(-5px); box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); } .page-tongits-demo__game-image { width: 100%; height: 200px; object-fit: cover; } .page-tongits-demo__game-content { padding: 20px; } .page-tongits-demo__game-content h3 { font-size: 1.3em; color: #0f4c81; margin-bottom: 10px; } .page-tongits-demo__game-content p { font-size: 0.95em; color: #555; margin-bottom: 15px; } .page-tongits-demo__promo-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 25px; } .page-tongits-demo__promo-card { background-color: #f2f7fa; border-radius: 8px; overflow: hidden; box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05); display: flex; flex-direction: column; transition: transform 0.3s ease, box-shadow 0.3s ease; } .page-tongits-demo__promo-card:hover { transform: translateY(-5px); box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); } .page-tongits-demo__promo-image { width: 100%; height: 180px; object-fit: cover; } .page-tongits-demo__promo-content { padding: 20px; flex-grow: 1; } .page-tongits-demo__promo-content h3 { font-size: 1.3em; color: #0f4c81; margin-bottom: 10px; } .page-tongits-demo__promo-content p { font-size: 0.95em; color: #555; margin-bottom: 15px; } .page-tongits-demo__security-features { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 25px; text-align: center; } .page-tongits-demo__feature-item { background-color: #f2f7fa; padding: 25px; border-radius: 8px; } .page-tongits-demo__feature-item h3 { font-size: 1.4em; color: #0f4c81; margin-bottom: 10px; } .page-tongits-demo__payment-methods { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; margin-top: 20px; } .page-tongits-demo__payment-logo { height: 60px; max-width: 150px; object-fit: contain; } .page-tongits-demo__faq-list { list-style: none; padding: 0; max-width: 800px; margin: 0 auto; } .page-tongits-demo__faq-item { background-color: #f2f7fa; border-radius: 8px; margin-bottom: 15px; overflow: hidden; box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03); } .page-tongits-demo__faq-question { display: flex; justify-content: space-between; align-items: center; padding: 18px 20px; cursor: pointer; background-color: #e6f0f7; color: #0f4c81; font-weight: bold; font-size: 1.1em; transition: background-color 0.3s ease; user-select: none; } .page-tongits-demo__faq-question:hover { background-color: #d9e5f0; } .page-tongits-demo__faq-question h3 { margin: 0; flex-grow: 1; pointer-events: none; color: #0f4c81; font-size: 1.1em; } .page-tongits-demo__faq-toggle { font-size: 1.5em; line-height: 1; margin-left: 15px; pointer-events: none; transition: transform 0.3s ease; } .page-tongits-demo__faq-item.active .page-tongits-demo__faq-toggle { transform: rotate(45deg); } .page-tongits-demo__faq-answer { max-height: 0; overflow: hidden; padding: 0 20px; transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease; opacity: 0; color: #555; } .page-tongits-demo__faq-item.active .page-tongits-demo__faq-answer { max-height: 2000px !important; padding: 20px !important; opacity: 1; } .page-tongits-demo__blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 25px; } .page-tongits-demo__blog-card { background-color: #f2f7fa; border-radius: 8px; overflow: hidden; box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05); display: flex; flex-direction: column; transition: transform 0.3s ease, box-shadow 0.3s ease; } .page-tongits-demo__blog-card:hover { transform: translateY(-5px); box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); } .page-tongits-demo__blog-image { width: 100%; height: 180px; object-fit: cover; } .page-tongits-demo__blog-content { padding: 20px; flex-grow: 1; } .page-tongits-demo__blog-content h3 { font-size: 1.3em; color: #0f4c81; margin-bottom: 10px; } .page-tongits-demo__blog-content p { font-size: 0.95em; color: #555; margin-bottom: 15px; } .page-tongits-demo__blog-link { display: inline-block; color: #0f4c81; text-decoration: none; font-weight: bold; transition: color 0.3s ease; } .page-tongits-demo__blog-link:hover { color: #ffcc00; } @media (max-width: 768px) { .page-tongits-demo__hero-title { font-size: 2em; } .page-tongits-demo__hero-subtitle { font-size: 1.1em; } .page-tongits-demo__section { padding: 20px 10px; } .page-tongits-demo__section-title { font-size: 1.6em; } .page-tongits-demo__intro-grid, .page-tongits-demo__game-grid, .page-tongits-demo__promo-grid, .page-tongits-demo__security-features, .page-tongits-demo__blog-grid { grid-template-columns: 1fr; } .page-tongits-demo__intro-item, .page-tongits-demo__game-card, .page-tongits-demo__promo-card, .page-tongits-demo__feature-item, .page-tongits-demo__blog-card { width: 100% !important; max-width: 100% !important; box-sizing: border-box !important; margin-left: 0 !important; margin-right: 0 !important; } .page-tongits-demo__intro-item p, .page-tongits-demo__game-content p, .page-tongits-demo__promo-content p, .page-tongits-demo__feature-item p, .page-tongits-demo__blog-content p, .page-tongits-demo__faq-answer { word-wrap: break-word !important; overflow-wrap: break-word !important; word-break: break-word !important; } .page-tongits-demo__faq-question { padding: 15px; font-size: 1em; } .page-tongits-demo__faq-question h3 { font-size: 1em; } .page-tongits-demo__faq-answer { padding: 15px !important; } }