/* style/resources-suncity888-sports-betting-guide.css */

:root {
    --primary-color: #FFD700;
    --secondary-color: #000000;
    --accent-color: #DC143C;
    --text-light: #F0F0F0;
    --text-dark: #333333;
    --bg-dark: #1a1a1a;
    --bg-light: #ffffff;
    --border-color: #444444;
}

.page-resources-suncity888-sports-betting-guide {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-light);
    background-color: var(--bg-dark);
    padding: 0;
    margin: 0;
    overflow-x: hidden;
}

.page-resources-suncity888-sports-betting-guide strong.highlight {
    color: var(--primary-color);
}

.page-resources-suncity888-sports-betting-guide__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.page-resources-suncity888-sports-betting-guide__hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    color: var(--text-dark);
    padding: 80px 20px;
    text-align: center;
    gap: 40px;
}

.page-resources-suncity888-sports-betting-guide__hero-content {
    max-width: 800px;
}

.page-resources-suncity888-sports-betting-guide__hero-title {
    font-size: 3.5em;
    color: var(--secondary-color);
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-resources-suncity888-sports-betting-guide__hero-description {
    font-size: 1.2em;
    color: var(--text-dark);
    margin-bottom: 30px;
}

.page-resources-suncity888-sports-betting-guide__hero-image-wrapper {
    width: 90%;
    max-width: 800px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-resources-suncity888-sports-betting-guide__hero-image {
    width: 100%;
    height: auto;
    display: block;
}

.page-resources-suncity888-sports-betting-guide__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
    font-size: 1.1em;
    cursor: pointer;
    border: none;
}

.page-resources-suncity888-sports-betting-guide__btn--primary {
    background-color: var(--accent-color);
    color: var(--text-light);
}

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

.page-resources-suncity888-sports-betting-guide__btn--secondary {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border: 2px solid var(--primary-color);
}

.page-resources-suncity888-sports-betting-guide__btn--secondary:hover {
    background-color: #e6c200;
    color: var(--secondary-color);
    transform: translateY(-3px);
}

.page-resources-suncity888-sports-betting-guide__section {
    padding: 60px 0;
    text-align: left;
}

.page-resources-suncity888-sports-betting-guide__section:nth-of-type(even) {
    background-color: var(--bg-dark);
}

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

.page-resources-suncity888-sports-betting-guide__section-title {
    font-size: 2.8em;
    color: var(--primary-color);
    margin-bottom: 40px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.page-resources-suncity888-sports-betting-guide__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--accent-color);
    border-radius: 2px;
}

.page-resources-suncity888-sports-betting-guide__section p {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: var(--text-light);
}

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

.page-resources-suncity888-sports-betting-guide__feature-item {
    background-color: var(--secondary-color);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
    border: 1px solid var(--border-color);
}

.page-resources-suncity888-sports-betting-guide__feature-item:hover {
    transform: translateY(-5px);
}

.page-resources-suncity888-sports-betting-guide__feature-item h3 {
    color: var(--primary-color);
    font-size: 1.5em;
    margin-top: 20px;
    margin-bottom: 15px;
}

.page-resources-suncity888-sports-betting-guide__feature-item p {
    color: var(--text-light);
    font-size: 1em;
}

.page-resources-suncity888-sports-betting-guide__feature-icon {
    width: 80px;
    height: 80px;
    object-fit: contain;
    filter: brightness(1.2);
}

.page-resources-suncity888-sports-betting-guide__step-list {
    counter-reset: step-counter;
    list-style: none;
    padding: 0;
    margin: 40px 0;
}

.page-resources-suncity888-sports-betting-guide__step-list li {
    position: relative;
    padding-left: 70px;
    margin-bottom: 40px;
    color: var(--text-light);
}

