body { margin: 0; padding: 0; } :root { --page-cs-nustargame-primary-color: #FFD700; /* Gold/Yellow for highlights */ --page-cs-nustargame-secondary-color: #007BFF; /* Blue for buttons */ --page-cs-nustargame-background-dark: #1a1a1a; --page-cs-nustargame-text-light: #f8f9fa; --page-cs-nustargame-text-dark: #333; --page-cs-nustargame-card-bg: #282828; --page-cs-nustargame-border-color: #444; } .page-cs-nustargame { font-family: 'Arial', sans-serif; color: var(--page-cs-nustargame-text-light); background-color: var(--page-cs-nustargame-background-dark); line-height: 1.6; padding-top: 10px; /* Small decorative top padding, relies on body padding-top for header offset */ } .page-cs-nustargame__section-title { font-size: 2.5rem; color: var(--page-cs-nustargame-primary-color); text-align: center; margin-bottom: 40px; padding: 0 15px; text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5); } .page-cs-nustargame__section-title--small { font-size: 2rem; margin-bottom: 30px; } .page-cs-nustargame__brand-highlight { color: var(--page-cs-nustargame-secondary-color); } .page-cs-nustargame__cta-button, .page-cs-nustargame__access-button, .page-cs-nustargame__game-button, .page-cs-nustargame__promo-button, .page-cs-nustargame__blog-link { display: inline-block; background-color: var(--page-cs-nustargame-secondary-color); color: var(--page-cs-nustargame-text-light); padding: 12px 25px; border-radius: 5px; text-decoration: none; font-weight: bold; transition: background-color 0.3s ease, transform 0.2s ease; border: none; cursor: pointer; } .page-cs-nustargame__cta-button:hover, .page-cs-nustargame__access-button:hover, .page-cs-nustargame__game-button:hover, .page-cs-nustargame__promo-button:hover, .page-cs-nustargame__blog-link:hover { background-color: #0056b3; transform: translateY(-2px); } /* HERO Section */ .page-cs-nustargame__hero-section { position: relative; display: flex; flex-direction: column; justify-content: center; align-items: center; min-height: 600px; text-align: center; overflow: hidden; padding: 60px 20px; } .page-cs-nustargame__hero-image-wrapper { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 0; } .page-cs-nustargame__hero-image { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.5); /* Darken image for text readability */ display: block; max-width: 100%; } .page-cs-nustargame__hero-content { position: relative; z-index: 1; max-width: 900px; margin: 0 auto; } .page-cs-nustargame__hero-title { font-size: 3.5rem; margin-bottom: 20px; color: var(--page-cs-nustargame-text-light); text-shadow: 0 3px 6px rgba(0, 0, 0, 0.7); } .page-cs-nustargame__hero-description { font-size: 1.3rem; margin-bottom: 40px; color: var(--page-cs-nustargame-text-light); text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5); } /* Partner/Supplier Logo Area */ .page-cs-nustargame__payment-providers { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 30px; width: 100%; max-width: 100%; box-sizing: border-box; padding: 40px 20px; background-color: var(--page-cs-nustargame-card-bg); border-bottom: 1px solid var(--page-cs-nustargame-border-color); } .page-cs-nustargame__logo-grid { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 30px; width: 100%; max-width: 1200px; /* Limit width of logo grid */ } .page-cs-nustargame__payment-logo { flex: 0 0 auto; width: 80px; height: 80px; max-width: 80px; max-height: 80px; box-sizing: border-box; display: flex; justify-content: center; align-items: center; background-color: #333; border-radius: 8px; padding: 5px; } .page-cs-nustargame__payment-logo img { display: block; width: 80px !important; height: 80px !important; max-width: 80px !important; max-height: 80px !important; object-fit: contain; filter: grayscale(100%) brightness(1.5); /* Make logos monochrome for consistency */ transition: filter 0.3s ease; } .page-cs-nustargame__payment-logo img:hover { filter: grayscale(0%) brightness(1); /* Colorize on hover */ } /* Introduction Section */ .page-cs-nustargame__intro-section { padding: 80px 20px; max-width: 1200px; margin: 0 auto; text-align: center; } .page-cs-nustargame__intro-text { font-size: 1.1rem; margin-bottom: 50px; max-width: 800px; margin-left: auto; margin-right: auto; } .page-cs-nustargame__intro-features { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; margin-top: 40px; } .page-cs-nustargame__feature-item { background-color: var(--page-cs-nustargame-card-bg); padding: 30px; border-radius: 10px; box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); text-align: center; } .page-cs-nustargame__feature-icon { width: 80px; height: 80px; object-fit: contain; margin-bottom: 20px; max-width: 100%; height: auto; display: block; margin-left: auto; margin-right: auto; } .page-cs-nustargame__feature-title { font-size: 1.5rem; color: var(--page-cs-nustargame-primary-color); margin-bottom: 15px; } .page-cs-nustargame__feature-description { font-size: 1rem; color: #ccc; } /* Quick Access Section */ .page-cs-nustargame__quick-access-section { padding: 80px 20px; max-width: 1200px; margin: 0 auto; text-align: center; } .page-cs-nustargame__access-buttons { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; margin-top: 40px; } .page-cs-nustargame__access-button { flex: 1 1 auto; min-width: 200px; max-width: 300px; padding: 15px 25px; font-size: 1.1rem; border-radius: 8px; background-color: var(--page-cs-nustargame-primary-color); color: var(--page-cs-nustargame-background-dark); font-weight: bold; text-shadow: none; } .page-cs-nustargame__access-button:hover { background-color: #e6c200; transform: translateY(-3px); } /* Games Section */ .page-cs-nustargame__games-section { padding: 80px 20px; max-width: 1200px; margin: 0 auto; } .page-cs-nustargame__game-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; margin-top: 40px; } .page-cs-nustargame__game-card { background-color: var(--page-cs-nustargame-card-bg); border-radius: 10px; overflow: hidden; box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); text-align: center; display: flex; flex-direction: column; transition: transform 0.3s ease; } .page-cs-nustargame__game-card:hover { transform: translateY(-5px); } .page-cs-nustargame__game-image { width: 100%; height: 200px; object-fit: cover; display: block; max-width: 100%; } .page-cs-nustargame__game-title { font-size: 1.6rem; color: var(--page-cs-nustargame-primary-color); margin: 20px 15px 10px; } .page-cs-nustargame__game-description { font-size: 0.95rem; color: #ccc; padding: 0 15px 20px; flex-grow: 1; } .page-cs-nustargame__game-button { margin: 0 15px 20px; align-self: center; width: calc(100% - 30px); } /* Promotions Section */ .page-cs-nustargame__promo-section { padding: 80px 20px; max-width: 1200px; margin: 0 auto; } .page-cs-nustargame__promo-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-top: 40px; } .page-cs-nustargame__promo-card { background-color: var(--page-cs-nustargame-card-bg); border-radius: 10px; overflow: hidden; box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); text-align: center; display: flex; flex-direction: column; transition: transform 0.3s ease; } .page-cs-nustargame__promo-card:hover { transform: translateY(-5px); } .page-cs-nustargame__promo-image { width: 100%; height: 220px; object-fit: cover; display: block; max-width: 100%; } .page-cs-nustargame__promo-title { font-size: 1.5rem; color: var(--page-cs-nustargame-primary-color); margin: 20px 15px 10px; } .page-cs-nustargame__promo-description { font-size: 0.95rem; color: #ccc; padding: 0 15px 20px; flex-grow: 1; } .page-cs-nustargame__promo-button { margin: 0 15px 20px; align-self: center; width: calc(100% - 30px); } /* Security & Customer Service Section */ .page-cs-nustargame__security-cs-section { padding: 80px 20px; max-width: 1200px; margin: 0 auto; text-align: center; } .page-cs-nustargame__security-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; margin-top: 40px; margin-bottom: 50px; } .page-cs-nustargame__security-item { background-color: var(--page-cs-nustargame-card-bg); padding: 30px; border-radius: 10px; box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); text-align: center; } .page-cs-nustargame__security-icon { width: 70px; height: 70px; object-fit: contain; margin-bottom: 20px; max-width: 100%; height: auto; display: block; margin-left: auto; margin-right: auto; } .page-cs-nustargame__security-title { font-size: 1.4rem; color: var(--page-cs-nustargame-primary-color); margin-bottom: 15px; } .page-cs-nustargame__security-description { font-size: 0.95rem; color: #ccc; } .page-cs-nustargame__contact-cta { margin-top: 40px; } /* FAQ Section */ .page-cs-nustargame__faq-section { padding: 80px 20px; max-width: 900px; margin: 0 auto; } .page-cs-nustargame__faq-list { margin-top: 40px; } .page-cs-nustargame__faq-item { background-color: var(--page-cs-nustargame-card-bg); border-radius: 8px; margin-bottom: 15px; overflow: hidden; box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); } .page-cs-nustargame__faq-question { display: flex; justify-content: space-between; align-items: center; padding: 20px 25px; cursor: pointer; background-color: #333; border-bottom: 1px solid var(--page-cs-nustargame-border-color); transition: background-color 0.3s ease; user-select: none; } .page-cs-nustargame__faq-question:hover { background-color: #444; } .page-cs-nustargame__faq-title { font-size: 1.2rem; color: var(--page-cs-nustargame-text-light); margin: 0; pointer-events: none; /* Prevent text selection from interfering with click */ } .page-cs-nustargame__faq-toggle { font-size: 1.8rem; color: var(--page-cs-nustargame-primary-color); font-weight: bold; line-height: 1; transition: transform 0.3s ease; pointer-events: none; /* Prevent icon from interfering with click */ } .page-cs-nustargame__faq-item.active .page-cs-nustargame__faq-toggle { transform: rotate(45deg); /* Plus to X (minus visual) */ } .page-cs-nustargame__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: var(--page-cs-nustargame-card-bg); color: #ccc; font-size: 1rem; } .page-cs-nustargame__faq-item.active .page-cs-nustargame__faq-answer { max-height: 2000px !important; /* Sufficiently large to contain content */ padding: 20px 25px !important; opacity: 1; } .page-cs-nustargame__faq-answer p { margin-bottom: 0; } /* Blog Section */ .page-cs-nustargame__blog-section { padding: 80px 20px; max-width: 1200px; margin: 0 auto; } .page-cs-nustargame__blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; margin-top: 40px; } .page-cs-nustargame__blog-card { background-color: var(--page-cs-nustargame-card-bg); border-radius: 10px; overflow: hidden; box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); display: flex; flex-direction: column; transition: transform 0.3s ease; } .page-cs-nustargame__blog-card:hover { transform: translateY(-5px); } .page-cs-nustargame__blog-image { width: 100%; height: 200px; object-fit: cover; display: block; max-width: 100%; } .page-cs-nustargame__blog-title { font-size: 1.4rem; color: var(--page-cs-nustargame-primary-color); margin: 20px 15px 10px; line-height: 1.3; } .page-cs-nustargame__blog-summary { font-size: 0.9rem; color: #ccc; padding: 0 15px 15px; flex-grow: 1; } .page-cs-nustargame__blog-link { margin: 0 15px 20px; align-self: flex-start; /* Align button to start */ padding: 10px 20px; font-size: 0.9rem; } /* General Image Responsive Rules */ .page-cs-nustargame img:not(.page-cs-nustargame__payment-logo img) { max-width: 100%; height: auto; box-sizing: border-box; } /* Responsive Design */ @media (max-width: 1024px) { .page-cs-nustargame__hero-title { font-size: 3rem; } .page-cs-nustargame__hero-description { font-size: 1.2rem; } .page-cs-nustargame__section-title { font-size: 2.2rem; } .page-cs-nustargame__section-title--small { font-size: 1.8rem; } } @media (max-width: 768px) { .page-cs-nustargame__hero-section { min-height: 450px; padding: 40px 15px; } .page-cs-nustargame__hero-title { font-size: 2.2rem; } .page-cs-nustargame__hero-description { font-size: 1rem; } .page-cs-nustargame__cta-button { padding: 10px 20px; font-size: 1rem; } .page-cs-nustargame__payment-providers { flex-direction: row; flex-wrap: wrap; justify-content: center; gap: 16px; padding: 30px 15px; } .page-cs-nustargame__payment-logo, .page-cs-nustargame__payment-logo img { width: 80px !important; height: 80px !important; max-width: 80px !important; max-height: 80px !important; } .page-cs-nustargame__section-title { font-size: 1.8rem; margin-bottom: 30px; } .page-cs-nustargame__section-title--small { font-size: 1.5rem; } .page-cs-nustargame__intro-section, .page-cs-nustargame__quick-access-section, .page-cs-nustargame__games-section, .page-cs-nustargame__promo-section, .page-cs-nustargame__security-cs-section, .page-cs-nustargame__faq-section, .page-cs-nustargame__blog-section { padding: 50px 15px; } /* Responsive list items - General rule for card-like items */ .page-cs-nustargame__intro-features, .page-cs-nustargame__game-grid, .page-cs-nustargame__promo-grid, .page-cs-nustargame__security-grid, .page-cs-nustargame__blog-grid { grid-template-columns: 1fr; /* Single column layout */ gap: 20px; } .page-cs-nustargame__feature-item, .page-cs-nustargame__game-card, .page-cs-nustargame__promo-card, .page-cs-nustargame__security-item, .page-cs-nustargame__blog-card { width: 100% !important; max-width: 100% !important; box-sizing: border-box !important; margin-left: 0 !important; margin-right: 0 !important; padding: 20px !important; /* Adjust padding for smaller screens */ } .page-cs-nustargame__feature-item .page-cs-nustargame__feature-description, .page-cs-nustargame__game-card .page-cs-nustargame__game-description, .page-cs-nustargame__promo-card .page-cs-nustargame__promo-description, .page-cs-nustargame__security-item .page-cs-nustargame__security-description, .page-cs-nustargame__blog-card .page-cs-nustargame__blog-summary { word-wrap: break-word !important; overflow-wrap: break-word !important; word-break: break-word !important; } .page-cs-nustargame__access-buttons { flex-direction: column; } .page-cs-nustargame__access-button { width: 100%; max-width: none; } .page-cs-nustargame__faq-question { padding: 15px 20px; } .page-cs-nustargame__faq-title { font-size: 1.1rem; } .page-cs-nustargame__faq-answer { padding: 15px 20px !important; } .page-cs-nustargame img:not(.page-cs-nustargame__payment-logo img) { max-width: 100% !important; height: auto !important; box-sizing: border-box !important; } } @media (max-width: 480px) { .page-cs-nustargame__hero-title { font-size: 1.8rem; } .page-cs-nustargame__hero-description { font-size: 0.9rem; } .page-cs-nustargame__section-title { font-size: 1.5rem; } .page-cs-nustargame__section-title--small { font-size: 1.3rem; } .page-cs-nustargame__cta-button, .page-cs-nustargame__access-button { font-size: 0.95rem; padding: 10px 15px; } .page-cs-nustargame__faq-title { font-size: 1rem; } .page-cs-nustargame__faq-toggle { font-size: 1.5rem; } }