
        :root {
            --primary-color: #26A9E0;
            --secondary-color: #FFFFFF;
            --login-button-color: #EA7C07;
            --background-color: #FFFFFF;
            --text-color-dark: #333333;
            --text-color-light: #FFFFFF;
            --border-color-light: #e0e0e0;
            --font-family: 'Arial', sans-serif;
        }

        .page-resources-sports-betting-guide {
            font-family: var(--font-family);
            color: var(--text-color-dark);
            background-color: var(--background-color);
            line-height: 1.6;
            padding-bottom: 50px;
        }

        .page-resources-sports-betting-guide__container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
            box-sizing: border-box;
        }

        .page-resources-sports-betting-guide__hero-section {
            background-color: var(--primary-color);
            color: var(--text-color-light);
            text-align: center;
            padding: 10px 0 40px 0;
            position: relative;
            overflow: hidden;
        }

        .page-resources-sports-betting-guide__hero-image-container {
            width: 100%;
            max-height: 500px;
            overflow: hidden;
            margin-bottom: 20px;
        }

        .page-resources-sports-betting-guide__hero-image {
            width: 100%;
            height: auto;
            display: block;
            object-fit: cover;
            object-position: center;
        }

        .page-resources-sports-betting-guide__hero-content {
            position: relative;
            z-index: 1;
            max-width: 800px;
            margin: 0 auto;
            padding: 0 15px;
        }

        .page-resources-sports-betting-guide__hero-content h1 {
            font-size: clamp(2em, 4vw, 3.2em);
            font-weight: 700;
            margin-bottom: 15px;
            line-height: 1.2;
            color: var(--text-color-light);
        }

        .page-resources-sports-betting-guide__hero-content p {
            font-size: clamp(1em, 1.8vw, 1.2em);
            margin-bottom: 30px;
            opacity: 0.9;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .page-resources-sports-betting-guide__btn-primary {
            display: inline-block;
            background-color: var(--login-button-color);
            color: var(--text-color-light);
            padding: 12px 25px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.1em;
            transition: background-color 0.3s ease, transform 0.3s ease;
            border: none;
            cursor: pointer;
        }

        .page-resources-sports-betting-guide__btn-primary:hover {
            background-color: #d16e06;
            transform: translateY(-2px);
        }

        .page-resources-sports-betting-guide__section {
            padding: 60px 0;
            background-color: var(--background-color);
        }

        .page-resources-sports-betting-guide__section:nth-of-type(odd) {
            background-color: #f9f9f9;
        }

        .page-resources-sports-betting-guide__section-title {
            font-size: clamp(1.8em, 3vw, 2.5em);
            color: var(--primary-color);
            text-align: center;
            margin-bottom: 40px;
            font-weight: 700;
        }

        .page-resources-sports-betting-guide__content-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 30px;
        }

        .page-resources-sports-betting-guide__card {
            background-color: var(--secondary-color);
            border-radius: 12px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            padding: 30px;
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: 1px solid var(--border-color-light);
            color: var(--text-color-dark);
        }

        .page-resources-sports-betting-guide__card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        }

        .page-resources-sports-betting-guide__card-icon {
            width: 80px;
            height: 80px;
            margin-bottom: 20px;
            display: inline-block;
        }

        .page-resources-sports-betting-guide__card-title {
            font-size: 1.5em;
            color: var(--primary-color);
            margin-bottom: 15px;
            font-weight: 600;
        }

        .page-resources-sports-betting-guide__card-description {
            font-size: 1em;
            color: var(--text-color-dark);
        }

        .page-resources-sports-betting-guide__text-block {
            max-width: 900px;
            margin: 0 auto 30px auto;
            text-align: left;
        }

        .page-resources-sports-betting-guide__text-block h3 {
            font-size: 1.8em;
            color: var(--primary-color);
            margin-top: 30px;
            margin-bottom: 15px;
            font-weight: 600;
        }

        .page-resources-sports-betting-guide__text-block h4 {
            font-size: 1.4em;
            color: #555;
            margin-top: 25px;
            margin-bottom: 10px;
            font-weight: 500;
        }

        .page-resources-sports-betting-guide__text-block p,
        .page-resources-sports-betting-guide__text-block ul,
        .page-resources-sports-betting-guide__text-block ol {
            font-size: 1em;
            margin-bottom: 15px;
            color: var(--text-color-dark);
        }

        .page-resources-sports-betting-guide__text-block ul,
        .page-resources-sports-betting-guide__text-block ol {
            padding-left: 25px;
        }

        .page-resources-sports-betting-guide__text-block li {
            margin-bottom: 8px;
            box-sizing: border-box;
        }

        .page-resources-sports-betting-guide__button-group {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 40px;
            flex-wrap: wrap;
        }

        .page-resources-sports-betting-guide__btn-secondary {
            display: inline-block;
            background-color: var(--secondary-color);
            color: var(--primary-color);
            padding: 12px 25px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.1em;
            border: 2px solid var(--primary-color);
            transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
            cursor: pointer;
        }

        .page-resources-sports-betting-guide__btn-secondary:hover {
            background-color: var(--primary-color);
            color: var(--text-color-light);
            transform: translateY(-2px);
        }

        .page-resources-sports-betting-guide__faq-section {
            padding: 60px 0;
            background-color: #f0f7fb;
        }

        .page-resources-sports-betting-guide__faq-item {
            background-color: var(--secondary-color);
            border-radius: 8px;
            margin-bottom: 15px;
            border: 1px solid var(--border-color-light);
            overflow: hidden;
        }

        .page-resources-sports-betting-guide__faq-question {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 18px 25px;
            font-size: 1.2em;
            font-weight: 600;
            color: var(--primary-color);
            cursor: pointer;
            user-select: none;
            background-color: #eaf6fd;
            transition: background-color 0.3s ease;
        }

        .page-resources-sports-betting-guide__faq-question:hover {
            background-color: #d8edf8;
        }

        .page-resources-sports-betting-guide__faq-question h3 {
            margin: 0;
            font-size: 1.2em;
            color: var(--primary-color);
            pointer-events: none; /* Prevent h3 from blocking click event */
            flex-grow: 1;
        }

        .page-resources-sports-betting-guide__faq-toggle {
            font-size: 1.8em;
            font-weight: 300;
            color: var(--primary-color);
            margin-left: 15px;
            pointer-events: none; /* Prevent toggle from blocking click event */
        }

        .page-resources-sports-betting-guide__faq-answer {
            max-height: 0;
            overflow: hidden;
            padding: 0 25px;
            opacity: 0;
            transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
            color: var(--text-color-dark);
            text-align: left;
        }

        .page-resources-sports-betting-guide__faq-item.active .page-resources-sports-betting-guide__faq-answer {
            max-height: 2000px !important;
            padding: 20px 25px !important;
            opacity: 1;
        }

        .page-resources-sports-betting-guide__faq-item.active .page-resources-sports-betting-guide__faq-question {
            background-color: #d8edf8;
        }

        .page-resources-sports-betting-guide__cta-section {
            background-color: var(--primary-color);
            color: var(--text-color-light);
            text-align: center;
            padding: 60px 0;
        }

        .page-resources-sports-betting-guide__cta-section h2 {
            font-size: clamp(1.8em, 3vw, 2.5em);
            margin-bottom: 20px;
            color: var(--text-color-light);
        }

        .page-resources-sports-betting-guide__cta-section p {
            font-size: clamp(1em, 1.5vw, 1.1em);
            margin-bottom: 30px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .page-resources-sports-betting-guide img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 8px;
        }

        .page-resources-sports-betting-guide__image-wrapper {
            margin-bottom: 20px;
            text-align: center;
        }

        .page-resources-sports-betting-guide__feature-image {
            width: 100%;
            height: 300px;
            object-fit: cover;
        }

        /* Responsive styles */
        @media (max-width: 1024px) {
            .page-resources-sports-betting-guide__hero-content h1 {
                font-size: 2.8em;
            }
            .page-resources-sports-betting-guide__hero-content p {
                font-size: 1.1em;
            }
            .page-resources-sports-betting-guide__section-title {
                font-size: 2.2em;
            }
            .page-resources-sports-betting-guide__text-block h3 {
                font-size: 1.6em;
            }
            .page-resources-sports-betting-guide__text-block h4 {
                font-size: 1.3em;
            }
            .page-resources-sports-betting-guide__card-title {
                font-size: 1.4em;
            }
            .page-resources-sports-betting-guide__faq-question {
                font-size: 1.1em;
            }
            .page-resources-sports-betting-guide__faq-question h3 {
                font-size: 1.1em;
            }
        }

        @media (max-width: 768px) {
            .page-resources-sports-betting-guide {
                font-size: 16px;
                line-height: 1.6;
            }
            .page-resources-sports-betting-guide__container {
                padding: 0 15px;
            }
            .page-resources-sports-betting-guide__hero-section {
                padding-top: 10px !important; /* Small top padding, relying on body for header offset */
                padding-bottom: 30px;
            }
            .page-resources-sports-betting-guide__hero-content h1 {
                font-size: 2em;
                margin-bottom: 10px;
            }
            .page-resources-sports-betting-guide__hero-content p {
                font-size: 0.95em;
                margin-bottom: 20px;
            }
            .page-resources-sports-betting-guide__btn-primary,
            .page-resources-sports-betting-guide__btn-secondary {
                max-width: 100% !important;
                width: 100% !important;
                box-sizing: border-box !important;
                white-space: normal !important;
                word-wrap: break-word !important;
                padding: 12px 15px !important;
                font-size: 1em !important;
            }
            .page-resources-sports-betting-guide__button-group {
                flex-direction: column !important;
                gap: 15px !important;
                padding: 0 15px;
                max-width: 100% !important;
                width: 100% !important;
                box-sizing: border-box !important;
                overflow: hidden !important;
            }
            .page-resources-sports-betting-guide__section {
                padding: 40px 0;
            }
            .page-resources-sports-betting-guide__section-title {
                font-size: 1.8em;
                margin-bottom: 30px;
                padding: 0 15px;
            }
            .page-resources-sports-betting-guide__content-grid {
                grid-template-columns: 1fr;
                gap: 20px;
                padding: 0 15px;
            }
            .page-resources-sports-betting-guide__card {
                padding: 25px;
            }
            .page-resources-sports-betting-guide__text-block {
                padding: 0 15px;
            }
            .page-resources-sports-betting-guide__text-block h3 {
                font-size: 1.4em;
            }
            .page-resources-sports-betting-guide__text-block h4 {
                font-size: 1.2em;
            }
            .page-resources-sports-betting-guide__text-block p,
            .page-resources-sports-betting-guide__text-block ul,
            .page-resources-sports-betting-guide__text-block ol {
                font-size: 0.95em;
            }
            .page-resources-sports-betting-guide__text-block li {
                margin-left: 0 !important;
                margin-right: 0 !important;
                width: 100% !important;
                max-width: 100% !important;
                word-wrap: break-word !important;
                overflow-wrap: break-word !important;
                word-break: break-word !important;
            }
            .page-resources-sports-betting-guide__text-block ul,
            .page-resources-sports-betting-guide__text-block ol {
                padding-left: 20px !important;
                width: 100% !important;
                max-width: 100% !important;
                box-sizing: border-box !important;
                margin-left: 0 !important;
                margin-right: 0 !important;
            }
            .page-resources-sports-betting-guide__faq-section {
                padding: 40px 0;
            }
            .page-resources-sports-betting-guide__faq-question {
                padding: 15px 20px;
                font-size: 1.1em;
            }
            .page-resources-sports-betting-guide__faq-question h3 {
                font-size: 1.1em;
            }
            .page-resources-sports-betting-guide__faq-answer {
                padding: 0 20px;
            }
            .page-resources-sports-betting-guide__faq-item.active .page-resources-sports-betting-guide__faq-answer {
                padding: 15px 20px !important;
            }
            .page-resources-sports-betting-guide__cta-section {
                padding: 40px 15px;
            }
            .page-resources-sports-betting-guide__cta-section h2 {
                font-size: 1.8em;
            }
            .page-resources-sports-betting-guide__cta-section p {
                font-size: 0.95em;
            }
            .page-resources-sports-betting-guide img {
                max-width: 100% !important;
                width: 100% !important;
                height: auto !important;
                box-sizing: border-box !important;
            }
            .page-resources-sports-betting-guide__image-wrapper {
                padding: 0 15px;
                max-width: 100% !important;
                width: 100% !important;
                box-sizing: border-box !important;
                overflow: hidden !important;
            }
            .page-resources-sports-betting-guide__feature-image {
                height: 200px;
            }
        }
    