/* style/hiphop-culture-zone-fashion-betting-trends.css */

:root {
    --primary-color: #1A1A2E;
    --secondary-color: #E0B34E;
    --text-on-dark: #FFFFFF;
    --text-on-light: #1A1A2E;
    --light-background: #F8F8F8;
    --dark-background-accent: #2C2C4A;
}

.page-hiphop-culture-zone-fashion-betting-trends {
    font-family: 'Arial', sans-serif;
    color: var(--text-on-light);
    background-color: var(--light-background);
    line-height: 1.6;
}

.page-hiphop-culture-zone-fashion-betting-trends__hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 600px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-background-accent) 100%);
    color: var(--text-on-dark);
    text-align: center;
    overflow: hidden;
    padding: 80px 20px;
}

.page-hiphop-culture-zone-fashion-betting-trends__hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.page-hiphop-culture-zone-fashion-betting-trends__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.3;
}

.page-hiphop-culture-zone-fashion-betting-trends__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(50%);
}

.page-hiphop-culture-zone-fashion-betting-trends__title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: var(--secondary-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-hiphop-culture-zone-fashion-betting-trends__subtitle {
    font-size: 1.5em;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-hiphop-culture-zone-fashion-betting-trends__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    margin: 0 10px;
    cursor: pointer;
}

.page-hiphop-culture-zone-fashion-betting-trends__btn--primary {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border: 2px solid var(--secondary-color);
}

.page-hiphop-culture-zone-fashion-betting-trends__btn--primary:hover {
    background-color: darken(var(--secondary-color), 10%);
    color: var(--text-on-dark);
}

.page-hiphop-culture-zone-fashion-betting-trends__btn--secondary {
    background-color: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
}

.page-hiphop-culture-zone-fashion-betting-trends__btn--secondary:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

.page-hiphop-culture-zone-fashion-betting-trends__btn--large {
    padding: 18px 40px;
    font-size: 1.1em;
}

.page-hiphop-culture-zone-fashion-betting-trends__section {
    padding: 60px 0;
    background-color: var(--light-background);
}

.page-hiphop-culture-zone-fashion-betting-trends__section:nth-of-type(odd) {
    background-color: #F0F0F0;
}

.page-hiphop-culture-zone-fashion-betting-trends__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-hiphop-culture-zone-fashion-betting-trends__section-title {
    font-size: 2.5em;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-hiphop-culture-zone-fashion-betting-trends__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--secondary-color);
    border-radius: 2px;
}

.page-hiphop-culture-zone-fashion-betting-trends__paragraph {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: var(--text-on-light);
    text-align: justify;
}

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

.page-hiphop-culture-zone-fashion-betting-trends__grid-item {
    background-color: #FFFFFF;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-hiphop-culture-zone-fashion-betting-trends__grid-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.page-hiphop-culture-zone-fashion-betting-trends__grid-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 20px;
}

