
        /* style//blog/winning-secret.css */
        :root {
            --primary-color: #2563eb;
            --secondary-color: #64748b;
            --text-dark: #333333;
            --text-light: #ffffff;
            --bg-light: #f8f9fa;
            --bg-white: #ffffff;
            --border-color: #e0e0e0;
        }

        .page--blog-winning-secret {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
            background-color: var(--bg-light);
        }

        .page--blog-winning-secret__hero-section {
            background-color: var(--primary-color);
            color: var(--text-light);
            padding: 80px 20px 40px;
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 20px;
        }

        .page--blog-winning-secret__hero-image-wrapper {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .page--blog-winning-secret__hero-image {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }

        .page--blog-winning-secret__hero-content {
            max-width: 800px;
            margin: 20px auto 0;
            text-align: center;
        }

        .page--blog-winning-secret__hero-title {
            font-size: clamp(2em, 5vw, 2.8em);
            font-weight: 700;
            margin-bottom: 15px;
            line-height: 1.2;
            color: var(--text-light);
        }

        .page--blog-winning-secret__hero-description {
            font-size: 1.1em;
            margin-bottom: 30px;
            color: var(--text-light);
        }

        .page--blog-winning-secret__cta-button {
            display: inline-block;
            background-color: #fdd835; /* Nổi bật hơn */
            color: var(--primary-color);
            padding: 15px 30px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: bold;
            font-size: 1.1em;
            transition: background-color 0.3s ease, transform 0.3s ease;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
            max-width: 100%;
            box-sizing: border-box;
            white-space: normal;
            word-wrap: break-word;
        }

        .page--blog-winning-secret__cta-button:hover {
            background-color: #fbc02d;
            transform: translateY(-2px);
        }

        .page--blog-winning-secret__section {
            padding: 60px 20px;
            max-width: 1200px;
            margin: 0 auto;
            background-color: var(--bg-white);
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            margin-bottom: 30px;
        }

        .page--blog-winning-secret__section--dark {
            background-color: var(--secondary-color);
            color: var(--text-light);
            box-shadow: none;
        }

        .page--blog-winning-secret__section-title {
            font-size: 2.2em;
            color: var(--primary-color);
            text-align: center;
            margin-bottom: 40px;
            font-weight: 700;
        }

        .page--blog-winning-secret__section--dark .page--blog-winning-secret__section-title {
            color: var(--text-light);
        }

        .page--blog-winning-secret__content-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .page--blog-winning-secret__card {
            background-color: var(--bg-white);
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
            padding: 25px;
            text-align: left;
            transition: transform 0.3s ease;
            border: 1px solid var(--border-color);
            color: var(--text-dark);
        }

        .page--blog-winning-secret__section--dark .page--blog-winning-secret__card {
            background-color: rgba(255, 255, 255, 0.1);
            color: var(--text-light);
            border-color: rgba(255, 255, 255, 0.2);
        }

        .page--blog-winning-secret__card:hover {
            transform: translateY(-5px);
        }

        .page--blog-winning-secret__card-title {
            font-size: 1.5em;
            color: var(--primary-color);
            margin-bottom: 15px;
            font-weight: 600;
        }

        .page--blog-winning-secret__section--dark .page--blog-winning-secret__card-title {
            color: var(--text-light);
        }

        .page--blog-winning-secret__card-image {
            width: 100%;
            height: 250px;
            object-fit: cover;
            border-radius: 4px;
            margin-bottom: 15px;
        }

        .page--blog-winning-secret__list {
            list-style: disc inside;
            margin-left: 20px;
            margin-bottom: 20px;
        }

        .page--blog-winning-secret__list-item {
            margin-bottom: 10px;
        }

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

        .page--blog-winning-secret__game-card {
            background-color: var(--bg-white);
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            transition: transform 0.3s ease;
            border: 1px solid var(--border-color);
            color: var(--text-dark);
        }

        .page--blog-winning-secret__game-card:hover {
            transform: translateY(-5px);
        }

        .page--blog-winning-secret__game-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }

        .page--blog-winning-secret__game-content {
            padding: 20px;
        }

        .page--blog-winning-secret__game-title {
            font-size: 1.3em;
            color: var(--primary-color);
            margin-bottom: 10px;
            font-weight: 600;
        }

        .page--blog-winning-secret__game-description {
            font-size: 0.95em;
            line-height: 1.5;
        }

        .page--blog-winning-secret__promotion-banner {
            width: 100%;
            height: auto;
            border-radius: 8px;
            margin-top: 30px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }

        .page--blog-winning-secret__faq-section {
            padding: 60px 20px;
            max-width: 900px;
            margin: 0 auto 30px;
            background-color: var(--bg-white);
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        }

        .page--blog-winning-secret__faq-item {
            border-bottom: 1px solid var(--border-color);
            margin-bottom: 15px;
            padding-bottom: 15px;
        }

        .page--blog-winning-secret__faq-item:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }

        .page--blog-winning-secret__faq-question {
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            user-select: none;
            font-size: 1.15em;
            font-weight: 600;
            color: var(--primary-color);
            padding: 10px 0;
            transition: color 0.3s ease;
        }

        .page--blog-winning-secret__faq-question:hover {
            color: #1a4fb3;
        }

        .page--blog-winning-secret__faq-question h3 {
            margin: 0;
            pointer-events: none; /* Prevent h3 from blocking click event */
            color: inherit;
        }

        .page--blog-winning-secret__faq-toggle {
            font-size: 1.5em;
            font-weight: bold;
            margin-left: 15px;
            pointer-events: none; /* Prevent toggle from blocking click event */
            transition: transform 0.3s ease;
        }

        .page--blog-winning-secret__faq-item.active .page--blog-winning-secret__faq-toggle {
            transform: rotate(45deg);
        }

        .page--blog-winning-secret__faq-answer {
            max-height: 0;
            overflow: hidden;
            padding: 0 15px;
            transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
            opacity: 0;
            font-size: 0.95em;
            color: var(--text-dark);
        }

        .page--blog-winning-secret__faq-item.active .page--blog-winning-secret__faq-answer {
            max-height: 2000px !important; /* Sufficiently large to contain content */
            padding: 20px 15px !important;
            opacity: 1;
        }

        .page--blog-winning-secret__internal-links {
            text-align: center;
            padding: 40px 20px;
            background-color: var(--bg-light);
            margin-top: 30px;
            border-top: 1px solid var(--border-color);
        }

        .page--blog-winning-secret__internal-links-title {
            font-size: 1.8em;
            color: var(--primary-color);
            margin-bottom: 25px;
        }

        .page--blog-winning-secret__internal-links-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 15px;
        }

        .page--blog-winning-secret__internal-link-button {
            display: inline-block;
            background-color: var(--secondary-color);
            color: var(--text-light);
            padding: 10px 20px;
            border-radius: 20px;
            text-decoration: none;
            font-weight: 500;
            transition: background-color 0.3s ease;
            max-width: 100%;
            box-sizing: border-box;
            white-space: normal;
            word-wrap: break-word;
        }

        .page--blog-winning-secret__internal-link-button:hover {
            background-color: #5a6878;
        }

        /* Responsive adjustments */
        @media (max-width: 1024px) {
            .page--blog-winning-secret__section {
                padding: 50px 20px;
            }
            .page--blog-winning-secret__hero-title {
                font-size: clamp(1.8em, 6vw, 2.5em);
            }
            .page--blog-winning-secret__section-title {
                font-size: 2em;
            }
        }

        @media (max-width: 768px) {
            .page--blog-winning-secret {
                font-size: 16px;
                line-height: 1.6;
            }
            .page--blog-winning-secret__hero-section {
                padding: 40px 15px 20px;
            }
            .page--blog-winning-secret__hero-title {
                font-size: clamp(1.6em, 7vw, 2.2em);
            }
            .page--blog-winning-secret__hero-description {
                font-size: 1em;
            }
            .page--blog-winning-secret__cta-button {
                padding: 12px 25px;
                font-size: 1em;
                max-width: 100% !important;
                width: 100% !important;
                box-sizing: border-box !important;
                white-space: normal !important;
                word-wrap: break-word !important;
                margin-left: 0;
                margin-right: 0;
            }
            .page--blog-winning-secret__section {
                padding: 30px 15px;
                margin-bottom: 20px;
            }
            .page--blog-winning-secret__section-title {
                font-size: 1.8em;
                margin-bottom: 30px;
            }
            .page--blog-winning-secret__content-grid,
            .page--blog-winning-secret__game-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            .page--blog-winning-secret__card,
            .page--blog-winning-secret__game-card {
                padding: 20px;
            }
            .page--blog-winning-secret__card-title {
                font-size: 1.3em;
            }
            .page--blog-winning-secret__game-title {
                font-size: 1.2em;
            }
            .page--blog-winning-secret__faq-section {
                padding: 30px 15px;
            }
            .page--blog-winning-secret__faq-question {
                font-size: 1em;
            }
            .page--blog-winning-secret__faq-answer {
                padding: 15px 15px !important;
            }
            .page--blog-winning-secret__internal-links {
                padding: 30px 15px;
            }
            .page--blog-winning-secret__internal-links-title {
                font-size: 1.5em;
            }
            .page--blog-winning-secret__internal-links-grid {
                flex-direction: column;
                gap: 10px;
            }
            .page--blog-winning-secret__internal-link-button {
                padding: 10px 15px;
                font-size: 0.95em;
                max-width: 100% !important;
                width: 100% !important;
                box-sizing: border-box !important;
                white-space: normal !important;
                word-wrap: break-word !important;
            }
            .page--blog-winning-secret img {
                max-width: 100% !important;
                width: 100% !important;
                height: auto !important;
            }
            .page--blog-winning-secret__hero-image-wrapper,
            .page--blog-winning-secret__section,
            .page--blog-winning-secret__card,
            .page--blog-winning-secret__game-card,
            .page--blog-winning-secret__faq-section,
            .page--blog-winning-secret__internal-links {
                max-width: 100% !important;
                width: 100% !important;
                box-sizing: border-box !important;
                padding-left: 15px;
                padding-right: 15px;
            }
        }
    