/* style/resources-hiphop-culture-online-betting-intersection.css */

.page-resources-hiphop-culture-online-betting-intersection {
    --primary-color: #1A1A2E;
    --secondary-color: #E0B34E;
    --text-color-light: #F8F8F8;
    --text-color-dark: #1A1A2E;
    --background-dark: #1A1A2E;
    --background-light: #F0F0F0;
    --accent-dark: #9d7d37; /* Darker shade of secondary for text on light background */
    --accent-light: #e5e5d1; /* Lighter shade of primary for text on dark background */
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-color-light);
}

.page-resources-hiphop-culture-online-betting-intersection__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-resources-hiphop-culture-online-betting-intersection__hero {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 100px 0;
    text-align: center;
    color: var(--text-color-light);
    position: relative;
    overflow: hidden;
}

.page-resources-hiphop-culture-online-betting-intersection__hero::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: rgba(224, 179, 78, 0.1);
    border-radius: 50%;
    animation: floatEffect 10s infinite ease-in-out;
}

.page-resources-hiphop-culture-online-betting-intersection__hero::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 250px;
    height: 250px;
    background: rgba(26, 26, 46, 0.1);
    border-radius: 50%;
    animation: floatEffect 12s infinite reverse ease-in-out;
}

@keyframes floatEffect {
    0% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(20px, 20px) rotate(15deg); }
    50% { transform: translate(0, 0) rotate(0deg); }
    75% { transform: translate(-20px, -20px) rotate(-15deg); }
    100% { transform: translate(0, 0) rotate(0deg); }
}

.page-resources-hiphop-culture-online-betting-intersection__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    color: var(--text-color-light);
}

.page-resources-hiphop-culture-online-betting-intersection__hero-subtitle {
    font-size: 1.5em;
    margin-bottom: 40px;
    color: var(--text-color-light);
}

.page-resources-hiphop-culture-online-betting-intersection__hero-cta-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.page-resources-hiphop-culture-online-betting-intersection__button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    text-align: center;
    cursor: pointer;
}

.page-resources-hiphop-culture-online-betting-intersection__button--primary {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border: 2px solid var(--secondary-color);
}

.page-resources-hiphop-culture-online-betting-intersection__button--primary:hover {
    background-color: var(--accent-dark);
    border-color: var(--accent-dark);
    color: var(--text-color-light);
}

.page-resources-hiphop-culture-online-betting-intersection__button--secondary {
    background-color: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
}

.page-resources-hiphop-culture-online-betting-intersection__button--secondary:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

.page-resources-hiphop-culture-online-betting-intersection__button--action {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border: none;
    margin-top: 20px;
    padding: 12px 25px;
    font-size: 1.1em;
}

.page-resources-hiphop-culture-online-betting-intersection__button--action:hover {
    background-color: var(--accent-dark);
    color: var(--text-color-light);
}

.page-resources-hiphop-culture-online-betting-intersection__section {
    padding: 60px 0;
}

.page-resources-hiphop-culture-online-betting-intersection__section--dark {
    background-color: var(--background-dark);
    color: var(--text-color-light);
}

.page-resources-hiphop-culture-online-betting-intersection__section--light {
    background-color: var(--background-light);
    color: var(--text-color-dark);
}

.page-resources-hiphop-culture-online-betting-intersection__section--cta {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    text-align: center;
    color: var(--text-color-light);
}

.page-resources-hiphop-culture-online-betting-intersection__section-title {
    font-size: 2.5em;
    margin-bottom: 30px;
    text-align: center;
    color: inherit;
    font-weight: bold;
}

.page-resources-hiphop-culture-online-betting-intersection__section--light .page-resources-hiphop-culture-online-betting-intersection__section-title {
    color: var(--primary-color);
}

.page-resources-hiphop-culture-online-betting-intersection__section-subtitle {
    font-size: 1.8em;
    margin-top: 40px;
    margin-bottom: 20px;
    color: inherit;
    text-align: left;
}

.page-resources-hiphop-culture-online-betting-intersection__section--light .page-resources-hiphop-culture-online-betting-intersection__section-subtitle {
    color: var(--primary-color);
}