.page-hiphop-culture-zone-fashion-betting-trends__grid-title {
    font-size: 1.6em;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.page-hiphop-culture-zone-fashion-betting-trends__grid-description {
    color: var(--text-on-light);
}

.page-hiphop-culture-zone-fashion-betting-trends__list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.page-hiphop-culture-zone-fashion-betting-trends__list li {
    background-color: #FFFFFF;
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    border-left: 5px solid var(--secondary-color);
}

.page-hiphop-culture-zone-fashion-betting-trends__list-title {
    font-size: 1.8em;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.page-hiphop-culture-zone-fashion-betting-trends__list-description {
    color: var(--text-on-light);
}

.page-hiphop-culture-zone-fashion-betting-trends__image--full-width {
    width: 100%;
    height: auto;
    max-height: 450px;
    object-fit: cover;
    border-radius: 10px;
    margin-top: 40px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.page-hiphop-culture-zone-fashion-betting-trends__numbered-list {
    list-style: none;
    counter-reset: item;
    padding: 0;
    margin-top: 30px;
}

.page-hiphop-culture-zone-fashion-betting-trends__numbered-list li {
    counter-increment: item;
    background-color: #FFFFFF;
    padding: 25px 25px 25px 70px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    position: relative;
}

.page-hiphop-culture-zone-fashion-betting-trends__numbered-list li::before {
    content: counter(item);
    position: absolute;
    left: 25px;
    top: 25px;
    width: 35px;
    height: 35px;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2em;
}

.page-hiphop-culture-zone-fashion-betting-trends__image--right-align {
    float: right;
    margin-left: 30px;
    margin-bottom: 20px;
    width: 40%;
    max-width: 400px;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .page-hiphop-culture-zone-fashion-betting-trends__image--right-align {
        float: none;
        margin-left: 0;
        width: 100%;
        max-width: 100%;
    }
}

.page-hiphop-culture-zone-fashion-betting-trends__container--flex {
    display: flex;
    align-items: center;
    gap: 40px;
}

.page-hiphop-culture-zone-fashion-betting-trends__promo-content {
    flex: 1;
}

.page-hiphop-culture-zone-fashion-betting-trends__promo-image-wrapper {
    flex: 1;
    text-align: center;
}

.page-hiphop-culture-zone-fashion-betting-trends__promo-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.page-hiphop-culture-zone-fashion-betting-trends__promo-list {
    list-style: disc;
    padding-left: 20px;
    margin-top: 20px;
    color: var(--text-on-light);
}

.page-hiphop-culture-zone-fashion-betting-trends__promo-list li {
    margin-bottom: 10px;
    font-size: 1.1em;
}

.page-hiphop-culture-zone-fashion-betting-trends__grid--two-col {
    grid-template-columns: 1fr 1fr;
}

.page-hiphop-culture-zone-fashion-betting-trends__why-item {
    background-color: var(--primary-color);
    color: var(--text-on-dark);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-hiphop-culture-zone-fashion-betting-trends__why-title {
    font-size: 1.8em;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.page-hiphop-culture-zone-fashion-betting-trends__why-description {
    font-size: 1.1em;
}

.page-hiphop-culture-zone-fashion-betting-trends__image--centered {
    display: block;
    margin: 40px auto 0 auto;
    max-width: 80%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.page-hiphop-culture-zone-fashion-betting-trends__section--conclusion {
    background-color: var(--primary-color);
    color: var(--text-on-dark);
}

.page-hiphop-culture-zone-fashion-betting-trends__section--conclusion .page-hiphop-culture-zone-fashion-betting-trends__section-title {
    color: var(--secondary-color);
}

.page-hiphop-culture-zone-fashion-betting-trends__section--conclusion .page-hiphop-culture-zone-fashion-betting-trends__paragraph {
    color: var(--text-on-dark);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .page-hiphop-culture-zone-fashion-betting-trends__title {
        font-size: 3em;
    }
    .page-hiphop-culture-zone-fashion-betting-trends__subtitle {
        font-size: 1.3em;
    }
    .page-hiphop-culture-zone-fashion-betting-trends__section-title {
        font-size: 2em;
    }
    .page-hiphop-culture-zone-fashion-betting-trends__container--flex {
        flex-direction: column;
        text-align: center;
    }
    .page-hiphop-culture-zone-fashion-betting-trends__promo-content,
    .page-hiphop-culture-zone-fashion-betting-trends__promo-image-wrapper {
        flex: none;
        width: 100%;
    }
    .page-hiphop-culture-zone-fashion-betting-trends__promo-image {
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    .page-hiphop-culture-zone-fashion-betting-trends__hero {
        min-height: 500px;
        padding: 60px 15px;
    }
    .page-hiphop-culture-zone-fashion-betting-trends__title {
        font-size: 2.5em;
    }
    .page-hiphop-culture-zone-fashion-betting-trends__subtitle {
        font-size: 1.1em;
    }
    .page-hiphop-culture-zone-fashion-betting-trends__btn {
        padding: 12px 25px;
        font-size: 0.9em;
        margin: 0 5px;
    }
    .page-hiphop-culture-zone-fashion-betting-trends__section {
        padding: 40px 0;
    }
    .page-hiphop-culture-zone-fashion-betting-trends__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }
    .page-hiphop-culture-zone-fashion-betting-trends__paragraph {
        font-size: 1em;
    }
    .page-hiphop-culture-zone-fashion-betting-trends__grid {
        grid-template-columns: 1fr;
    }
    .page-hiphop-culture-zone-fashion-betting-trends__grid--two-col {
        grid-template-columns: 1fr;
    }
    .page-hiphop-culture-zone-fashion-betting-trends__list li,
    .page-hiphop-culture-zone-fashion-betting-trends__numbered-list li {
        padding: 20px;
        padding-left: 60px;
    }
    .page-hiphop-culture-zone-fashion-betting-trends__numbered-list li::before {
        left: 20px;
        top: 20px;
        width: 30px;
        height: 30px;
        font-size: 1em;
    }
    .page-hiphop-culture-zone-fashion-betting-trends__image--right-align {
        float: none;
        margin: 20px auto;
        width: 90%;
    }
    .page-hiphop-culture-zone-fashion-betting-trends__image--full-width,
    .page-hiphop-culture-zone-fashion-betting-trends__image--centered {
        max-height: 300px;
    }
}

@media (max-width: 480px) {
    .page-hiphop-culture-zone-fashion-betting-trends__title {
        font-size: 2em;
    }
    .page-hiphop-culture-zone-fashion-betting-trends__subtitle {
        font-size: 1em;
    }
    .page-hiphop-culture-zone-fashion-betting-trends__btn {
        display: block;
        margin: 10px auto;
        width: 80%;
    }
    .page-hiphop-culture-zone-fashion-betting-trends__section-title {
        font-size: 1.5em;
    }
}