body { margin: 0; padding: 0; } .page-jl-wallet { font-family: 'Arial', sans-serif; color: #e0e0e0; background-color: #1a1a1a; line-height: 1.6; padding-top: 10px; } .page-jl-wallet__container { max-width: 1200px; margin: 0 auto; padding: 20px 15px; box-sizing: border-box; } .page-jl-wallet__section-title { font-size: 2.5em; color: #ffcc00; text-align: center; margin-bottom: 40px; padding-top: 20px; font-weight: 700; } @media (max-width: 768px) { .page-jl-wallet__section-title { font-size: 2em; margin-bottom: 30px; } } .page-jl-wallet__button { display: inline-block; padding: 12px 25px; border-radius: 8px; text-decoration: none; font-weight: bold; transition: background-color 0.3s ease, transform 0.3s ease; text-align: center; white-space: nowrap; box-sizing: border-box; } .page-jl-wallet__button--primary { background-color: #ffcc00; color: #1a1a1a; border: 2px solid #ffcc00; } .page-jl-wallet__button--primary:hover { background-color: #e6b800; transform: translateY(-2px); } .page-jl-wallet__button--secondary { background-color: transparent; color: #ffcc00; border: 2px solid #ffcc00; margin-left: 15px; } .page-jl-wallet__button--secondary:hover { background-color: #ffcc00; color: #1a1a1a; transform: translateY(-2px); } .page-jl-wallet__button--small { padding: 8px 18px; font-size: 0.9em; border-radius: 5px; } .page-jl-wallet__button--center { display: block; margin: 40px auto 20px auto; max-width: 250px; } /* Hero Section */ .page-jl-wallet__hero-section { position: relative; display: flex; align-items: center; justify-content: center; min-height: 600px; overflow: hidden; text-align: center; padding: 50px 15px; box-sizing: border-box; } .page-jl-wallet__hero-image { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1; filter: brightness(0.5); max-width: 100% !important; height: auto !important; } .page-jl-wallet__hero-content { position: relative; z-index: 2; color: #ffffff; max-width: 800px; padding: 20px; background: rgba(0, 0, 0, 0.4); border-radius: 10px; } .page-jl-wallet__hero-title { font-size: 3.5em; margin-bottom: 20px; color: #ffcc00; line-height: 1.2; } .page-jl-wallet__hero-subtitle { font-size: 1.3em; margin-bottom: 30px; max-width: 700px; margin-left: auto; margin-right: auto; } .page-jl-wallet__hero-buttons { display: flex; justify-content: center; gap: 20px; margin-bottom: 30px; } .page-jl-wallet__download-app-button { display: inline-flex; align-items: center; background-color: #007bff; color: #ffffff; padding: 10px 20px; border-radius: 8px; text-decoration: none; font-weight: bold; margin-top: 20px; transition: background-color 0.3s ease, transform 0.3s ease; } .page-jl-wallet__download-app-button:hover { background-color: #0056b3; transform: translateY(-2px); } @media (max-width: 768px) { .page-jl-wallet__hero-section { min-height: 500px; padding: 30px 10px; } .page-jl-wallet__hero-title { font-size: 2.2em; } .page-jl-wallet__hero-subtitle { font-size: 1em; } .page-jl-wallet__hero-buttons { flex-direction: column; gap: 10px; } .page-jl-wallet__button--secondary { margin-left: 0; } } /* Introduction Section */ .page-jl-wallet__intro-section { background-color: #222222; padding: 60px 0; text-align: center; } .page-jl-wallet__text-content { font-size: 1.1em; max-width: 900px; margin: 0 auto 20px auto; color: #cccccc; } /* Quick Access Section */ .page-jl-wallet__quick-access-section { background-color: #1a1a1a; padding: 60px 0; } .page-jl-wallet__access-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; margin-top: 40px; } .page-jl-wallet__access-card { background-color: #2c2c2c; border-radius: 10px; padding: 30px; text-align: center; text-decoration: none; color: #e0e0e0; transition: transform 0.3s ease, box-shadow 0.3s ease; display: flex; flex-direction: column; align-items: center; box-sizing: border-box; } .page-jl-wallet__access-card:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3); } .page-jl-wallet__access-card-icon { width: 80px; height: 80px; margin-bottom: 20px; object-fit: contain; max-width: 100% !important; height: auto !important; } .page-jl-wallet__access-card-title { font-size: 1.4em; color: #ffcc00; margin-bottom: 10px; } .page-jl-wallet__access-card-description { font-size: 0.95em; color: #cccccc; } @media (max-width: 768px) { .page-jl-wallet__access-grid { grid-template-columns: 1fr; } .page-jl-wallet__access-card { padding: 20px; } .page-jl-wallet__access-card-icon { width: 60px; height: 60px; } } /* Games Section */ .page-jl-wallet__games-section { background-color: #222222; padding: 60px 0; } .page-jl-wallet__games-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-top: 40px; } .page-jl-wallet__game-card { background-color: #2c2c2c; border-radius: 10px; overflow: hidden; text-align: center; transition: transform 0.3s ease, box-shadow 0.3s ease; box-sizing: border-box; } .page-jl-wallet__game-card:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3); } .page-jl-wallet__game-card-image { width: 100%; height: 200px; object-fit: cover; border-bottom: 1px solid #3a3a3a; max-width: 100% !important; height: auto !important; } .page-jl-wallet__game-card-title { font-size: 1.5em; color: #ffcc00; margin: 20px 15px 10px 15px; } .page-jl-wallet__game-card-description { font-size: 0.95em; color: #cccccc; padding: 0 15px 20px 15px; min-height: 70px; } .page-jl-wallet__game-card .page-jl-wallet__button { margin-bottom: 20px; } @media (max-width: 768px) { .page-jl-wallet__games-grid { grid-template-columns: 1fr; } } /* Promotions Section */ .page-jl-wallet__promotions-section { background-color: #1a1a1a; padding: 60px 0; } .page-jl-wallet__promotions-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-top: 40px; } .page-jl-wallet__promo-card { background-color: #2c2c2c; border-radius: 10px; overflow: hidden; text-align: center; transition: transform 0.3s ease, box-shadow 0.3s ease; box-sizing: border-box; } .page-jl-wallet__promo-card:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3); } .page-jl-wallet__promo-card-image { width: 100%; height: 200px; object-fit: cover; border-bottom: 1px solid #3a3a3a; max-width: 100% !important; height: auto !important; } .page-jl-wallet__promo-card-title { font-size: 1.5em; color: #ffcc00; margin: 20px 15px 10px 15px; } .page-jl-wallet__promo-card-description { font-size: 0.95em; color: #cccccc; padding: 0 15px 20px 15px; min-height: 70px; } .page-jl-wallet__promo-card .page-jl-wallet__button { margin-bottom: 20px; } @media (max-width: 768px) { .page-jl-wallet__promotions-grid { grid-template-columns: 1fr; } } /* Security & Customer Service Section */ .page-jl-wallet__security-section { background-color: #222222; padding: 60px 0; text-align: center; } .page-jl-wallet__security-content { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-top: 40px; } .page-jl-wallet__security-item { background-color: #2c2c2c; border-radius: 10px; padding: 30px; text-align: center; box-sizing: border-box; transition: transform 0.3s ease, box-shadow 0.3s ease; } .page-jl-wallet__security-item:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3); } .page-jl-wallet__security-item-icon { width: 100px; height: 100px; margin-bottom: 20px; object-fit: contain; max-width: 100% !important; height: auto !important; } .page-jl-wallet__security-item-title { font-size: 1.4em; color: #ffcc00; margin-bottom: 10px; } .page-jl-wallet__security-item-description { font-size: 0.95em; color: #cccccc; } @media (max-width: 768px) { .page-jl-wallet__security-content { grid-template-columns: 1fr; } } /* FAQ Section */ .page-jl-wallet__faq-section { background-color: #1a1a1a; padding: 60px 0; } .page-jl-wallet__faq-list { max-width: 900px; margin: 40px auto 0 auto; } .page-jl-wallet__faq-item { background-color: #2c2c2c; border-radius: 8px; margin-bottom: 15px; overflow: hidden; box-sizing: border-box; } .page-jl-wallet__faq-question { display: flex; justify-content: space-between; align-items: center; padding: 20px 25px; cursor: pointer; user-select: none; background-color: #3a3a3a; color: #ffcc00; font-size: 1.15em; font-weight: bold; transition: background-color 0.3s ease; } .page-jl-wallet__faq-question:hover { background-color: #4a4a4a; } .page-jl-wallet__faq-question-text { margin: 0; flex-grow: 1; color: #ffcc00; pointer-events: none; } .page-jl-wallet__faq-toggle { font-size: 1.5em; line-height: 1; margin-left: 15px; transition: transform 0.3s ease; color: #ffcc00; pointer-events: none; } .page-jl-wallet__faq-item.active .page-jl-wallet__faq-toggle { transform: rotate(45deg); } .page-jl-wallet__faq-answer { max-height: 0; overflow: hidden; padding: 0 25px; opacity: 0; color: #cccccc; transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease; } .page-jl-wallet__faq-item.active .page-jl-wallet__faq-answer { max-height: 2000px !important; padding: 20px 25px !important; opacity: 1; } @media (max-width: 768px) { .page-jl-wallet__faq-question { padding: 15px 20px; font-size: 1em; } .page-jl-wallet__faq-answer { padding: 0 20px; } .page-jl-wallet__faq-item.active .page-jl-wallet__faq-answer { padding: 15px 20px !important; } } /* Blog Section */ .page-jl-wallet__blog-section { background-color: #222222; padding: 60px 0; } .page-jl-wallet__blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-top: 40px; } .page-jl-wallet__blog-card { background-color: #2c2c2c; border-radius: 10px; overflow: hidden; transition: transform 0.3s ease, box-shadow 0.3s ease; box-sizing: border-box; display: flex; flex-direction: column; } .page-jl-wallet__blog-card:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3); } .page-jl-wallet__blog-card-image { width: 100%; height: 220px; object-fit: cover; border-bottom: 1px solid #3a3a3a; max-width: 100% !important; height: auto !important; } .page-jl-wallet__blog-card-content { padding: 20px; flex-grow: 1; display: flex; flex-direction: column; } .page-jl-wallet__blog-card-title { font-size: 1.4em; color: #ffcc00; margin-bottom: 10px; line-height: 1.3; } .page-jl-wallet__blog-card-date { font-size: 0.85em; color: #999999; margin-bottom: 15px; } .page-jl-wallet__blog-card-summary { font-size: 0.95em; color: #cccccc; margin-bottom: 20px; flex-grow: 1; } .page-jl-wallet__blog-card .page-jl-wallet__button { align-self: flex-start; } @media (max-width: 768px) { .page-jl-wallet__blog-grid { grid-template-columns: 1fr; } } /* General responsive rules for images and lists */ img { max-width: 100% !important; height: auto !important; box-sizing: border-box !important; } .page-jl-wallet__access-grid, .page-jl-wallet__games-grid, .page-jl-wallet__promotions-grid, .page-jl-wallet__security-content, .page-jl-wallet__blog-grid { width: 100% !important; max-width: 100% !important; box-sizing: border-box !important; padding: 0 !important; margin-left: 0 !important; margin-right: 0 !important; } .page-jl-wallet__access-card, .page-jl-wallet__game-card, .page-jl-wallet__promo-card, .page-jl-wallet__security-item, .page-jl-wallet__blog-card { width: 100% !important; max-width: 100% !important; box-sizing: border-box !important; margin-left: 0 !important; margin-right: 0 !important; word-wrap: break-word !important; overflow-wrap: break-word !important; word-break: break-word !important; } @media (max-width: 768px) { .page-jl-wallet__access-card, .page-jl-wallet__game-card, .page-jl-wallet__promo-card, .page-jl-wallet__security-item, .page-jl-wallet__blog-card { padding-left: 15px !important; padding-right: 15px !important; } }