/* style/hiphop-culture-zone-hiphop-songs-betting-philosophy.css */

:root {
    --primary-color: #1A1A2E;
    --accent-color: #E0B34E;
    --text-light: #F0F0F0;
    --text-dark: #333333;
    --background-dark: #121212;
    --background-light: #28283E;
    --button-hover-dark: #0F0F1A;
    --button-hover-light: #C29A3D;
}

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

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

/* Hero Section */
.page-hiphop-culture-zone-hiphop-songs-betting-philosophy .hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, #3a3a5a 100%);
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    color: var(--text-light);
}

.page-hiphop-culture-zone-hiphop-songs-betting-philosophy .hero-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.15;
    z-index: 0;
}

.page-hiphop-culture-zone-hiphop-songs-betting-philosophy .hero-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-hiphop-culture-zone-hiphop-songs-betting-philosophy .hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.page-hiphop-culture-zone-hiphop-songs-betting-philosophy .hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: var(--accent-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.page-hiphop-culture-zone-hiphop-songs-betting-philosophy .hero-subtitle {
    font-size: 1.4em;
    margin-bottom: 40px;
    color: var(--text-light);
}

/* Buttons */
.page-hiphop-culture-zone-hiphop-songs-betting-philosophy .btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
    cursor: pointer;
    margin: 10px;
    font-size: 1.1em;
}

.page-hiphop-culture-zone-hiphop-songs-betting-philosophy .btn-primary {
    background-color: var(--accent-color);
    color: var(--primary-color);
    border: 2px solid var(--accent-color);
}

.page-hiphop-culture-zone-hiphop-songs-betting-philosophy .btn-primary:hover {
    background-color: var(--button-hover-light);
    color: var(--primary-color);
    border-color: var(--button-hover-light);
}

