/* style/game-community-tournament-registration.css */

:root {
    --page-game-community-tournament-registration-primary-color: #FFD700;
    --page-game-community-tournament-registration-secondary-color: #00BFFF;
    --page-game-community-tournament-registration-dark-bg: #1A1A1A;
    --page-game-community-tournament-registration-darker-bg: #121212;
    --page-game-community-tournament-registration-text-light: #E0E0E0;
    --page-game-community-tournament-registration-text-dark: #333333;
    --page-game-community-tournament-registration-accent-blue: #00BFFF;
    --page-game-community-tournament-registration-accent-gold: #FFD700;
}

.page-game-community-tournament-registration {
    font-family: 'Arial', sans-serif;
    color: var(--page-game-community-tournament-registration-text-light);
    background-color: var(--page-game-community-tournament-registration-darker-bg);
    line-height: 1.6;
}

.page-game-community-tournament-registration__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.page-game-community-tournament-registration__brand-link {
    color: var(--page-game-community-tournament-registration-accent-gold);
    text-decoration: none;
    font-weight: bold;
}

.page-game-community-tournament-registration__brand-link:hover {
    text-decoration: underline;
}

.page-game-community-tournament-registration__highlight-text {
    color: var(--page-game-community-tournament-registration-accent-gold);
    font-weight: bold;
}

/* Hero Section */
.page-game-community-tournament-registration__hero-section {
    background: linear-gradient(135deg, rgba(0, 191, 255, 0.2), rgba(255, 215, 0, 0.2)), url('[IMAGE:hero_banner_tournament]') no-repeat center center/cover;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    color: var(--page-game-community-tournament-registration-text-light);
}

.page-game-community-tournament-registration__hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.page-game-community-tournament-registration__hero-section > div {
    position: relative;
    z-index: 2;
}

.page-game-community-tournament-registration__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: var(--page-game-community-tournament-registration-accent-gold);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-game-community-tournament-registration__hero-description {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 30px auto;
    line-height: 1.8;
    color: var(--page-game-community-tournament-registration-text-light);
}

.page-game-community-tournament-registration__hero-image {
    display: none; /* The image is used as background for better responsiveness */
}

/* General Section Styling */
.page-game-community-tournament-registration__about-tournaments,
.page-game-community-tournament-registration__featured-events,
.page-game-community-tournament-registration__registration-guide,
.page-game-community-tournament-registration__benefits-section,
.page-game-community-tournament-registration__faq-section,
.page-game-community-tournament-registration__cta-section {
    padding: 60px 0;
    background-color: var(--page-game-community-tournament-registration-dark-bg);
    margin-bottom: 20px;
    border-radius: 8px;
}

.page-game-community-tournament-registration__section-title {
    font-size: 2.5em;
    color: var(--page-game-community-tournament-registration-accent-blue);
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.page-game-community-tournament-registration__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--page-game-community-tournament-registration-accent-gold);
    margin: 15px auto 0 auto;
    border-radius: 2px;
}

.page-game-community-tournament-registration__text-content {
    font-size: 1.1em;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 40px auto;
    color: var(--page-game-community-tournament-registration-text-light);
}

/* Feature Grid (for Game Types) */
.page-game-community-tournament-registration__features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-game-community-tournament-registration__feature-card {
    background-color: var(--page-game-community-tournament-registration-darker-bg);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-game-community-tournament-registration__feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
}

.page-game-community-tournament-registration__feature-title {
    color: var(--page-game-community-tournament-registration-accent-gold);
    font-size: 1.8em;
    margin-bottom: 15px;
}

.page-game-community-tournament-registration__feature-text {
    font-size: 1em;
    color: var(--page-game-community-tournament-registration-text-light);
    margin-bottom: 20px;
}

.page-game-community-tournament-registration__feature-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-top: 15px;
    border: 1px solid var(--page-game-community-tournament-registration-accent-blue);
}

/* Event List */
.page-game-community-tournament-registration__event-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-game-community-tournament-registration__event-card {
    background-color: var(--page-game-community-tournament-registration-darker-bg);
    border: 1px solid rgba(0, 191, 255, 0.3);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-game-community-tournament-registration__event-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
}

.page-game-community-tournament-registration__event-title {
    color: var(--page-game-community-tournament-registration-accent-blue);
    font-size: 1.8em;
    margin-bottom: 15px;
}

.page-game-community-tournament-registration__event-description {
    font-size: 1em;
    color: var(--page-game-community-tournament-registration-text-light);
    margin-bottom: 20px;
}

.page-game-community-tournament-registration__event-details {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
    color: var(--page-game-community-tournament-registration-text-light);
}

.page-game-community-tournament-registration__event-details li {
    margin-bottom: 8px;
}

.page-game-community-tournament-registration__event-details strong {
    color: var(--page-game-community-tournament-registration-accent-gold);
}

/* Registration Guide */
.page-game-community-tournament-registration__registration-guide {
    background-color: var(--page-game-community-tournament-registration-darker-bg);
}

.page-game-community-tournament-registration__steps-list {
    list-style: none;
    padding: 0;
    counter-reset: step-counter;
    margin-top: 40px;
}

