:root { --page-slotph-game-primary-color: #FFD700; /* Gold */ --page-slotph-game-secondary-color: #1A1A2E; /* Dark Blue */ --page-slotph-game-accent-color: #E94560; /* Red */ --page-slotph-game-text-color: #FFFFFF; --page-slotph-game-dark-text-color: #CCCCCC; --page-slotph-game-background-dark: #0F0F1A; --page-slotph-game-card-background: #2A2A4A; --page-slotph-game-border-color: #4A4A6A; --page-slotph-game-button-hover: #FFC107; --page-slotph-game-gap: 20px; }.page-slotph-game { background-color: var(--page-slotph-game-background-dark); color: var(--page-slotph-game-text-color); font-family: 'Arial', sans-serif; line-height: 1.6; padding-top: 10px; /* Decorative top padding, assuming body has header-offset */ }.page-slotph-game__container { max-width: 1200px; margin: 0 auto; padding: 0 var(--page-slotph-game-gap); }.page-slotph-game__section-title { font-size: 2.5em; color: var(--page-slotph-game-primary-color); text-align: center; margin-bottom: var(--page-slotph-game-gap); padding-top: var(--page-slotph-game-gap); }.page-slotph-game__section-description { font-size: 1.1em; color: var(--page-slotph-game-dark-text-color); text-align: center; max-width: 800px; margin: 0 auto 40px auto; }.page-slotph-game__highlight { color: var(--page-slotph-game-accent-color); }.page-slotph-game__button { display: inline-block; background-color: var(--page-slotph-game-primary-color); color: var(--page-slotph-game-secondary-color); padding: 12px 25px; border-radius: 5px; text-decoration: none; font-weight: bold; transition: background-color 0.3s ease, transform 0.3s ease; border: none; cursor: pointer; font-size: 1em; }.page-slotph-game__button:hover { background-color: var(--page-slotph-game-button-hover); transform: translateY(-2px); }.page-slotph-game__button--secondary { background-color: var(--page-slotph-game-card-background); color: var(--page-slotph-game-primary-color); border: 1px solid var(--page-slotph-game-primary-color); margin-left: 15px; }.page-slotph-game__button--secondary:hover { background-color: var(--page-slotph-game-primary-color); color: var(--page-slotph-game-secondary-color); }.page-slotph-game__button--small { padding: 8px 15px; font-size: 0.9em; }/* Hero Section */.page-slotph-game__hero-section { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 60px var(--page-slotph-game-gap); background: linear-gradient(135deg, var(--page-slotph-game-secondary-color) 0%, var(--page-slotph-game-background-dark) 100%); position: relative; overflow: hidden; }.page-slotph-game__hero-content { position: relative; z-index: 2; max-width: 900px; }.page-slotph-game__hero-title { font-size: 3.5em; margin-bottom: 20px; line-height: 1.2; }.page-slotph-game__hero-description { font-size: 1.3em; margin-bottom: 40px; color: var(--page-slotph-game-dark-text-color); }.page-slotph-game__hero-cta { display: flex; justify-content: center; gap: 15px; flex-wrap: wrap; }.page-slotph-game__hero-image-wrapper { position: absolute; top: 0; left: 0; width: 100%; height: 100%; overflow: hidden; z-index: 1; }.page-slotph-game__hero-image { width: 100%; height: 100%; object-fit: cover; opacity: 0.2; filter: grayscale(50%); /* Allowed for stylistic effect, not color change */ transform: scale(1.1); }/* About Section */.page-slotph-game__about-section { padding: 80px 0; background-color: var(--page-slotph-game-background-dark); }.page-slotph-game__features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: var(--page-slotph-game-gap); margin-top: 40px; justify-items: center; }.page-slotph-game__feature-item { background-color: var(--page-slotph-game-card-background); padding: 30px; border-radius: 10px; text-align: center; box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2); transition: transform 0.3s ease; box-sizing: border-box; width: 100%; /* Ensure it takes full width in grid item */ }.page-slotph-game__feature-item:hover { transform: translateY(-5px); }.page-slotph-game__feature-icon { width: 100%; max-width: 300px; /* To respect min 200x200 requirement */ height: 200px; /* Fixed height to ensure minimum dimension */ object-fit: contain; /* Ensure image content is visible */ margin-bottom: 20px; border-radius: 8px; }.page-slotph-game__feature-title { font-size: 1.5em; color: var(--page-slotph-game-primary-color); margin-bottom: 10px; }.page-slotph-game__feature-text { color: var(--page-slotph-game-dark-text-color); }/* Game Showcase Section */.page-slotph-game__game-showcase { padding: 80px 0; background-color: var(--page-slotph-game-secondary-color); }.page-slotph-game__game-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: var(--page-slotph-game-gap); margin-top: 40px; justify-items: center; }.page-slotph-game__game-card { background-color: var(--page-slotph-game-card-background); border-radius: 10px; overflow: hidden; box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2); text-align: center; transition: transform 0.3s ease; box-sizing: border-box; width: 100%; /* Ensure it takes full width in grid item */ }.page-slotph-game__game-card:hover { transform: translateY(-5px); }.page-slotph-game__game-image { width: 100%; height: 200px; object-fit: cover; border-bottom: 1px solid var(--page-slotph-game-border-color); }.page-slotph-game__game-title { font-size: 1.4em; color: var(--page-slotph-game-primary-color); margin: 15px 0 10px; padding: 0 15px; }.page-slotph-game__game-text { color: var(--page-slotph-game-dark-text-color); padding: 0 15px 20px; font-size: 0.95em; }.page-slotph-game__game-card .page-slotph-game__button { margin-bottom: 20px; }/* Promotions Section */.page-slotph-game__promotions-section { padding: 80px 0; background-color: var(--page-slotph-game-background-dark); }.page-slotph-game__promo-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: var(--page-slotph-game-gap); margin-top: 40px; justify-items: center; }.page-slotph-game__promo-card { background-color: var(--page-slotph-game-card-background); border-radius: 10px; overflow: hidden; box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2); text-align: center; transition: transform 0.3s ease; box-sizing: border-box; width: 100%; /* Ensure it takes full width in grid item */ }.page-slotph-game__promo-card:hover { transform: translateY(-5px); }.page-slotph-game__promo-image { width: 100%; height: 250px; object-fit: cover; border-bottom: 1px solid var(--page-slotph-game-border-color); }.page-slotph-game__promo-title { font-size: 1.6em; color: var(--page-slotph-game-primary-color); margin: 20px 0 10px; padding: 0 15px; }.page-slotph-game__promo-text { color: var(--page-slotph-game-dark-text-color); padding: 0 15px 20px; font-size: 1em; }.page-slotph-game__promo-card .page-slotph-game__button { margin-bottom: 20px; }/* FAQ Section */.page-slotph-game__faq-section { padding: 80px 0; background-color: var(--page-slotph-game-secondary-color); }.page-slotph-game__faq-list { margin-top: 40px; max-width: 800px; margin-left: auto; margin-right: auto; }.page-slotph-game__faq-item { background-color: var(--page-slotph-game-card-background); border-radius: 8px; margin-bottom: 15px; overflow: hidden; box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); }.page-slotph-game__faq-question { display: flex; justify-content: space-between; align-items: center; padding: 15px 20px; cursor: pointer; user-select: none; background-color: var(--page-slotph-game-secondary-color); border-bottom: 1px solid var(--page-slotph-game-border-color); transition: background-color 0.3s ease; }.page-slotph-game__faq-question:hover { background-color: #3a3a5a; /* slightly lighter than secondary */ }.page-slotph-game__faq-title { font-size: 1.2em; color: var(--page-slotph-game-primary-color); margin: 0; pointer-events: none; /* Prevent text selection interference */ }.page-slotph-game__faq-toggle { font-size: 1.8em; color: var(--page-slotph-game-primary-color); transition: transform 0.3s ease; pointer-events: none; /* Prevent toggle icon from capturing click */ }.page-slotph-game__faq-item.active .page-slotph-game__faq-toggle { transform: rotate(45deg); }.page-slotph-game__faq-answer { max-height: 0; overflow: hidden; padding: 0 20px; color: var(--page-slotph-game-dark-text-color); transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease; opacity: 0; }.page-slotph-game__faq-item.active .page-slotph-game__faq-answer { max-height: 2000px !important; /* Sufficiently large */ padding: 20px !important; opacity: 1; }.page-slotph-game__faq-answer p { margin: 0; }/* Floating Buttons */.page-slotph-game__floating-buttons { position: fixed; bottom: 20px; right: 20px; display: flex; flex-direction: column; gap: 10px; z-index: 1000; }.page-slotph-game__floating-button { background-color: var(--page-slotph-game-accent-color); color: var(--page-slotph-game-text-color); padding: 12px 25px; border-radius: 30px; text-decoration: none; font-weight: bold; box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3); transition: background-color 0.3s ease, transform 0.3s ease; text-align: center; min-width: 120px; }.page-slotph-game__floating-button:hover { background-color: #c9354e; /* Darker red */ transform: translateY(-3px); }.page-slotph-game__floating-button--login { background-color: var(--page-slotph-game-primary-color); color: var(--page-slotph-game-secondary-color); }.page-slotph-game__floating-button--login:hover { background-color: var(--page-slotph-game-button-hover); }/* Responsive adjustments */@media (max-width: 1024px) { .page-slotph-game__hero-title { font-size: 3em; } .page-slotph-game__hero-description { font-size: 1.1em; } .page-slotph-game__section-title { font-size: 2em; } }@media (max-width: 768px) { .page-slotph-game__hero-title { font-size: 2.2em; } .page-slotph-game__hero-description { font-size: 1em; } .page-slotph-game__hero-cta { flex-direction: column; gap: 10px; } .page-slotph-game__button { width: 100%; margin-left: 0; } .page-slotph-game__button--secondary { margin-left: 0; } .page-slotph-game__section-title { font-size: 1.8em; } .page-slotph-game__section-description { font-size: 0.95em; }/* Mobile list item responsive requirements */.page-slotph-game__features-grid .page-slotph-game__feature-item, .page-slotph-game__game-grid .page-slotph-game__game-card, .page-slotph-game__promo-grid .page-slotph-game__promo-card { width: 100% !important; max-width: 100% !important; box-sizing: border-box !important; margin-left: 0 !important; margin-right: 0 !important; padding: 20px !important; /* Adjusted padding */ word-wrap: break-word !important; overflow-wrap: break-word !important; word-break: break-word !important; } .page-slotph-game__faq-list { padding: 0 10px; } .page-slotph-game__faq-question { padding: 12px 15px; } .page-slotph-game__faq-title { font-size: 1.1em; } .page-slotph-game__faq-answer { padding: 0 15px; } .page-slotph-game__faq-item.active .page-slotph-game__faq-answer { padding: 15px !important; } .page-slotph-game__floating-buttons { right: 10px; bottom: 10px; } .page-slotph-game__floating-button { padding: 10px 20px; min-width: 100px; font-size: 0.9em; } }@media (max-width: 480px) { .page-slotph-game__hero-section { padding: 40px var(--page-slotph-game-gap); } .page-slotph-game__hero-title { font-size: 1.8em; } .page-slotph-game__section-title { font-size: 1.5em; } .page-slotph-game__feature-item, .page-slotph-game__game-card, .page-slotph-game__promo-card { padding: 15px; } .page-slotph-game__game-image, .page-slotph-game__promo-image { height: 150px; } }