:root {    --primary-color: #e02424; /* Red, reminiscent of Squid Game */    --secondary-color: #2c3e50; /* Dark blue/grey */    --accent-color: #f1c40f; /* Yellow */    --text-color: #ecf0f1; /* Light grey */    --dark-bg: #1a1a1a;    --light-bg: #2b2b2b;    --border-color: #3e3e3e;    --button-hover-bg: #c0392b;    --button-text-color: #ffffff;}body {    font-family: 'Arial', sans-serif;    line-height: 1.6;    color: var(--text-color);    background-color: var(--dark-bg);    margin: 0;    padding: 0;}.page-squid-game-ph-scandal {    max-width: 1200px;    margin: 0 auto;    padding: 10px; /* Small top padding as body handles header offset */    box-sizing: border-box;}.page-squid-game-ph-scandal h1,.page-squid-game-ph-scandal h2,.page-squid-game-ph-scandal h3 {    color: var(--primary-color);    margin-bottom: 20px;    text-align: center;}.page-squid-game-ph-scandal h1 {    font-size: 2.8em;    padding-top: 20px;}.page-squid-game-ph-scandal h2 {    font-size: 2.2em;    border-bottom: 2px solid var(--border-color);    padding-bottom: 10px;    margin-top: 40px;}.page-squid-game-ph-scandal h3 {    font-size: 1.6em;    color: var(--accent-color);}.page-squid-game-ph-scandal p {    margin-bottom: 15px;    text-align: justify;}.page-squid-game-ph-scandal__section {    background-color: var(--light-bg);    padding: 30px 20px;    margin-bottom: 30px;    border-radius: 8px;    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);}/* Hero Section */.page-squid-game-ph-scandal__hero-section {    position: relative;    text-align: center;    overflow: hidden;    border-radius: 8px;    padding: 80px 20px; /* Adjusted padding, small top padding as body handles header offset */    margin-bottom: 30px;}.page-squid-game-ph-scandal__hero-background {    position: absolute;    top: 0;    left: 0;    width: 100%;    height: 100%;    object-fit: cover;    z-index: 0;    filter: brightness(0.5);}.page-squid-game-ph-scandal__hero-content {    position: relative;    z-index: 1;    color: var(--text-color);    max-width: 800px;    margin: 0 auto;}.page-squid-game-ph-scandal__hero-content h1 {    color: var(--accent-color);    font-size: 3.5em;    margin-bottom: 20px;    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);}.page-squid-game-ph-scandal__hero-content p {    font-size: 1.2em;    margin-bottom: 30px;    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);}.page-squid-game-ph-scandal__cta-buttons {    display: flex;    justify-content: center;    gap: 20px;    flex-wrap: wrap;}.page-squid-game-ph-scandal__cta-button {    display: inline-block;    background-color: var(--primary-color);    color: var(--button-text-color);    padding: 15px 30px;    border-radius: 5px;    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-squid-game-ph-scandal__cta-button:hover {    background-color: var(--button-hover-bg);    transform: translateY(-2px);}/* Payment Providers (gamelogo) */.page-squid-game-ph-scandal__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: 20px 0;    background-color: var(--light-bg);    border-radius: 8px;    margin-bottom: 30px;}.page-squid-game-ph-scandal__payment-providers h2 {    width: 100%;    margin-bottom: 20px;    text-align: center;    color: var(--primary-color);    border-bottom: none;}.page-squid-game-ph-scandal__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;}.page-squid-game-ph-scandal__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(150%);    transition: filter 0.3s ease;}.page-squid-game-ph-scandal__payment-logo img:hover {    filter: grayscale(0%) brightness(100%);}/* Quick Access */.page-squid-game-ph-scandal__quick-access-grid {    display: grid;    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));    gap: 20px;    margin-top: 30px;}.page-squid-game-ph-scandal__quick-access-item {    background-color: var(--secondary-color);    padding: 20px;    border-radius: 8px;    text-align: center;    transition: transform 0.3s ease, background-color 0.3s ease;}.page-squid-game-ph-scandal__quick-access-item:hover {    transform: translateY(-5px);    background-color: #34495e;}.page-squid-game-ph-scandal__quick-access-item a {    color: var(--accent-color);    text-decoration: none;    font-weight: bold;    font-size: 1.1em;    display: block;}/* Core Games */.page-squid-game-ph-scandal__game-grid {    display: grid;    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));    gap: 25px;    margin-top: 30px;}.page-squid-game-ph-scandal__game-card {    background-color: var(--secondary-color);    border-radius: 8px;    overflow: hidden;    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);    text-align: center;    transition: transform 0.3s ease, box-shadow 0.3s ease;}.page-squid-game-ph-scandal__game-card:hover {    transform: translateY(-5px);    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);}.page-squid-game-ph-scandal__game-card-image {    width: 100%;    height: 200px;    object-fit: cover;    display: block;}.page-squid-game-ph-scandal__game-card-content {    padding: 20px;}.page-squid-game-ph-scandal__game-card-content h3 {    margin-top: 0;    margin-bottom: 10px;    color: var(--accent-color);}.page-squid-game-ph-scandal__game-card-content p {    font-size: 0.95em;    margin-bottom: 15px;}.page-squid-game-ph-scandal__game-card-button {    background-color: var(--primary-color);    color: var(--button-text-color);    padding: 10px 20px;    border-radius: 5px;    text-decoration: none;    font-weight: bold;    font-size: 0.95em;    transition: background-color 0.3s ease;    display: inline-block;}.page-squid-game-ph-scandal__game-card-button:hover {    background-color: var(--button-hover-bg);}/* Promotions */.page-squid-game-ph-scandal__promo-list {    list-style: none;    padding: 0;    margin-top: 30px;}.page-squid-game-ph-scandal__promo-item {    background-color: var(--secondary-color);    margin-bottom: 15px;    padding: 20px;    border-radius: 8px;    display: flex;    align-items: center;    gap: 20px;    flex-wrap: wrap;}.page-squid-game-ph-scandal__promo-item img {    width: 100px;    height: 100px;    object-fit: cover;    border-radius: 5px;    flex-shrink: 0;}.page-squid-game-ph-scandal__promo-details {    flex-grow: 1;}.page-squid-game-ph-scandal__promo-details h3 {    margin-top: 0;    color: var(--accent-color);    text-align: left;}.page-squid-game-ph-scandal__promo-details p {    font-size: 0.95em;    margin-bottom: 10px;    text-align: left;}/* Security & Support */.page-squid-game-ph-scandal__feature-grid {    display: grid;    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));    gap: 25px;    margin-top: 30px;}.page-squid-game-ph-scandal__feature-card {    background-color: var(--secondary-color);    padding: 25px;    border-radius: 8px;    text-align: center;    transition: transform 0.3s ease, background-color 0.3s ease;}.page-squid-game-ph-scandal__feature-card:hover {    transform: translateY(-5px);    background-color: #34495e;}.page-squid-game-ph-scandal__feature-card img {    width: 80px;    height: 80px;    object-fit: contain;    margin-bottom: 15px;}.page-squid-game-ph-scandal__feature-card h3 {    margin-top: 0;    color: var(--accent-color);}.page-squid-game-ph-scandal__feature-card p {    font-size: 0.95em;}/* FAQ Section */.page-squid-game-ph-scandal__faq-list {    margin-top: 30px;    list-style: none;    padding: 0;}.page-squid-game-ph-scandal__faq-item {    background-color: var(--secondary-color);    margin-bottom: 15px;    border-radius: 8px;    overflow: hidden;    box-sizing: border-box; /* Ensure padding/border are included in width */} .page-squid-game-ph-scandal__faq-question {    display: flex;    justify-content: space-between;    align-items: center;    padding: 15px 20px;    cursor: pointer;    background-color: #34495e;    color: var(--text-color);    font-weight: bold;    transition: background-color 0.3s ease;    user-select: none;}.page-squid-game-ph-scandal__faq-question:hover {    background-color: #46627f;}.page-squid-game-ph-scandal__faq-question h3 {    margin: 0;    color: var(--text-color);    text-align: left;    flex-grow: 1;    pointer-events: none; /* Prevent h3 from blocking click event */}.page-squid-game-ph-scandal__faq-toggle {    font-size: 1.5em;    font-weight: bold;    color: var(--accent-color);    transition: transform 0.3s ease;    pointer-events: none; /* Prevent toggle from blocking click event */}.page-squid-game-ph-scandal__faq-item.active .page-squid-game-ph-scandal__faq-toggle {    transform: rotate(45deg);}.page-squid-game-ph-scandal__faq-answer {    max-height: 0;    overflow: hidden;    padding: 0 20px;    opacity: 0;    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;    color: var(--text-color);}.page-squid-game-ph-scandal__faq-item.active .page-squid-game-ph-scandal__faq-answer {    max-height: 2000px !important; /* Large enough to show all content */    padding: 20px !important;    opacity: 1;}/* Latest Blog */.page-squid-game-ph-scandal__blog-grid {    display: grid;    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));    gap: 25px;    margin-top: 30px;}.page-squid-game-ph-scandal__blog-card {    background-color: var(--secondary-color);    border-radius: 8px;    overflow: hidden;    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);    transition: transform 0.3s ease, box-shadow 0.3s ease;}.page-squid-game-ph-scandal__blog-card:hover {    transform: translateY(-5px);    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);}.page-squid-game-ph-scandal__blog-card-image {    width: 100%;    height: 180px;    object-fit: cover;    display: block;}.page-squid-game-ph-scandal__blog-card-content {    padding: 20px;}.page-squid-game-ph-scandal__blog-card-content h3 {    margin-top: 0;    margin-bottom: 10px;    color: var(--accent-color);    text-align: left;}.page-squid-game-ph-scandal__blog-card-content h3 a {    color: var(--accent-color);    text-decoration: none;    transition: color 0.3s ease;}.page-squid-game-ph-scandal__blog-card-content h3 a:hover {    color: var(--primary-color);}.page-squid-game-ph-scandal__blog-card-content p {    font-size: 0.9em;    margin-bottom: 15px;    text-align: left;}.page-squid-game-ph-scandal__blog-read-more {    display: inline-block;    color: var(--primary-color);    text-decoration: none;    font-weight: bold;    font-size: 0.9em;    transition: color 0.3s ease;}.page-squid-game-ph-scandal__blog-read-more:hover {    color: var(--accent-color);}/* General Image Responsive */.page-squid-game-ph-scandal img:not(.page-squid-game-ph-scandal__payment-logo img) {    max-width: 100%;    height: auto;    display: block;}/* Mobile Responsiveness */@media (max-width: 768px) {    .page-squid-game-ph-scandal {        padding: 5px;    }    .page-squid-game-ph-scandal h1 {        font-size: 2.5em;    }    .page-squid-game-ph-scandal h2 {        font-size: 1.8em;    }    .page-squid-game-ph-scandal__hero-section {        padding: 60px 15px;    }    .page-squid-game-ph-scandal__hero-content h1 {        font-size: 2.8em;    }    .page-squid-game-ph-scandal__hero-content p {        font-size: 1em;    }    .page-squid-game-ph-scandal__cta-buttons {        flex-direction: column;        gap: 15px;    }    .page-squid-game-ph-scandal__cta-button {        width: 100%;        box-sizing: border-box;        padding: 12px 20px;    }    .page-squid-game-ph-scandal__payment-providers {        flex-direction: row;        flex-wrap: wrap;        justify-content: center;        gap: 16px;        padding: 15px 0;    }    .page-squid-game-ph-scandal__payment-logo,    .page-squid-game-ph-scandal__payment-logo img {        width: 80px !important;        height: 80px !important;        max-width: 80px !important;        max-height: 80px !important;    }    .page-squid-game-ph-scandal__quick-access-grid,    .page-squid-game-ph-scandal__game-grid,    .page-squid-game-ph-scandal__feature-grid,    .page-squid-game-ph-scandal__blog-grid {        grid-template-columns: 1fr;        gap: 20px;    }    .page-squid-game-ph-scandal__quick-access-item,    .page-squid-game-ph-scandal__game-card,    .page-squid-game-ph-scandal__feature-card,    .page-squid-game-ph-scandal__blog-card {        width: 100% !important;        max-width: 100% !important;        box-sizing: border-box !important;        margin-left: 0 !important;        margin-right: 0 !important;        padding: 15px !important;    }    .page-squid-game-ph-scandal__promo-item {        flex-direction: column;        align-items: flex-start;        padding: 15px;    }    .page-squid-game-ph-scandal__promo-details h3,    .page-squid-game-ph-scandal__promo-details p {        text-align: left;    }    .page-squid-game-ph-scandal__faq-item {        width: 100% !important;        max-width: 100% !important;        box-sizing: border-box !important;        margin-left: 0 !important;        margin-right: 0 !important;    }    .page-squid-game-ph-scandal__faq-question {        padding: 12px 15px;    }    .page-squid-game-ph-scandal__faq-question h3 {        font-size: 1.1em;    }    .page-squid-game-ph-scandal__faq-answer {        padding: 0 15px;    }    .page-squid-game-ph-scandal__faq-item.active .page-squid-game-ph-scandal__faq-answer {        padding: 15px !important;    }    .page-squid-game-ph-scandal img:not(.page-squid-game-ph-scandal__payment-logo img) {        max-width: 100% !important;        height: auto !important;        box-sizing: border-box !important;        word-wrap: break-word !important;        overflow-wrap: break-word !important;        word-break: break-word !important;    }}