.page-mcwcasino88 {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333333; /* Default text color for light backgrounds */
    background-color: #f8f8f8;
}

.page-mcwcasino88__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
}

/* Hero Section */
.page-mcwcasino88__hero-section {
    position: relative;
    padding-top: 10px; /* Small top padding, assuming body handles --header-offset */
    padding-bottom: 40px;
    background-color: #1a202c; /* Dark background for hero */
    color: #ffffff;
    text-align: center;
    overflow: hidden;
}

.page-mcwcasino88__hero-image-wrapper {
    width: 100%;
    max-height: 600px; /* Limit height of banner */
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.page-mcwcasino88__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.page-mcwcasino88__hero-content {
    position: relative;
    z-index: 10;
    padding: 0 20px;
}

.page-mcwcasino88__main-title {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #ffffff;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-mcwcasino88__hero-description {
    font-size: clamp(1rem, 2vw, 1.3rem);
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #e2e8f0;
}

.page-mcwcasino88__hero-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
}

/* General Buttons */
.page-mcwcasino88__btn-primary,
.page-mcwcasino88__btn-secondary,
.page-mcwcasino88__btn-small,
.page-mcwcasino88__floating-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    white-space: nowrap;
    word-wrap: break-word; /* Allow text wrapping for buttons */
    box-sizing: border-box;
    max-width: 100%; /* Ensure buttons don't overflow */
}

.page-mcwcasino88__btn-primary {
    background-color: #2563eb;
    color: #ffffff;
    border: 2px solid #2563eb;
}

.page-mcwcasino88__btn-primary:hover {
    background-color: #1e40af;
    border-color: #1e40af;
    transform: translateY(-2px);
}

.page-mcwcasino88__btn-secondary {
    background-color: transparent;
    color: #2563eb;
    border: 2px solid #2563eb;
}

.page-mcwcasino88__btn-secondary:hover {
    background-color: #2563eb;
    color: #ffffff;
    transform: translateY(-2px);
}

.page-mcwcasino88__btn-small {
    padding: 8px 15px;
    font-size: 0.9rem;
    border-radius: 5px;
    background-color: #2563eb;
    color: #ffffff;
    border: 1px solid #2563eb;
}

.page-mcwcasino88__btn-small:hover {
    background-color: #1e40af;
    border-color: #1e40af;
}

.page-mcwcasino88__btn-large {
    padding: 15px 30px;
    font-size: 1.1rem;
}

.page-mcwcasino88__inline-link {
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
}

.page-mcwcasino88__inline-link:hover {
    text-decoration: underline;
}

/* Sections */
.page-mcwcasino88__about-section,
.page-mcwcasino88__promotions-section,
.page-mcwcasino88__features-section,
.page-mcwcasino88__cta-section {
    padding: 60px 0;
}

.page-mcwcasino88__games-section,
.page-mcwcasino88__guide-section,
.page-mcwcasino88__faq-section {
    padding: 60px 0;
}

.page-mcwcasino88__light-bg {
    background-color: #ffffff;
    color: #333333;
}

.page-mcwcasino88__dark-bg {
    background-color: #1a202c;
    color: #ffffff;
}

.page-mcwcasino88__section-title {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.3;
}

.page-mcwcasino88__dark-bg .page-mcwcasino88__section-title {
    color: #ffffff;
}

.page-mcwcasino88__text-block {
    font-size: 1.1rem;
    margin-bottom: 20px;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-mcwcasino88__dark-bg .page-mcwcasino88__text-block {
    color: #e2e8f0;
}

/* Games Section */
.page-mcwcasino88__games-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.page-mcwcasino88__game-card {
    background-color: #2d3748; /* Slightly lighter dark background */
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.page-mcwcasino88__game-image {
    width: 100%;
    height: 200px; /* Fixed height for consistency */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    display: block; /* Ensure it behaves as a block element */
}

.page-mcwcasino88__game-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #ffffff;
}