body { font-family: 'Arial', sans-serif; margin: 0; padding: 0; background-color: #1a1a2e; color: #e0e0e0; } .page-km { width: 100%; max-width: 1200px; margin: 0 auto; padding: 10px; box-sizing: border-box; } .page-km__hero-section { position: relative; width: 100%; height: 500px; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; color: #fff; overflow: hidden; border-radius: 10px; margin-bottom: 30px; padding: 10px; box-sizing: border-box; } .page-km__hero-background { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; z-index: -1; } .page-km__hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8)); z-index: -1; } .page-km__hero-title { font-size: 3.5em; margin-bottom: 15px; text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7); line-height: 1.2; } .page-km__hero-subtitle { font-size: 1.5em; margin-bottom: 30px; max-width: 800px; } .page-km__cta-button { display: inline-block; background-color: #e44d26; color: #fff; padding: 15px 30px; border-radius: 50px; text-decoration: none; font-weight: bold; font-size: 1.2em; transition: background-color 0.3s ease, transform 0.2s ease; border: none; cursor: pointer; } .page-km__cta-button:hover { background-color: #ff6a00; transform: translateY(-3px); } .page-km__section { background-color: #2a2a4a; padding: 40px; border-radius: 10px; margin-bottom: 30px; box-sizing: border-box; } .page-km__section-title { font-size: 2.5em; color: #e44d26; text-align: center; margin-bottom: 30px; } .page-km__text-content { font-size: 1.1em; line-height: 1.8; margin-bottom: 20px; } .page-km__quick-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; margin-top: 30px; } .page-km__quick-link-item { flex: 1 1 calc(50% - 20px); max-width: calc(50% - 20px); text-align: center; } .page-km__quick-link-button { display: block; width: 100%; padding: 15px 20px; background-color: #3b3b6b; color: #fff; border-radius: 8px; text-decoration: none; font-weight: bold; font-size: 1.1em; transition: background-color 0.3s ease; box-sizing: border-box; } .page-km__quick-link-button:hover { background-color: #5a5a8a; } .page-km__game-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 25px; margin-top: 30px; } .page-km__game-card { background-color: #3b3b6b; border-radius: 10px; overflow: hidden; text-align: center; transition: transform 0.3s ease, box-shadow 0.3s ease; } .page-km__game-card:hover { transform: translateY(-5px); box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4); } .page-km__game-image { width: 100%; height: 200px; object-fit: cover; } .page-km__game-content { padding: 20px; } .page-km__game-title { font-size: 1.5em; color: #e44d26; margin-bottom: 10px; } .page-km__game-description { font-size: 0.95em; line-height: 1.6; color: #ccc; margin-bottom: 15px; } .page-km__game-button { display: inline-block; background-color: #e44d26; color: #fff; padding: 10px 20px; border-radius: 25px; text-decoration: none; font-weight: bold; font-size: 1em; transition: background-color 0.3s ease; } .page-km__game-button:hover { background-color: #ff6a00; } .page-km__promo-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 25px; margin-top: 30px; } .page-km__promo-card { background-color: #3b3b6b; border-radius: 10px; overflow: hidden; transition: transform 0.3s ease, box-shadow 0.3s ease; } .page-km__promo-card:hover { transform: translateY(-5px); box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4); } .page-km__promo-image { width: 100%; height: 200px; object-fit: cover; } .page-km__promo-content { padding: 20px; } .page-km__promo-title { font-size: 1.6em; color: #e44d26; margin-bottom: 10px; } .page-km__promo-description { font-size: 1em; line-height: 1.7; color: #ccc; margin-bottom: 15px; } .page-km__promo-button { display: inline-block; background-color: #e44d26; color: #fff; padding: 10px 20px; border-radius: 25px; text-decoration: none; font-weight: bold; font-size: 1em; transition: background-color 0.3s ease; } .page-km__promo-button:hover { background-color: #ff6a00; } .page-km__faq-list { list-style: none; padding: 0; margin-top: 30px; } .page-km__faq-item { background-color: #3b3b6b; border-radius: 8px; margin-bottom: 15px; overflow: hidden; } .page-km__faq-question { display: flex; justify-content: space-between; align-items: center; padding: 20px 25px; cursor: pointer; background-color: #4a4a7a; border-bottom: 1px solid #5a5a8a; user-select: none; } .page-km__faq-question h3 { margin: 0; font-size: 1.2em; color: #e0e0e0; pointer-events: none; } .page-km__faq-toggle { font-size: 1.8em; font-weight: bold; color: #e44d26; transition: transform 0.3s ease; pointer-events: none; } .page-km__faq-item.active .page-km__faq-toggle { transform: rotate(45deg); } .page-km__faq-answer { max-height: 0; overflow: hidden; padding: 0 25px; opacity: 0; transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.3s ease; } .page-km__faq-item.active .page-km__faq-answer { max-height: 2000px !important; padding: 20px 25px !important; opacity: 1; } .page-km__faq-answer p { margin: 0; line-height: 1.7; font-size: 1em; color: #ccc; } .page-km__blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 25px; margin-top: 30px; } .page-km__blog-card { background-color: #3b3b6b; border-radius: 10px; overflow: hidden; transition: transform 0.3s ease, box-shadow 0.3s ease; } .page-km__blog-card:hover { transform: translateY(-5px); box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4); } .page-km__blog-image { width: 100%; height: 180px; object-fit: cover; } .page-km__blog-content { padding: 20px; } .page-km__blog-title { font-size: 1.4em; color: #e44d26; margin-bottom: 10px; line-height: 1.4; } .page-km__blog-title a { text-decoration: none; color: inherit; transition: color 0.3s ease; } .page-km__blog-title a:hover { color: #ff6a00; } .page-km__blog-date { font-size: 0.85em; color: #999; margin-bottom: 10px; } .page-km__blog-excerpt { font-size: 0.95em; line-height: 1.6; color: #ccc; margin-bottom: 15px; } .page-km__blog-readmore { display: inline-block; color: #e44d26; text-decoration: none; font-weight: bold; transition: color 0.3s ease; } .page-km__blog-readmore:hover { color: #ff6a00; } @media (max-width: 992px) { .page-km__hero-title { font-size: 2.8em; } .page-km__hero-subtitle { font-size: 1.3em; } .page-km__section-title { font-size: 2em; } .page-km__quick-link-item { flex: 1 1 100%; max-width: 100%; } } @media (max-width: 768px) { .page-km { padding: 5px; } .page-km__hero-section { height: 400px; } .page-km__hero-title { font-size: 2.2em; } .page-km__hero-subtitle { font-size: 1.1em; } .page-km__cta-button { padding: 12px 25px; font-size: 1.1em; } .page-km__section { padding: 25px; margin-bottom: 20px; } .page-km__section-title { font-size: 1.8em; } .page-km__text-content { font-size: 1em; } .page-km__game-grid, .page-km__promo-grid, .page-km__blog-grid { grid-template-columns: 1fr; gap: 20px; } .page-km__game-image, .page-km__promo-image, .page-km__blog-image { height: 160px; } .page-km__game-title, .page-km__promo-title { font-size: 1.3em; } .page-km__blog-title { font-size: 1.2em; } .page-km__quick-links { flex-direction: column; gap: 15px; } .page-km__quick-link-button { font-size: 1em; padding: 12px 15px; } .page-km__faq-question { padding: 15px 20px; } .page-km__faq-question h3 { font-size: 1.1em; } .page-km__faq-toggle { font-size: 1.5em; } .page-km__faq-answer { padding: 0 20px; } .page-km__faq-item.active .page-km__faq-answer { padding: 15px 20px !important; } .page-km__faq-answer p { font-size: 0.95em; } } @media (max-width: 480px) { .page-km__hero-section { height: 350px; } .page-km__hero-title { font-size: 1.8em; } .page-km__hero-subtitle { font-size: 1em; } .page-km__cta-button { padding: 10px 20px; font-size: 1em; } .page-km__section { padding: 20px; } .page-km__section-title { font-size: 1.6em; } .page-km__game-content, .page-km__promo-content, .page-km__blog-content { padding: 15px; } .page-km__game-title, .page-km__promo-title { font-size: 1.2em; } .page-km__blog-title { font-size: 1.1em; } }