.page-cubet-app { font-family: 'Arial', sans-serif; color: #fff; background-color: #1a1a2e; line-height: 1.6; } .page-cubet-app__section { padding: 40px 20px; text-align: center; max-width: 1200px; margin: 0 auto; } .page-cubet-app__hero-section { background: linear-gradient(135deg, #1a1a2e, #330033); padding-top: 10px; position: relative; overflow: hidden; } .page-cubet-app__hero-image { width: 100%; height: auto; max-width: 100%; object-fit: cover; position: absolute; top: 0; left: 0; z-index: 0; opacity: 0.3; min-height: 200px; } .page-cubet-app__hero-content { position: relative; z-index: 1; padding: 60px 20px; } .page-cubet-app__hero-title { font-size: 3em; color: #ffcc00; margin-bottom: 20px; text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7); } .page-cubet-app__hero-description { font-size: 1.2em; color: #eee; margin-bottom: 30px; } .page-cubet-app__cta-group { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; } .page-cubet-app__cta-button { display: inline-block; background-color: #ffcc00; color: #1a1a2e; 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-cubet-app__cta-button:hover { background-color: #e6b800; transform: translateY(-3px); } .page-cubet-app__title { font-size: 2.5em; color: #ffcc00; margin-bottom: 30px; text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5); } .page-cubet-app__subtitle { font-size: 1.5em; color: #ccc; margin-bottom: 20px; } .page-cubet-app__text { font-size: 1.1em; color: #ccc; margin-bottom: 20px; } .page-cubet-app__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; margin-top: 30px; } .page-cubet-app__card { background-color: #2e002e; border-radius: 15px; padding: 25px; text-align: center; box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3); transition: transform 0.3s ease; display: flex; flex-direction: column; justify-content: space-between; align-items: center; } .page-cubet-app__card:hover { transform: translateY(-5px); } .page-cubet-app__card-image { width: 100%; height: 200px; object-fit: cover; border-radius: 10px; margin-bottom: 15px; max-width: 100%; box-sizing: border-box !important; } .page-cubet-app__card-title { font-size: 1.5em; color: #ffcc00; margin-bottom: 10px; } .page-cubet-app__card-description { font-size: 0.95em; color: #aaa; margin-bottom: 15px; } .page-cubet-app__feature-list { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; } .page-cubet-app__feature-item { background-color: #2e002e; border-radius: 10px; padding: 20px; text-align: left; box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); width: calc(33% - 20px); box-sizing: border-box; display: flex; align-items: flex-start; gap: 15px; } .page-cubet-app__feature-item-icon { width: 60px; height: 60px; object-fit: contain; flex-shrink: 0; min-width: 60px; min-height: 60px; } .page-cubet-app__feature-item-content { flex-grow: 1; } .page-cubet-app__feature-item-title { font-size: 1.3em; color: #ffcc00; margin-bottom: 8px; } .page-cubet-app__feature-item-text { font-size: 0.95em; color: #ccc; } .page-cubet-app__game-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 25px; margin-top: 30px; } .page-cubet-app__game-card { background-color: #2e002e; border-radius: 15px; overflow: hidden; box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3); text-align: center; } .page-cubet-app__game-card-image { width: 100%; height: 180px; object-fit: cover; max-width: 100%; box-sizing: border-box !important; } .page-cubet-app__game-card-content { padding: 20px; } .page-cubet-app__game-card-title { font-size: 1.4em; color: #ffcc00; margin-bottom: 15px; } .page-cubet-app__game-card .page-cubet-app__cta-button { padding: 10px 20px; font-size: 1em; } .page-cubet-app__faq-section { background-color: #2e002e; border-radius: 15px; padding: 30px; margin-top: 40px; } .page-cubet-app__faq-item { margin-bottom: 15px; border-bottom: 1px solid #440044; } .page-cubet-app__faq-item:last-child { border-bottom: none; } .page-cubet-app__faq-question { display: flex; justify-content: space-between; align-items: center; cursor: pointer; padding: 15px 0; user-select: none; transition: background-color 0.3s ease; } .page-cubet-app__faq-question:hover { background-color: #3a003a; } .page-cubet-app__faq-question h3 { margin: 0; font-size: 1.2em; color: #ffcc00; pointer-events: none; } .page-cubet-app__faq-toggle { font-size: 1.8em; font-weight: bold; color: #ffcc00; transition: transform 0.3s ease; pointer-events: none; } .page-cubet-app__faq-item.active .page-cubet-app__faq-toggle { transform: rotate(45deg); } .page-cubet-app__faq-answer { max-height: 0; overflow: hidden; padding: 0 15px; opacity: 0; transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease; text-align: left; color: #ccc; } .page-cubet-app__faq-item.active .page-cubet-app__faq-answer { max-height: 2000px !important; padding: 20px 15px !important; opacity: 1; } .page-cubet-app__blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 25px; margin-top: 30px; } .page-cubet-app__blog-card { background-color: #2e002e; border-radius: 15px; overflow: hidden; box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3); text-align: left; transition: transform 0.3s ease; } .page-cubet-app__blog-card:hover { transform: translateY(-5px); } .page-cubet-app__blog-card-image { width: 100%; height: 220px; object-fit: cover; max-width: 100%; box-sizing: border-box !important; } .page-cubet-app__blog-card-content { padding: 20px; } .page-cubet-app__blog-card-title { font-size: 1.3em; color: #ffcc00; margin-bottom: 10px; line-height: 1.4; } .page-cubet-app__blog-card-description { font-size: 0.9em; color: #aaa; margin-bottom: 15px; } .page-cubet-app__blog-card-date { font-size: 0.85em; color: #777; margin-bottom: 10px; } .page-cubet-app__blog-card .page-cubet-app__cta-button { padding: 8px 15px; font-size: 0.9em; } .page-cubet-app__quick-access-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; margin-top: 30px; }