.page-resources-suncity888-sports-betting-guide__step-list li::before {
    counter-increment: step-counter;
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8em;
    font-weight: bold;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.page-resources-suncity888-sports-betting-guide__step-list li h3 {
    color: var(--primary-color);
    font-size: 1.6em;
    margin-bottom: 10px;
}

.page-resources-suncity888-sports-betting-guide__step-list li p {
    color: var(--text-light);
    font-size: 1.1em;
}

.page-resources-suncity888-sports-betting-guide__step-image {
    max-width: 100%;
    height: auto;
    margin-top: 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-resources-suncity888-sports-betting-guide__sub-list {
    list-style: disc inside;
    margin-top: 15px;
    margin-bottom: 15px;
    padding-left: 20px;
    color: var(--text-light);
}

.page-resources-suncity888-sports-betting-guide__sub-list li {
    margin-bottom: 8px;
    font-size: 1em;
}

.page-resources-suncity888-sports-betting-guide__sub-list li strong {
    color: var(--primary-color);
}

.page-resources-suncity888-sports-betting-guide__link-box {
    background-color: var(--secondary-color);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    margin-top: 40px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
    border: 1px solid var(--border-color);
}

.page-resources-suncity888-sports-betting-guide__link-text {
    font-size: 1.4em;
    color: var(--primary-color);
    margin-bottom: 25px;
    font-weight: bold;
}

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

.page-resources-suncity888-sports-betting-guide__sports-item {
    background-color: var(--secondary-color);
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease;
}

.page-resources-suncity888-sports-betting-guide__sports-item:hover {
    transform: translateY(-5px);
}

.page-resources-suncity888-sports-betting-guide__sports-item h3 {
    color: var(--primary-color);
    font-size: 1.6em;
    margin-top: 15px;
    margin-bottom: 10px;
}

.page-resources-suncity888-sports-betting-guide__sports-item p {
    color: var(--text-light);
    font-size: 0.95em;
}

.page-resources-suncity888-sports-betting-guide__sports-icon {
    width: 70px;
    height: 70px;
    object-fit: contain;
    filter: brightness(1.2);
}

.page-resources-suncity888-sports-betting-guide__bullet-list {
    list-style: none;
    padding: 0;
    margin: 40px 0;
}

.page-resources-suncity888-sports-betting-guide__bullet-list li {
    background-color: var(--secondary-color);
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
    border-left: 5px solid var(--primary-color);
}

.page-resources-suncity888-sports-betting-guide__bullet-list li h3 {
    color: var(--primary-color);
    font-size: 1.6em;
    margin-bottom: 10px;
}

.page-resources-suncity888-sports-betting-guide__bullet-list li p {
    color: var(--text-light);
    font-size: 1.1em;
}

.page-resources-suncity888-sports-betting-guide__inline-image {
    max-width: 100%;
    height: auto;
    margin: 20px auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-resources-suncity888-sports-betting-guide__faq-item {
    background-color: var(--secondary-color);
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
    border-left: 5px solid var(--accent-color);
}

.page-resources-suncity888-sports-betting-guide__faq-item h3 {
    color: var(--primary-color);
    font-size: 1.5em;
    margin-bottom: 10px;
}

.page-resources-suncity888-sports-betting-guide__faq-item p {
    color: var(--text-light);
    font-size: 1em;
}

.page-resources-suncity888-sports-betting-guide__cta-content {
    text-align: center;
    background-color: var(--secondary-color);
    padding: 50px 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 2px solid var(--primary-color);
}

.page-resources-suncity888-sports-betting-guide__cta-buttons {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-resources-suncity888-sports-betting-guide__hero-title {
        font-size: 2.8em;
    }

    .page-resources-suncity888-sports-betting-guide__section-title {
        font-size: 2.2em;
    }

    .page-resources-suncity888-sports-betting-guide__hero {
        padding: 60px 20px;
    }
}

@media (max-width: 768px) {
    .page-resources-suncity888-sports-betting-guide__hero {
        flex-direction: column;
        gap: 30px;
    }

    .page-resources-suncity888-sports-betting-guide__hero-title {
        font-size: 2.2em;
    }

    .page-resources-suncity888-sports-betting-guide__hero-description {
        font-size: 1em;
    }

    .page-resources-suncity888-sports-betting-guide__section-title {
        font-size: 1.8em;
    }

    .page-resources-suncity888-sports-betting-guide__section p,
    .page-resources-suncity888-sports-betting-guide__step-list li p,
    .page-resources-suncity888-sports-betting-guide__bullet-list li p,
    .page-resources-suncity888-sports-betting-guide__faq-item p {
        font-size: 0.95em;
    }

    .page-resources-suncity888-sports-betting-guide__btn {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-resources-suncity888-sports-betting-guide__step-list li {
        padding-left: 60px;
    }

    .page-resources-suncity888-sports-betting-guide__step-list li::before {
        width: 45px;
        height: 45px;
        font-size: 1.6em;
    }

    .page-resources-suncity888-sports-betting-guide__link-text {
        font-size: 1.2em;
    }

    .page-resources-suncity888-sports-betting-guide__cta-buttons {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .page-resources-suncity888-sports-betting-guide__hero-title {
        font-size: 1.8em;
    }

    .page-resources-suncity888-sports-betting-guide__section-title {
        font-size: 1.5em;
    }

    .page-resources-suncity888-sports-betting-guide__feature-item,
    .page-resources-suncity888-sports-betting-guide__sports-item {
        padding: 20px;
    }

    .page-resources-suncity888-sports-betting-guide__feature-item h3,
    .page-resources-suncity888-sports-betting-guide__sports-item h3,
    .page-resources-suncity888-sports-betting-guide__bullet-list li h3,
    .page-resources-suncity888-sports-betting-guide__faq-item h3 {
        font-size: 1.3em;
    }
}