/* style/resources-future-hiphop-gaming.css */

/* Variables */
:root {
    --primary-color: #FF0055;
    --secondary-color: #00FFEE;
    --dark-bg: #1a1a1a;
    --light-text: #ffffff;
    --dark-text: #000000;
    --gray-text: #cccccc;
}

.page-resources-future-hiphop-gaming {
    font-family: 'Arial', sans-serif;
    color: var(--light-text);
    background-color: var(--dark-bg);
    line-height: 1.6;
}

.page-resources-future-hiphop-gaming-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-resources-future-hiphop-gaming-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-resources-future-hiphop-gaming-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('[GALLERY:bg:hiphop,abstract,geometric]') no-repeat center center/cover;
    opacity: 0.1;
    z-index: 0;
}

.page-resources-future-hiphop-gaming-title {
    font-size: 3.5em;
    color: var(--light-text);
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 1;
}

.page-resources-future-hiphop-gaming-subtitle {
    font-size: 1.5em;
    color: var(--light-text);
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.page-resources-future-hiphop-gaming-btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    font-size: 1.1em;
    position: relative;
    z-index: 1;
    border: none;
    cursor: pointer;
}

.page-resources-future-hiphop-gaming-btn-primary {
    background-color: var(--primary-color);
    color: var(--light-text);
    box-shadow: 0 5px 15px rgba(255, 0, 85, 0.4);
}

.page-resources-future-hiphop-gaming-btn-primary:hover {
    background-color: #e6004d;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 0, 85, 0.6);
}

.page-resources-future-hiphop-gaming-btn-secondary {
    background-color: var(--secondary-color);
    color: var(--dark-bg);
    box-shadow: 0 5px 15px rgba(0, 255, 238, 0.4);
}

.page-resources-future-hiphop-gaming-btn-secondary:hover {
    background-color: #00e6d5;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 255, 238, 0.6);
}

.page-resources-future-hiphop-gaming-btn-small {
    padding: 10px 20px;
    font-size: 0.9em;
    border-radius: 30px;
    background-color: var(--primary-color);
    color: var(--light-text);
}

.page-resources-future-hiphop-gaming-btn-small:hover {
    background-color: #e6004d;
}

.page-resources-future-hiphop-gaming-section {
    padding: 80px 0;
    background-color: var(--dark-bg);
}

.page-resources-future-hiphop-gaming-section:nth-of-type(even) {
    background-color: #222222;
}

.page-resources-future-hiphop-gaming-section-title {
    font-size: 2.5em;
    color: var(--secondary-color);
    text-align: center;
    margin-bottom: 60px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.page-resources-future-hiphop-gaming-section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
    margin: 15px auto 0;
    border-radius: 2px;
}

.page-resources-future-hiphop-gaming-about .page-resources-future-hiphop-gaming-section-title {
    color: var(--primary-color);
}

.page-resources-future-hiphop-gaming-about .page-resources-future-hiphop-gaming-section-title::after {
    background-color: var(--secondary-color);
}

.page-resources-future-hiphop-gaming-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.page-resources-future-hiphop-gaming-content-grid.reverse-grid {
    grid-template-columns: 1fr 1fr;
}

.page-resources-future-hiphop-gaming-content-grid.reverse-grid .page-resources-future-hiphop-gaming-image-wrapper {
    order: 2;
}

.page-resources-future-hiphop-gaming-content-grid.reverse-grid .page-resources-future-hiphop-gaming-text-content {
    order: 1;
}

