.page-blog-unlocking-the-luck-of-777 {
    font-family: Arial, sans-serif;
    color: #FFF6D6; /* Text Main */
    background-color: #0A0A0A; /* Background */
    line-height: 1.6;
    padding-top: 10px; /* Small top padding for internal content */
}

.page-blog-unlocking-the-luck-of-777__hero-section {
    position: relative;
    overflow: hidden;
    color: #FFF6D6;
    text-align: center;
    padding-bottom: 40px;
}

.page-blog-unlocking-the-luck-of-777__hero-image-wrapper {
    width: 100%;
    max-height: 600px; /* Limit hero image height */
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-blog-unlocking-the-luck-of-777__hero-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    min-width: 200px; /* Ensure min size */
    min-height: 200px; /* Ensure min size */
}

.page-blog-unlocking-the-luck-of-777__hero-content {
    padding: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.page-blog-unlocking-the-luck-of-777__main-title {
    font-size: clamp(2em, 5vw, 3.5em); /* Responsive font size */
    font-weight: bold;
    margin-bottom: 15px;
    color: #F2C14E; /* Main color */
    line-height: 1.2;
}

.page-blog-unlocking-the-luck-of-777__subtitle {
    font-size: clamp(1em, 2.5vw, 1.3em);
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-blog-unlocking-the-luck-of-777__cta-button {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%); /* Button gradient */
    color: #0A0A0A;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    transition: filter 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1.1em;
}

.page-blog-unlocking-the-luck-of-777__cta-button:hover {
    filter: brightness(1.1);
}

.page-blog-unlocking-the-luck-of-777__section-title {
    font-size: 2.5em;
    color: #F2C14E; /* Main color */
    text-align: center;
    margin-top: 50px;
    margin-bottom: 30px;
}

.page-blog-unlocking-the-luck-of-777__introduction,
.page-blog-unlocking-the-luck-of-777__choosing-platform,
.page-blog-unlocking-the-luck-of-777__security-support,
.page-blog-unlocking-the-luck-of-777__conclusion {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
    text-align: justify;
}

.page-blog-unlocking-the-luck-of-777__key-principles,
.page-blog-unlocking-the-luck-of-777__game-strategies {
    max-width: 1200px;
    margin: 40px auto;
    padding: 20px;
}

.page-blog-unlocking-the-luck-of-777__principles-grid,
.page-blog-unlocking-the-luck-of-777__strategy-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.page-blog-unlocking-the-luck-of-777__principle-card,
.page-blog-unlocking-the-luck-of-777__strategy-card {
    background-color: #111111; /* Card BG */
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid #3A2A12; /* Border color */
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-blog-unlocking-the-luck-of-777__principle-image {
    width: 100%;
    height: auto; /* Let it scale with aspect ratio */
    max-height: 250px; /* Max height for aesthetic, object-fit will crop if needed */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    min-width: 200px; /* Ensure min size */
    min-height: 200px; /* Ensure min size */
}

.page-blog-unlocking-the-luck-of-777__card-title {
    font-size: 1.8em;
    color: #FFD36B; /* Auxiliary color */
    margin-bottom: 15px;
    line-height: 1.3;
}

.page-blog-unlocking-the-luck-of-777__principle-card p,
.page-blog-unlocking-the-luck-of-777__strategy-card p {
    font-size: 1em;
    color: #FFF6D6;
    flex-grow: 1;
}

.page-blog-unlocking-the-luck-of-777__card-button {
    display: inline-block;
    padding: 10px 20px;
    background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%); /* Button gradient */
    color: #0A0A0A;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    margin-top: 20px;
    transition: filter 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 0.9em;
}

.page-blog-unlocking-the-luck-of-777__card-button:hover {
    filter: brightness(1.1);
}

.page-blog-unlocking-the-luck-of-777__list-item {
    background-color: #111111;
    border-left: 5px solid #F2C14E;
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 5px;
    list-style: none;
}

.page-blog-unlocking-the-luck-of-777__list-item strong {
    color: #FFD36B;
}

.page-blog-unlocking-the-luck-of-777__cta-button--large {
    font-size: 1.3em;
    padding: 18px 35px;
    margin-top: 30px;
}

.page-blog-unlocking-the-luck-of-777 a {
    color: #FFD36B; /* Auxiliary color for links */
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-blog-unlocking-the-luck-of-777 a:hover {
    color: #F2C14E; /* Main color on hover */
}

@media (max-width: 768px) {
    .page-blog-unlocking-the-luck-of-777__main-title {
        font-size: clamp(2em, 8vw, 3em);
    }

    .page-blog-unlocking-the-luck-of-777__subtitle {
        font-size: clamp(1em, 3.5vw, 1.2em);
    }

    .page-blog-unlocking-the-luck-of-777__section-title {
        font-size: 2em;
    }

    .page-blog-unlocking-the-luck-of-777__principles-grid,
    .page-blog-unlocking-the-luck-of-777__strategy-cards {
        grid-template-columns: 1fr;
    }

    .page-blog-unlocking-the-luck-of-777 img {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 480px) {
    .page-blog-unlocking-the-luck-of-777__hero-content {
        padding: 15px;
    }

    .page-blog-unlocking-the-luck-of-777__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-blog-unlocking-the-luck-of-777__cta-button--large {
        padding: 15px 30px;
        font-size: 1.1em;
    }
}