.page-resources-hiphop-culture-online-betting-intersection__text-content {
    font-size: 1.1em;
    margin-bottom: 20px;
    text-align: justify;
    color: inherit;
}

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

.page-resources-hiphop-culture-online-betting-intersection__image-item {
    text-align: center;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-resources-hiphop-culture-online-betting-intersection__image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 15px;
}

.page-resources-hiphop-culture-online-betting-intersection__image-item figcaption {
    font-style: italic;
    font-size: 0.9em;
    color: var(--accent-light);
}

.page-resources-hiphop-culture-online-betting-intersection__full-width-image {
    margin: 40px 0;
    text-align: center;
}

.page-resources-hiphop-culture-online-betting-intersection__full-width-image .page-resources-hiphop-culture-online-betting-intersection__image {
    max-width: 100%;
    height: auto;
    max-height: 450px;
    object-fit: cover;
}

.page-resources-hiphop-culture-online-betting-intersection__image-with-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin: 40px 0;
}

.page-resources-hiphop-culture-online-betting-intersection__image-with-text .page-resources-hiphop-culture-online-betting-intersection__image {
    width: 100%;
    max-width: 600px;
    height: 350px;
    object-fit: cover;
    border-radius: 8px;
}

.page-resources-hiphop-culture-online-betting-intersection__image-with-text figcaption {
    font-style: italic;
    font-size: 0.95em;
    color: inherit;
}

.page-resources-hiphop-culture-online-betting-intersection__feature-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.page-resources-hiphop-culture-online-betting-intersection__feature-list li {
    background-color: rgba(224, 179, 78, 0.1);
    border-left: 5px solid var(--secondary-color);
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.page-resources-hiphop-culture-online-betting-intersection__feature-list li:hover {
    transform: translateY(-5px);
}

.page-resources-hiphop-culture-online-betting-intersection__feature-title {
    font-size: 1.4em;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.page-resources-hiphop-culture-online-betting-intersection__feature-list p {
    font-size: 1em;
    color: var(--text-color-light);
}

.page-resources-hiphop-culture-online-betting-intersection__cta-group {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Responsive adjustments */
@media (min-width: 768px) {
    .page-resources-hiphop-culture-online-betting-intersection__image-with-text {
        flex-direction: row;
        text-align: left;
    }
    .page-resources-hiphop-culture-online-betting-intersection__image-with-text:nth-of-type(even) {
        flex-direction: row-reverse;
    }
    .page-resources-hiphop-culture-online-betting-intersection__image-with-text .page-resources-hiphop-culture-online-betting-intersection__image {
        max-width: 50%;
    }
}

@media (max-width: 768px) {
    .page-resources-hiphop-culture-online-betting-intersection__hero-title {
        font-size: 2.5em;
    }
    .page-resources-hiphop-culture-online-betting-intersection__hero-subtitle {
        font-size: 1.2em;
    }
    .page-resources-hiphop-culture-online-betting-intersection__section-title {
        font-size: 2em;
    }
    .page-resources-hiphop-culture-online-betting-intersection__section-subtitle {
        font-size: 1.5em;
    }
    .page-resources-hiphop-culture-online-betting-intersection__image-grid {
        grid-template-columns: 1fr;
    }
    .page-resources-hiphop-culture-online-betting-intersection__feature-list {
        grid-template-columns: 1fr;
    }
    .page-resources-hiphop-culture-online-betting-intersection__hero-cta-group, .page-resources-hiphop-culture-online-betting-intersection__cta-group {
        flex-direction: column;
        align-items: center;
    }
    .page-resources-hiphop-culture-online-betting-intersection__button {
        width: 80%;
    }
}

@media (max-width: 480px) {
    .page-resources-hiphop-culture-online-betting-intersection__hero-title {
        font-size: 2em;
    }
    .page-resources-hiphop-culture-online-betting-intersection__hero-subtitle {
        font-size: 1em;
    }
    .page-resources-hiphop-culture-online-betting-intersection__section-title {
        font-size: 1.8em;
    }
    .page-resources-hiphop-culture-online-betting-intersection__section-subtitle {
        font-size: 1.3em;
    }
    .page-resources-hiphop-culture-online-betting-intersection__button {
        padding: 12px 20px;
        font-size: 0.95em;
    }
}