/* General Styling */
.page-ban-ca {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #1F2D3D; /* Text Main */
    background: #F4F7FB; /* Background */
}

.page-ban-ca__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 15px;
}

.page-ban-ca__section-title {
    font-size: 36px;
    font-weight: 700;
    color: #000000; /* Custom Color_1776249996415 */
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.3;
}

.page-ban-ca__sub-title {
    font-size: 24px;
    font-weight: 600;
    color: #1F2D3D; /* Text Main */
    margin-top: 25px;
    margin-bottom: 15px;
}

.page-ban-ca__section-description {
    font-size: 18px;
    color: #1F2D3D; /* Text Main */
    text-align: center;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-ban-ca__text-center {
    text-align: center;
}

/* Color Contrast Classes */
.page-ban-ca__dark-bg {
    background: #2F6BFF; /* Main Color */
    color: #ffffff; /* Light text for dark background */
}
.page-ban-ca__dark-bg .page-ban-ca__section-title,
.page-ban-ca__dark-bg .page-ban-ca__section-description,
.page-ban-ca__dark-bg .page-ban-ca__sub-title,
.page-ban-ca__dark-bg .page-ban-ca__text-block p,
.page-ban-ca__dark-bg .page-ban-ca__feature-list li {
    color: #ffffff;
}
.page-ban-ca__dark-bg .page-ban-ca__btn-link {
    color: #A5C4FF; /* Glow */
}


.page-ban-ca__light-bg {
    background: #F4F7FB; /* Background */
    color: #1F2D3D; /* Dark text for light background */
}
.page-ban-ca__light-bg .page-ban-ca__section-title,
.page-ban-ca__light-bg .page-ban-ca__section-description,
.page-ban-ca__light-bg .page-ban-ca__sub-title {
    color: #000000; /* Custom Color_1776249996415 */
}
.page-ban-ca__light-bg .page-ban-ca__text-block p,
.page-ban-ca__light-bg .page-ban-ca__feature-list li {
    color: #1F2D3D; /* Text Main */
}
.page-ban-ca__light-bg .page-ban-ca__btn-link {
    color: #2F6BFF; /* Main Color */
}


.page-ban-ca__card {
    background: #FFFFFF; /* Card BG */
    border: 1px solid #D6E2FF; /* Border */
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: #1F2D3D;
}
.page-ban-ca__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

/* Buttons */
.page-ban-ca__btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 25px;
    border-radius: 30px;
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%); /* Button */
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(47, 107, 255, 0.3);
    white-space: normal;
    word-wrap: break-word;
    max-width: 100%;
    box-sizing: border-box;
}
.page-ban-ca__btn-primary:hover {
    background: linear-gradient(180deg, #2F6BFF 0%, #4A8BFF 100%);
    box-shadow: 0 6px 15px rgba(47, 107, 255, 0.4);
}

.page-ban-ca__btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 25px;
    border-radius: 30px;
    background: #ffffff;
    color: #2F6BFF; /* Main Color */
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid #2F6BFF; /* Main Color */
    cursor: pointer;
    margin-left: 20px;
    white-space: normal;
    word-wrap: break-word;
    max-width: 100%;
    box-sizing: border-box;
}
.page-ban-ca__btn-secondary:hover {
    background: #f0f0f0;
    color: #1a4a99;
    border-color: #1a4a99;
}

.page-ban-ca__btn-link {
    display: inline-block;
    color: #2F6BFF; /* Main Color */
    text-decoration: none;
    font-weight: 600;
    margin-top: 15px;
    transition: color 0.3s ease;
}
.page-ban-ca__btn-link:hover {
    text-decoration: underline;
    color: #1a4a99;
}

.page-ban-ca__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}
.page-ban-ca__cta-buttons--single {
    margin-top: 40px;
}
.page-ban-ca__cta-buttons--single .page-ban-ca__btn-primary {
    margin: 0 auto;
}
.page-ban-ca__cta-wrapper {
    margin-top: 50px;
    text-align: center;
}

/* Hero Section */
.page-ban-ca__hero-section {
    position: relative;
    padding-top: 10px; /* Small top padding */
    padding-bottom: 80px;
    text-align: center;
    overflow: hidden;
    background: #2F6BFF; /* Main Color */
}

.page-ban-ca__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.2; /* Subtle background image */
}
.page-ban-ca__hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.page-ban-ca__hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    padding-top: 50px;
}

.page-ban-ca__main-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem); /* Using clamp for responsive H1 */
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-ban-ca__subtitle {
    font-size: 20px;
    color: #f0f0f0;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* About Section */
.page-ban-ca__about-section {
    padding: 80px 0;
}
.page-ban-ca__content-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 40px;
}
.page-ban-ca__content-wrapper--reverse {
    flex-direction: row-reverse;
}
.page-ban-ca__text-block {
    flex: 1;
}
.page-ban-ca__text-block p {
    margin-bottom: 15px;
    font-size: 17px;
}
.page-ban-ca__image-block {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 20px;
}
.page-ban-ca__image-block img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    display: block;
}
.page-ban-ca__feature-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}
.page-ban-ca__feature-list li {
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="%232F6BFF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M22 11.08V12a10 10 0 1 1-5.93-8.93"></path><polyline points="22 4 12 14.01 9 11.01"></polyline></svg>') no-repeat left center;
    background-size: 20px;
    padding-left: 30px;
    margin-bottom: 10px;
    font-size: 17px;
}
.page-ban-ca__feature-list li strong {
    color: #2F6BFF; /* Main Color */
}

/* Games Section */
.page-ban-ca__games-section {
    padding: 80px 0;
    background-color: #F4F7FB; /* Background */
    background-image: url('data:image/svg+xml;utf8,<svg width="100%" height="100%" viewBox="0 0 100 100" version="1.1" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="pattern-zigzag" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse" patternTransform="rotate(45)"><path d="M 0 10 L 10 0 L 20 10 L 10 20 Z" fill="rgba(47,107,255,0.05)"/></pattern></defs><rect x="0" y="0" width="100%" height="100%" fill="url(#pattern-zigzag)"/></svg>');
    background-size: 100px 100px;
}
.page-ban-ca__games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}
.page-ban-ca__game-card {
    text-align: center;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.page-ban-ca__game-card img {
    max-width: 100%;
    height: 200px; /* Fixed height for consistency */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    display: block;
}
.page-ban-ca__game-title {
    font-size: 22px;
    font-weight: 700;
    color: #000000; /* Custom Color_1776249996415 */
    margin-bottom: 10px;
    flex-grow: 1; /* Allow title to take up space */
}
.page-ban-ca__game-description {
    font-size: 16px;
    color: #1F2D3D; /* Text Main */
    margin-bottom: 20px;
    flex-grow: 1;
}
.page-ban-ca__card-button {
    margin-top: auto; /* Push button to bottom */
}