.page-hiphop-culture-zone-hiphop-songs-betting-philosophy .btn-secondary {
    background-color: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.page-hiphop-culture-zone-hiphop-songs-betting-philosophy .btn-secondary:hover {
    background-color: var(--accent-color);
    color: var(--primary-color);
}

.page-hiphop-culture-zone-hiphop-songs-betting-philosophy .btn-tertiary {
    background-color: var(--primary-color);
    color: var(--accent-color);
    border: 2px solid var(--primary-color);
}

.page-hiphop-culture-zone-hiphop-songs-betting-philosophy .btn-tertiary:hover {
    background-color: var(--button-hover-dark);
    color: var(--accent-color);
}

.page-hiphop-culture-zone-hiphop-songs-betting-philosophy .btn-block {
    display: block;
    width: calc(100% - 20px);
    margin-left: 10px;
    margin-right: 10px;
}

.page-hiphop-culture-zone-hiphop-songs-betting-philosophy .btn-lg {
    padding: 15px 30px;
    font-size: 1.2em;
}

/* Introduction Section */
.page-hiphop-culture-zone-hiphop-songs-betting-philosophy .introduction-section {
    background-color: var(--primary-color);
    padding: 60px 0;
    text-align: center;
    color: var(--text-light);
}

.page-hiphop-culture-zone-hiphop-songs-betting-philosophy .introduction-section p {
    font-size: 1.1em;
    margin-bottom: 20px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Content Section */
.page-hiphop-culture-zone-hiphop-songs-betting-philosophy .content-section {
    padding: 60px 0;
    background-color: var(--background-dark);
}

.page-hiphop-culture-zone-hiphop-songs-betting-philosophy .content-section .container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.page-hiphop-culture-zone-hiphop-songs-betting-philosophy article {
    flex: 3;
    min-width: 600px;
    background-color: var(--background-light);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-hiphop-culture-zone-hiphop-songs-betting-philosophy .sidebar {
    flex: 1;
    min-width: 300px;
    background-color: var(--background-light);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-hiphop-culture-zone-hiphop-songs-betting-philosophy .section-title,
.page-hiphop-culture-zone-hiphop-songs-betting-philosophy .article-heading,
.page-hiphop-culture-zone-hiphop-songs-betting-philosophy .sidebar-title,
.page-hiphop-culture-zone-hiphop-songs-betting-philosophy .cta-title {
    color: var(--accent-color);
    margin-bottom: 25px;
    font-weight: bold;
    line-height: 1.3;
}

.page-hiphop-culture-zone-hiphop-songs-betting-philosophy .article-heading {
    font-size: 2.2em;
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 10px;
    margin-top: 40px;
}

.page-hiphop-culture-zone-hiphop-songs-betting-philosophy article h3 {
    font-size: 1.6em;
    color: var(--text-light);
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-hiphop-culture-zone-hiphop-songs-betting-philosophy article p {
    margin-bottom: 1em;
    font-size: 1.05em;
}

.page-hiphop-culture-zone-hiphop-songs-betting-philosophy .article-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    margin: 25px 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-hiphop-culture-zone-hiphop-songs-betting-philosophy .quote {
    background-color: var(--primary-color);
    border-left: 5px solid var(--accent-color);
    padding: 20px;
    margin: 30px 0;
    font-style: italic;
    font-size: 1.1em;
    color: var(--text-light);
}

.page-hiphop-culture-zone-hiphop-songs-betting-philosophy .quote footer {
    margin-top: 10px;
    font-size: 0.9em;
    color: var(--accent-color);
}

.page-hiphop-culture-zone-hiphop-songs-betting-philosophy a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-hiphop-culture-zone-hiphop-songs-betting-philosophy a:hover {
    color: var(--button-hover-light);
    text-decoration: underline;
}

/* Sidebar */
.page-hiphop-culture-zone-hiphop-songs-betting-philosophy .cta-box {
    text-align: center;
    margin-bottom: 40px;
    padding: 30px 20px;
    background-color: var(--primary-color);
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-hiphop-culture-zone-hiphop-songs-betting-philosophy .cta-box .btn {
    margin-bottom: 15px;
}

.page-hiphop-culture-zone-hiphop-songs-betting-philosophy .cta-text {
    font-size: 1.1em;
    margin-bottom: 25px;
    color: var(--text-light);
}

.page-hiphop-culture-zone-hiphop-songs-betting-philosophy .related-articles ul {
    list-style: none;
    padding: 0;
}

.page-hiphop-culture-zone-hiphop-songs-betting-philosophy .related-articles li {
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(224, 179, 78, 0.3);
    padding-bottom: 10px;
}

.page-hiphop-culture-zone-hiphop-songs-betting-philosophy .related-articles li:last-child {
    border-bottom: none;
}

.page-hiphop-culture-zone-hiphop-songs-betting-philosophy .related-articles a {
    display: block;
    font-size: 1.05em;
    color: var(--text-light);
}

.page-hiphop-culture-zone-hiphop-songs-betting-philosophy .related-articles a:hover {
    color: var(--accent-color);
}

/* Call to Action Section */
.page-hiphop-culture-zone-hiphop-songs-betting-philosophy .call-to-action-section {
    background-color: var(--primary-color);
    padding: 80px 20px;
    text-align: center;
    color: var(--text-light);
    border-top: 5px solid var(--accent-color);
}

.page-hiphop-culture-zone-hiphop-songs-betting-philosophy .call-to-action-section .section-title {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.page-hiphop-culture-zone-hiphop-songs-betting-philosophy .call-to-action-section p {
    font-size: 1.2em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-hiphop-culture-zone-hiphop-songs-betting-philosophy .cta-buttons .btn {
    margin: 0 15px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-hiphop-culture-zone-hiphop-songs-betting-philosophy .content-section .container {
        flex-direction: column;
    }

    .page-hiphop-culture-zone-hiphop-songs-betting-philosophy article,
    .page-hiphop-culture-zone-hiphop-songs-betting-philosophy .sidebar {
        min-width: unset;
        width: 100%;
    }

    .page-hiphop-culture-zone-hiphop-songs-betting-philosophy .hero-title {
        font-size: 2.8em;
    }

    .page-hiphop-culture-zone-hiphop-songs-betting-philosophy .hero-subtitle {
        font-size: 1.2em;
    }

    .page-hiphop-culture-zone-hiphop-songs-betting-philosophy .article-heading {
        font-size: 2em;
    }
}

@media (max-width: 768px) {
    .page-hiphop-culture-zone-hiphop-songs-betting-philosophy .hero-section {
        padding: 60px 15px;
    }

    .page-hiphop-culture-zone-hiphop-songs-betting-philosophy .hero-title {
        font-size: 2.2em;
    }

    .page-hiphop-culture-zone-hiphop-songs-betting-philosophy .hero-subtitle {
        font-size: 1em;
    }

    .page-hiphop-culture-zone-hiphop-songs-betting-philosophy .btn {
        padding: 10px 20px;
        font-size: 1em;
    }

    .page-hiphop-culture-zone-hiphop-songs-betting-philosophy .introduction-section,
    .page-hiphop-culture-zone-hiphop-songs-betting-philosophy .content-section,
    .page-hiphop-culture-zone-hiphop-songs-betting-philosophy .call-to-action-section {
        padding: 40px 0;
    }

    .page-hiphop-culture-zone-hiphop-songs-betting-philosophy article {
        padding: 25px;
    }

    .page-hiphop-culture-zone-hiphop-songs-betting-philosophy .sidebar {
        padding: 20px;
    }

    .page-hiphop-culture-zone-hiphop-songs-betting-philosophy .article-heading {
        font-size: 1.8em;
    }

    .page-hiphop-culture-zone-hiphop-songs-betting-philosophy article h3 {
        font-size: 1.4em;
    }

    .page-hiphop-culture-zone-hiphop-songs-betting-philosophy .cta-buttons {
        flex-direction: column;
    }

    .page-hiphop-culture-zone-hiphop-songs-betting-philosophy .cta-buttons .btn {
        margin: 10px 0;
    }
}

@media (max-width: 480px) {
    .page-hiphop-culture-zone-hiphop-songs-betting-philosophy .hero-title {
        font-size: 1.8em;
    }

    .page-hiphop-culture-zone-hiphop-songs-betting-philosophy .hero-subtitle {
        font-size: 0.9em;
    }

    .page-hiphop-culture-zone-hiphop-songs-betting-philosophy .btn-block {
        width: 100%;
        margin-left: 0;
        margin-right: 0;
    }

    .page-hiphop-culture-zone-hiphop-songs-betting-philosophy .cta-box .btn {
        width: calc(100% - 20px);
    }

    .page-hiphop-culture-zone-hiphop-songs-betting-philosophy .section-title {
        font-size: 2em;
    }

    .page-hiphop-culture-zone-hiphop-songs-betting-philosophy .call-to-action-section .section-title {
        font-size: 2em;
    }
}