.page-resources-future-hiphop-gaming-text-content h3 {
    font-size: 1.8em;
    color: var(--secondary-color);
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-resources-future-hiphop-gaming-text-content p {
    font-size: 1.1em;
    margin-bottom: 15px;
    color: var(--gray-text);
}

.page-resources-future-hiphop-gaming-text-content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.page-resources-future-hiphop-gaming-text-content ul li {
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="%23FF0055"><path d="M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z"/></svg>') no-repeat left center;
    background-size: 18px;
    padding-left: 30px;
    margin-bottom: 10px;
    color: var(--light-text);
    font-size: 1.05em;
}

.page-resources-future-hiphop-gaming-image-wrapper {
    text-align: center;
}

.page-resources-future-hiphop-gaming-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-resources-future-hiphop-gaming-grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-resources-future-hiphop-gaming-card {
    background-color: #2a2a2a;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-resources-future-hiphop-gaming-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.page-resources-future-hiphop-gaming-card h3 {
    font-size: 1.6em;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.page-resources-future-hiphop-gaming-card p {
    color: var(--gray-text);
    font-size: 1em;
    flex-grow: 1;
    margin-bottom: 20px;
}

.page-resources-future-hiphop-gaming-card-image {
    max-width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-top: 20px;
    margin-bottom: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-resources-future-hiphop-gaming-cta-bottom {
    text-align: center;
    margin-top: 60px;
}

.page-resources-future-hiphop-gaming-description {
    text-align: center;
    font-size: 1.2em;
    color: var(--gray-text);
    margin-bottom: 40px;
}

.page-resources-future-hiphop-gaming-steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.page-resources-future-hiphop-gaming-step-card {
    background-color: #2a2a2a;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    border-bottom: 5px solid var(--secondary-color);
}

.page-resources-future-hiphop-gaming-step-card h3 {
    font-size: 1.5em;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.page-resources-future-hiphop-gaming-step-card p {
    color: var(--gray-text);
    margin-bottom: 20px;
}

.page-resources-future-hiphop-gaming-responsible ul {
    list-style: none;
    padding: 0;
    max-width: 800px;
    margin: 0 auto 30px auto;
}

.page-resources-future-hiphop-gaming-responsible ul li {
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="%2300FFEE"><path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 15h-2v-6h2v6zm0-8h-2V7h2v2z"/></svg>') no-repeat left center;
    background-size: 18px;
    padding-left: 30px;
    margin-bottom: 12px;
    color: var(--light-text);
    font-size: 1.1em;
}

.page-resources-future-hiphop-gaming-conclusion p {
    font-size: 1.2em;
    text-align: center;
    color: var(--gray-text);
    margin-bottom: 40px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-resources-future-hiphop-gaming-title {
        font-size: 2.8em;
    }
    .page-resources-future-hiphop-gaming-subtitle {
        font-size: 1.3em;
    }
    .page-resources-future-hiphop-gaming-section-title {
        font-size: 2em;
    }
    .page-resources-future-hiphop-gaming-content-grid {
        grid-template-columns: 1fr;
    }
    .page-resources-future-hiphop-gaming-content-grid.reverse-grid .page-resources-future-hiphop-gaming-image-wrapper,
    .page-resources-future-hiphop-gaming-content-grid.reverse-grid .page-resources-future-hiphop-gaming-text-content {
        order: unset;
    }
}

@media (max-width: 768px) {
    .page-resources-future-hiphop-gaming-hero {
        padding: 80px 0;
    }
    .page-resources-future-hiphop-gaming-title {
        font-size: 2.2em;
    }
    .page-resources-future-hiphop-gaming-subtitle {
        font-size: 1.1em;
    }
    .page-resources-future-hiphop-gaming-btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-resources-future-hiphop-gaming-section {
        padding: 60px 0;
    }
    .page-resources-future-hiphop-gaming-section-title {
        font-size: 1.8em;
        margin-bottom: 40px;
    }
    .page-resources-future-hiphop-gaming-text-content h3 {
        font-size: 1.6em;
    }
    .page-resources-future-hiphop-gaming-text-content p {
        font-size: 1em;
    }
    .page-resources-future-hiphop-gaming-grid-3,
    .page-resources-future-hiphop-gaming-steps-grid {
        grid-template-columns: 1fr;
    }
    .page-resources-future-hiphop-gaming-card,
    .page-resources-future-hiphop-gaming-step-card {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .page-resources-future-hiphop-gaming-title {
        font-size: 1.8em;
    }
    .page-resources-future-hiphop-gaming-subtitle {
        font-size: 0.9em;
    }
    .page-resources-future-hiphop-gaming-btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }
    .page-resources-future-hiphop-gaming-section-title {
        font-size: 1.5em;
    }
    .page-resources-future-hiphop-gaming-text-content h3 {
        font-size: 1.4em;
    }
    .page-resources-future-hiphop-gaming-text-content p {
        font-size: 0.95em;
    }
    .page-resources-future-hiphop-gaming-card p,
    .page-resources-future-hiphop-gaming-step-card p {
        font-size: 0.9em;
    }
}