.page-game-community-tournament-registration__steps-list li {
    background-color: var(--page-game-community-tournament-registration-dark-bg);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-left: 5px solid var(--page-game-community-tournament-registration-accent-gold);
    margin-bottom: 20px;
    padding: 25px;
    border-radius: 8px;
    position: relative;
    padding-left: 80px;
}

.page-game-community-tournament-registration__steps-list li::before {
    counter-increment: step-counter;
    content: counter(step-counter);
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--page-game-community-tournament-registration-accent-gold);
    color: var(--page-game-community-tournament-registration-dark-bg);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5em;
    font-weight: bold;
}

.page-game-community-tournament-registration__step-title {
    color: var(--page-game-community-tournament-registration-accent-blue);
    font-size: 1.5em;
    margin-bottom: 10px;
}

.page-game-community-tournament-registration__process-image {
    width: 100%;
    max-width: 800px;
    display: block;
    margin: 40px auto 0 auto;
    border-radius: 8px;
    border: 2px solid var(--page-game-community-tournament-registration-accent-blue);
}

/* Benefits Section */
.page-game-community-tournament-registration__benefits-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-game-community-tournament-registration__benefits-list li {
    background-color: var(--page-game-community-tournament-registration-darker-bg);
    border: 1px solid rgba(0, 191, 255, 0.2);
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}

.page-game-community-tournament-registration__benefit-title {
    color: var(--page-game-community-tournament-registration-accent-gold);
    font-size: 1.4em;
    margin-bottom: 10px;
}

.page-game-community-tournament-registration__rewards-image {
    width: 100%;
    max-width: 600px;
    display: block;
    margin: 40px auto 0 auto;
    border-radius: 8px;
    border: 2px solid var(--page-game-community-tournament-registration-accent-gold);
}

/* FAQ Section */
.page-game-community-tournament-registration__faq-list {
    margin-top: 40px;
}

.page-game-community-tournament-registration__faq-question {
    background-color: var(--page-game-community-tournament-registration-dark-bg);
    color: var(--page-game-community-tournament-registration-accent-blue);
    padding: 18px 25px;
    margin-bottom: 10px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    font-size: 1.2em;
    border: 1px solid rgba(0, 191, 255, 0.3);
    transition: background-color 0.3s ease;
}

.page-game-community-tournament-registration__faq-question:hover {
    background-color: rgba(0, 191, 255, 0.1);
}

.page-game-community-tournament-registration__faq-answer {
    background-color: var(--page-game-community-tournament-registration-darker-bg);
    padding: 15px 25px;
    margin-bottom: 20px;
    border-radius: 8px;
    color: var(--page-game-community-tournament-registration-text-light);
    border: 1px solid rgba(255, 215, 0, 0.1);
}

/* Call to Action Section */
.page-game-community-tournament-registration__cta-section {
    text-align: center;
    background-color: var(--page-game-community-tournament-registration-dark-bg);
    border-top: 5px solid var(--page-game-community-tournament-registration-accent-gold);
}

.page-game-community-tournament-registration__cta-button {
    margin-top: 30px;
}

/* Buttons */
.page-game-community-tournament-registration__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    font-size: 1.1em;
    font-weight: bold;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
    border: none;
}

.page-game-community-tournament-registration__btn--primary {
    background-color: var(--page-game-community-tournament-registration-accent-gold);
    color: var(--page-game-community-tournament-registration-dark-bg);
}

.page-game-community-tournament-registration__btn--primary:hover {
    background-color: #e6c200; /* Darker gold */
    transform: translateY(-3px);
}

.page-game-community-tournament-registration__btn--secondary {
    background-color: var(--page-game-community-tournament-registration-accent-blue);
    color: var(--page-game-community-tournament-registration-dark-bg);
}

.page-game-community-tournament-registration__btn--secondary:hover {
    background-color: #0099cc; /* Darker blue */
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-game-community-tournament-registration__hero-title {
        font-size: 2.5em;
    }

    .page-game-community-tournament-registration__section-title {
        font-size: 2em;
    }

    .page-game-community-tournament-registration__features-grid,
    .page-game-community-tournament-registration__event-list,
    .page-game-community-tournament-registration__benefits-list {
        grid-template-columns: 1fr;
    }

    .page-game-community-tournament-registration__steps-list li {
        padding-left: 25px;
    }

    .page-game-community-tournament-registration__steps-list li::before {
        position: static;
        transform: none;
        margin-bottom: 10px;
        display: inline-flex;
        vertical-align: middle;
        margin-right: 10px;
    }

    .page-game-community-tournament-registration__step-title {
        display: inline;
        vertical-align: middle;
    }
}

@media (max-width: 480px) {
    .page-game-community-tournament-registration__hero-title {
        font-size: 1.8em;
    }

    .page-game-community-tournament-registration__hero-description,
    .page-game-community-tournament-registration__text-content {
        font-size: 0.9em;
    }

    .page-game-community-tournament-registration__section-title {
        font-size: 1.5em;
    }

    .page-game-community-tournament-registration__btn {
        padding: 12px 20px;
        font-size: 1em;
    }
}