.page-playtime-web-app { font-family: 'Arial', sans-serif; color: #f0f0f0; background-color: #1a1a1a; line-height: 1.6; } .page-playtime-web-app__hero-section { background-color: #222; padding: 10px 20px 60px; text-align: center; display: flex; flex-direction: column; align-items: center; justify-content: center; position: relative; overflow: hidden; } .page-playtime-web-app__hero-content { max-width: 900px; z-index: 1; position: relative; } .page-playtime-web-app__hero-title { font-size: 3.2em; color: #ffd700; margin-bottom: 20px; text-shadow: 0 0 10px rgba(255, 215, 0, 0.6); } .page-playtime-web-app__hero-description { font-size: 1.2em; color: #e0e0e0; margin-bottom: 30px; } .page-playtime-web-app__hero-actions { display: flex; gap: 20px; justify-content: center; } .page-playtime-web-app__btn { display: inline-block; padding: 15px 30px; border-radius: 8px; text-decoration: none; font-weight: bold; transition: background-color 0.3s ease, transform 0.3s ease; font-size: 1.1em; white-space: nowrap; } .page-playtime-web-app__btn--primary { background-color: #ffd700; color: #1a1a1a; border: 2px solid #ffd700; } .page-playtime-web-app__btn--primary:hover { background-color: #e6c200; transform: translateY(-3px); } .page-playtime-web-app__btn--secondary { background-color: transparent; color: #ffd700; border: 2px solid #ffd700; } .page-playtime-web-app__btn--secondary:hover { background-color: rgba(255, 215, 0, 0.1); transform: translateY(-3px); } .page-playtime-web-app__hero-image-wrapper { position: absolute; top: 0; left: 0; width: 100%; height: 100%; overflow: hidden; z-index: 0; } .page-playtime-web-app__hero-image { width: 100%; height: 100%; object-fit: cover; opacity: 0.2; } .page-playtime-web-app__section-title { font-size: 2.5em; color: #ffd700; text-align: center; margin-bottom: 20px; padding-top: 50px; text-shadow: 0 0 8px rgba(255, 215, 0, 0.4); } .page-playtime-web-app__section-subtitle { font-size: 1.1em; color: #ccc; text-align: center; margin-bottom: 40px; max-width: 800px; margin-left: auto; margin-right: auto; } .page-playtime-web-app__features-section, .page-playtime-web-app__games-section, .page-playtime-web-app__providers-section, .page-playtime-web-app__faq-section, .page-playtime-web-app__cta-section { padding: 40px 20px; max-width: 1200px; margin: 0 auto; } .page-playtime-web-app__features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; justify-content: center; margin-top: 40px; } .page-playtime-web-app__feature-item { background-color: #2a2a2a; padding: 30px; border-radius: 12px; text-align: center; box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3); transition: transform 0.3s ease, box-shadow 0.3s ease; } .page-playtime-web-app__feature-item:hover { transform: translateY(-5px); box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5); } .page-playtime-web-app__feature-icon { width: 120px; height: 120px; object-fit: contain; margin-bottom: 20px; } .page-playtime-web-app__feature-title { font-size: 1.8em; color: #ffd700; margin-bottom: 15px; } .page-playtime-web-app__feature-description { font-size: 1em; color: #ccc; } .page-playtime-web-app__games-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; margin-top: 40px; } .page-playtime-web-app__game-card { background-color: #2a2a2a; border-radius: 12px; overflow: hidden; text-align: center; box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3); transition: transform 0.3s ease, box-shadow 0.3s ease; display: flex; flex-direction: column; } .page-playtime-web-app__game-card:hover { transform: translateY(-5px); box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5); } .page-playtime-web-app__game-image { width: 100%; height: 200px; object-fit: cover; } .page-playtime-web-app__game-title { font-size: 1.6em; color: #ffd700; margin: 20px 15px 10px; } .page-playtime-web-app__game-description { font-size: 0.95em; color: #ccc; padding: 0 15px 20px; flex-grow: 1; } .page-playtime-web-app__btn--small { padding: 10px 20px; font-size: 0.9em; margin-bottom: 20px; } .page-playtime-web-app__providers-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); gap: 20px; justify-items: center; align-items: center; margin-top: 40px; } .page-playtime-web-app__provider-logo-wrapper { background-color: #2a2a2a; padding: 15px; border-radius: 8px; display: flex; align-items: center; justify-content: center; height: 80px; width: 100%; max-width: 160px; box-sizing: border-box; transition: transform 0.3s ease; } .page-playtime-web-app__provider-logo-wrapper:hover { transform: scale(1.05); } .page-playtime-web-app__provider-logo { max-height: 100%; max-width: 100%; width: auto; object-fit: contain; } .page-playtime-web-app__faq-list { margin-top: 40px; } .page-playtime-web-app__faq-item { background-color: #2a2a2a; border-radius: 12px; margin-bottom: 15px; overflow: hidden; box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2); } .page-playtime-web-app__faq-question { display: flex; justify-content: space-between; align-items: center; padding: 20px 25px; cursor: pointer; user-select: none; background-color: #333; transition: background-color 0.3s ease; } .page-playtime-web-app__faq-question:hover { background-color: #444; } .page-playtime-web-app__faq-question h3 { margin: 0; font-size: 1.3em; color: #ffd700; pointer-events: none; } .page-playtime-web-app__faq-toggle { font-size: 1.8em; font-weight: bold; color: #ffd700; transition: transform 0.3s ease; pointer-events: none; } .page-playtime-web-app__faq-item.active .page-playtime-web-app__faq-toggle { transform: rotate(45deg); } .page-playtime-web-app__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.4s ease; background-color: #2a2a2a; } .page-playtime-web-app__faq-item.active .page-playtime-web-app__faq-answer { max-height: 2000px !important; padding: 20px 25px !important; opacity: 1; } .page-playtime-web-app__faq-answer p { margin: 0; color: #ccc; font-size: 1em; } .page-playtime-web-app__cta-section { text-align: center; padding-bottom: 60px; } .page-playtime-web-app__btn--large { padding: 18px 40px; font-size: 1.2em; margin-top: 30px; } @media (max-width: 768px) { .page-playtime-web-app__hero-title { font-size: 2.2em; } .page-playtime-web-app__hero-description { font-size: 1em; } .page-playtime-web-app__hero-actions { flex-direction: column; gap: 15px; } .page-playtime-web-app__btn { width: 100%; max-width: 300px; margin: 0 auto; } .page-playtime-web-app__section-title { font-size: 2em; padding-top: 30px; } .page-playtime-web-app__section-subtitle { font-size: 0.95em; margin-bottom: 30px; } .page-playtime-web-app__features-section, .page-playtime-web-app__games-section, .page-playtime-web-app__providers-section, .page-playtime-web-app__faq-section, .page-playtime-web-app__cta-section { padding: 30px 15px; } .page-playtime-web-app__features-grid, .page-playtime-web-app__games-grid, .page-playtime-web-app__providers-grid { grid-template-columns: 1fr !important; gap: 20px !important; } .page-playtime-web-app__feature-item, .page-playtime-web-app__game-card, .page-playtime-web-app__provider-logo-wrapper, .page-playtime-web-app__faq-item { width: 100% !important; max-width: 100% !important; box-sizing: border-box !important; margin-left: 0 !important; margin-right: 0 !important; padding-left: 15px !important; padding-right: 15px !important; word-wrap: break-word !important; overflow-wrap: break-word !important; word-break: break-word !important; } .page-playtime-web-app__feature-item { padding: 25px; } .page-playtime-web-app__feature-icon { width: 100px; height: 100px; } .page-playtime-web-app__game-title { font-size: 1.4em; } .page-playtime-web-app__game-description { font-size: 0.9em; } .page-playtime-web-app__provider-logo-wrapper { max-width: 100%; height: 70px; } .page-playtime-web-app__faq-question { padding: 18px 20px; } .page-playtime-web-app__faq-question h3 { font-size: 1.1em; } .page-playtime-web-app__faq-toggle { font-size: 1.5em; } .page-playtime-web-app__faq-answer { padding: 0 20px; } .page-playtime-web-app__faq-item.active .page-playtime-web-app__faq-answer { padding: 15px 20px !important; } .page-playtime-web-app__faq-answer p { font-size: 0.9em; } .page-playtime-web-app__btn--large { padding: 15px 30px; font-size: 1.1em; } }