
    /* General Reset & Base Styles for .page-89win-com */
.page-89win-com {
    font-family: 'Arial', sans-serif;
    color: #f0f0f0;
    background-color: #1a1a2e;
    line-height: 1.6;
    padding-top: var(--header-offset, 122px); /* Fallback for header offset */
}

/* Ensure all images are responsive */
.page-89win-com img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 8px; /* Consistent styling for images */
}

.page-89win-com__image-container {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
}

/* Section Styling */
.page-89win-com section {
    padding: 40px 20px;
    margin: 0 auto;
    max-width: 1200px;
    text-align: center;
}

.page-89win-com__section-title {
    font-size: 2.5em;
    color: #e94560;
    margin-bottom: 15px;
    text-shadow: 0 0 5px rgba(233, 69, 96, 0.5);
}

.page-89win-com__section-description {
    font-size: 1.1em;
    color: #c0c0c0;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Floating Buttons */
.page-89win-com__floating-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1000;
}

.page-89win-com__register-button,
.page-89win-com__login-button {
    display: block;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1em;
    transition: transform 0.3s ease, background-color 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
    min-width: 120px; /* Ensure buttons have a minimum width */
}

.page-89win-com__register-button {
    background-color: #e94560;
    color: #fff;
}

.page-89win-com__register-button:hover {
    background-color: #c2314e;
    transform: translateY(-2px);
}

.page-89win-com__login-button {
    background-color: #0f3460;
    color: #fff;
    border: 1px solid #e94560;
}

.page-89win-com__login-button:hover {
    background-color: #164a85;
    transform: translateY(-2px);
}

/* Hero Section */
.page-89win-com__hero-section {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 70vh; /* Adjusted for mobile view */
    color: #fff;
    text-align: center;
    padding-top: 10px; /* Small decorative padding, body handles main offset */
}

.page-89win-com__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.page-89win-com__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6); /* Darken image for text readability */
    border-radius: 0; /* Hero image usually full width */
}

.page-89win-com__hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay */
    z-index: 2;
}

.page-89win-com__hero-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
    padding: 20px;
}

.page-89win-com__hero-title {
    font-size: 3em;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #e94560;
    text-shadow: 0 0 10px rgba(233, 69, 96, 0.8);
}

.page-89win-com__hero-subtitle {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: #f0f0f0;
}

.page-89win-com__hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.page-89win-com__hero-button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-89win-com__hero-button--primary {
    background-color: #e94560;
    color: #fff;
}

.page-89win-com__hero-button--primary:hover {
    background-color: #c2314e;
    transform: translateY(-3px);
}

.page-89win-com__hero-button--secondary {
    background-color: transparent;
    color: #e94560;
    border: 2px solid #e94560;
}

.page-89win-com__hero-button--secondary:hover {
    background-color: #e94560;
    color: #fff;
    transform: translateY(-3px);
}

/* Game Categories */
.page-89win-com__game-categories {
    background-color: #1a1a2e;
}
.page-89win-com__game-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-89win-com__game-card {
    background-color: #272740;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    padding-bottom: 20px;
    box-sizing: border-box; /* Crucial for responsiveness */
}

.page-89win-com__game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.6);
}

.page-89win-com__game-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.page-89win-com__game-title {
    font-size: 1.8em;
    color: #e94560;
    margin: 20px 0 10px;
}

.page-89win-com__game-description {
    font-size: 1em;
    color: #c0c0c0;
    padding: 0 15px;
}

/* Promotions */
.page-89win-com__promotions {
    background-color: #16213e;
}
.page-89win-com__promotion-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-89win-com__promotion-card {
    background-color: #272740;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    padding-bottom: 20px;
    box-sizing: border-box;
}

.page-89win-com__promotion-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.6);
}

.page-89win-com__promotion-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.page-89win-com__promotion-title {
    font-size: 1.6em;
    color: #e94560;
    margin: 20px 0 10px;
}

.page-89win-com__promotion-description {
    font-size: 1em;
    color: #c0c0c0;
    padding: 0 15px;
}

.page-89win-com__button-center {
    margin-top: 40px;
    text-align: center;
}

.page-89win-com__button {
    display: inline-block;
    padding: 12px 25px;
    background-color: #e94560;
    color: #fff;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-89win-com__button:hover {
    background-color: #c2314e;
    transform: translateY(-2px);
}

/* About Section */
.page-89win-com__about {
    background-color: #1a1a2e;
}
.page-89win-com__about-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    text-align: left;
    margin-top: 40px;
}

.page-89win-com__about-image-wrapper {
    flex: 1;
    min-width: 300px;
}

.page-89win-com__about-image {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
}
  