.page-bl555win {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333333;
    background-color: #f5f5f5;
}

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

.page-bl555win__hero-section {
    position: relative;
    width: 100%;
    padding-top: 10px; /* Rely on body padding for header offset */
    padding-bottom: 40px;
    text-align: center;
    overflow: hidden;
    box-sizing: border-box;
}

.page-bl555win__hero-image-wrapper {
    width: 100%;
    max-height: 500px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-bl555win__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    min-width: 200px;
    min-height: 200px;
}

.page-bl555win__hero-content {
    position: relative;
    z-index: 10;
    padding: 20px 20px 0;
    max-width: 900px;
    margin: 0 auto;
    box-sizing: border-box;
}

.page-bl555win__hero-title {
    font-size: 2.5em;
    font-weight: 700;
    color: #2563eb;
    margin-top: 20px;
    margin-bottom: 15px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.page-bl555win__hero-description {
    font-size: 1.1em;
    color: #4a5568;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-bl555win__section-title {
    font-size: 2em;
    color: #2563eb;
    text-align: center;
    margin-bottom: 40px;
    font-weight: 700;
}

.page-bl555win__text-block {
    font-size: 1.05em;
    margin-bottom: 20px;
    text-align: justify;
    color: #333333;
}

.page-bl555win__highlight {
    color: #2563eb;
    font-weight: bold;
}

.page-bl555win__inline-link {
    color: #2563eb;
    text-decoration: underline;
}

.page-bl555win__btn-primary,
.page-bl555win__btn-secondary,
.page-bl555win__btn-game,
.page-bl555win__btn-download {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1em;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

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

.page-bl555win__btn-primary:hover {
    background-color: #1d4ed8;
    border-color: #1d4ed8;
}

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

.page-bl555win__btn-secondary:hover {
    background-color: #e0e7ff;
    border-color: #1d4ed8;
}

.page-bl555win__btn-game {
    background-color: #64748b;
    color: #ffffff;
    border: 2px solid #64748b;
    font-size: 0.9em;
    padding: 8px 15px;
    margin-top: 15px;
}

.page-bl555win__btn-game:hover {
    background-color: #475569;
    border-color: #475569;
}

.page-bl555win__button-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.page-bl555win__about-section {
    padding: 60px 0;
    background-color: #ffffff;
    color: #333333;
}

.page-bl555win__games-section {
    padding: 60px 0;
    background-color: #2563eb;
    color: #ffffff;
}

.page-bl555win__games-section .page-bl555win__section-title,
.page-bl555win__games-section .page-bl555win__text-block,
.page-bl555win__games-section .page-bl555win__highlight {
    color: #ffffff;
}

.page-bl555win__games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-bl555win__game-card {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 350px;
}

.page-bl555win__game-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
    min-width: 200px;
    min-height: 200px;
}

.page-bl555win__game-title {
    font-size: 1.3em;
    color: #ffffff;
    margin-bottom: 10px;
}

.page-bl555win__game-description {
    font-size: 0.95em;
    color: #e0e0e0;
    flex-grow: 1;
}

.page-bl555win__features-section {
    padding: 60px 0;
    background-color: #f0f4f8;
}

.page-bl555win__features-section .page-bl555win__section-title {
    color: #2563eb;
}

.page-bl555win__features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-bl555win__feature-card {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-bl555win__feature-icon {
    width: 100%;
    height: 180px;
    object-fit: cover;
    margin-bottom: 20px;
    min-width: 200px;
    min-height: 200px;
}

.page-bl555win__feature-title {
    font-size: 1.4em;
    color: #2563eb;
    margin-bottom: 10px;
}

.page-bl555win__feature-description {
    font-size: 1em;
    color: #4a5568;
}

.page-bl555win__promotions-section {
    padding: 60px 0;
    background-color: #64748b;
    color: #ffffff;
}

.page-bl555win__promotions-section .page-bl555win__section-title,
.page-bl555win__promotions-section .page-bl555win__text-block,
.page-bl555win__promotions-section .page-bl555win__highlight {
    color: #ffffff;
}

.page-bl555win__promotions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-bl555win__promo-card {
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-bl555win__promo-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
    min-width: 200px;
    min-height: 200px;
}

.page-bl555win__promo-title {
    font-size: 1.3em;
    color: #ffffff;
    margin-bottom: 10px;
}

.page-bl555win__promo-description {
    font-size: 0.95em;
    color: #e0e0e0;
}

.page-bl555win__download-app-section {
    padding: 60px 0;
    background-color: #ffffff;
    text-align: center;
    color: #333333;
}

.page-bl555win__app-download-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.page-bl555win__btn-download {
    background-color: #2563eb;
    color: #ffffff;
    border: 2px solid #2563eb;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1em;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}