/* style/promotions-limited-time-tournaments.css */

.page-promotions-limited-time-tournaments {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f9fa;
}

.page-promotions-limited-time-tournaments__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Hero Section */
.page-promotions-limited-time-tournaments__hero {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%); /* Darker blue for background */
    color: #fff;
    padding: 80px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.page-promotions-limited-time-tournaments__hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.page-promotions-limited-time-tournaments__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-promotions-limited-time-tournaments__hero-subtitle {
    font-size: 1.4em;
    margin-bottom: 30px;
    color: #e0e0e0;
}

.page-promotions-limited-time-tournaments__hero-btn {
    display: inline-block;
    padding: 15px 30px;
    font-size: 1.2em;
    font-weight: bold;
    border-radius: 50px;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    margin-bottom: 15px;
}

.page-promotions-limited-time-tournaments__hero-btn.btn-primary {
    background-color: #ffc107;
    color: #0056b3; /* Darker blue for contrast */
}

.page-promotions-limited-time-tournaments__hero-btn.btn-primary:hover {
    background-color: #e0a800;
    transform: translateY(-3px);
}

.page-promotions-limited-time-tournaments__hero-cta {
    font-size: 1.1em;
    color: #e0e0e0;
}

.page-promotions-limited-time-tournaments__hero-link {
    color: #ffc107;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.page-promotions-limited-time-tournaments__hero-link:hover {
    color: #fff;
}

.page-promotions-limited-time-tournaments__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.3;
    z-index: 1;
    overflow: hidden;
}

.page-promotions-limited-time-tournaments__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(50%) blur(3px);
    transform: scale(1.1);
}

/* General Section Styling */
.page-promotions-limited-time-tournaments__section-title {
    font-size: 2.5em;
    color: #007bff;
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
    padding-top: 40px;
}

.page-promotions-limited-time-tournaments__text-content {
    font-size: 1.1em;
    text-align: justify;
    margin-bottom: 25px;
    color: #555;
}

.page-promotions-limited-time-tournaments__text-link {
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
}

.page-promotions-limited-time-tournaments__text-link:hover {
    text-decoration: underline;
    color: #0056b3;
}

/* About Tournaments Section */
.page-promotions-limited-time-tournaments__about-tournaments {
    background-color: #fff;
    padding: 60px 0;
    border-bottom: 1px solid #eee;
}

.page-promotions-limited-time-tournaments__features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-promotions-limited-time-tournaments__feature-item {
    background-color: #f0f8ff;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.page-promotions-limited-time-tournaments__feature-item:hover {
    transform: translateY(-10px);
}

.page-promotions-limited-time-tournaments__feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 3px 5px rgba(0, 0, 0, 0.1));
}

.page-promotions-limited-time-tournaments__feature-title {
    font-size: 1.5em;
    color: #007bff;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-promotions-limited-time-tournaments__feature-description {
    color: #666;
    font-size: 1em;
}

/* Current Tournaments Section */
.page-promotions-limited-time-tournaments__current-tournaments {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.page-promotions-limited-time-tournaments__tournament-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border-left: 5px solid #ffc107;
}

.page-promotions-limited-time-tournaments__card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.page-promotions-limited-time-tournaments__card-title {
    font-size: 1.8em;
    color: #007bff;
    font-weight: bold;
}

.page-promotions-limited-time-tournaments__status {
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9em;
}

.page-promotions-limited-time-tournaments__status.status-active {
    background-color: #28a745;
    color: #fff;
}

.page-promotions-limited-time-tournaments__status.status-upcoming {
    background-color: #ffc107;
    color: #333;
}

.page-promotions-limited-time-tournaments__card-detail {
    font-size: 1.1em;
    color: #666;
    margin-bottom: 10px;
}

.page-promotions-limited-time-tournaments__card-btn {
    display: inline-block;
    padding: 10px 20px;
    font-size: 1em;
    font-weight: bold;
    border-radius: 30px;
    text-decoration: none;
    margin-top: 15px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-promotions-limited-time-tournaments__card-btn.btn-secondary {
    background-color: #007bff;
    color: #fff;
}

.page-promotions-limited-time-tournaments__card-btn.btn-secondary:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
}

.page-promotions-limited-time-tournaments__more-info {
    text-align: center;
    margin-top: 40px;
    font-size: 1.1em;
    color: #555;
}

/* How To Participate Section */
.page-promotions-limited-time-tournaments__how-to-participate {
    background-color: #e9f7ff;
    padding: 60px 0;
    border-top: 1px solid #dee2e6;
}

.page-promotions-limited-time-tournaments__steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-promotions-limited-time-tournaments__step-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    padding-top: 60px;
}

.page-promotions-limited-time-tournaments__step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #ffc107;
    color: #0056b3; /* Dark blue for contrast */
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8em;
    font-weight: bold;
    border: 3px solid #fff;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions-limited-time-tournaments__step-title {
    font-size: 1.6em;
    color: #007bff;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-promotions-limited-time-tournaments__step-description {
    color: #666;
    font-size: 1em;
}

.page-promotions-limited-time-tournaments__cta-bottom {
    text-align: center;
    margin-top: 50px;
}

.page-promotions-limited-time-tournaments__cta-btn {
    display: inline-block;
    padding: 18px 35px;
    font-size: 1.3em;
    font-weight: bold;
    border-radius: 50px;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-promotions-limited-time-tournaments__cta-btn.btn-primary {
    background-color: #ffc107;
    color: #0056b3; /* Dark blue for contrast */
}

.page-promotions-limited-time-tournaments__cta-btn.btn-primary:hover {
    background-color: #e0a800;
    transform: translateY(-3px);
}

/* Tips & Strategies Section */
.page-promotions-limited-time-tournaments__tips-strategies {
    padding: 60px 0;
    background-color: #fff;
    border-top: 1px solid #eee;
}

.page-promotions-limited-time-tournaments__tips-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.page-promotions-limited-time-tournaments__tips-list li {
    background-color: #f0f8ff;
    padding: 15px 25px;
    margin-bottom: 15px;
    border-radius: 8px;
    font-size: 1.1em;
    color: #333;
    border-left: 4px solid #007bff;
}

.page-promotions-limited-time-tournaments__tips-list li strong {
    color: #0056b3;
}

.page-promotions-limited-time-tournaments__strategy-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    display: block;
    margin: 40px auto 0 auto;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Why Choose Us Section */
.page-promotions-limited-time-tournaments__why-choose-us {
    background-color: #007bff;
    color: #fff;
    padding: 60px 0;
    text-align: center;
}

.page-promotions-limited-time-tournaments__why-choose-us .page-promotions-limited-time-tournaments__section-title {
    color: #fff;
}

.page-promotions-limited-time-tournaments__why-choose-us .page-promotions-limited-time-tournaments__text-content {
    color: #e0e0e0;
}

.page-promotions-limited-time-tournaments__benefits-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.page-promotions-limited-time-tournaments__benefits-list li {
    background-color: rgba(255, 255, 255, 0.15);
    padding: 20px 25px;
    border-radius: 8px;
    font-size: 1.1em;
    color: #fff;
    text-align: left;
    flex: 1 1 300px;
    max-width: 45%;
    min-height: 100px;
    display: flex;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.page-promotions-limited-time-tournaments__benefits-list li strong {
    color: #ffc107;
    margin-right: 8px;
}

.page-promotions-limited-time-tournaments__btn-main {
    display: inline-block;
    padding: 18px 35px;
    font-size: 1.3em;
    font-weight: bold;
    border-radius: 50px;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    margin-top: 40px;
}

.page-promotions-limited-time-tournaments__btn-main.btn-primary {
    background-color: #ffc107;
    color: #0056b3; /* Dark blue for contrast */
}

.page-promotions-limited-time-tournaments__btn-main.btn-primary:hover {
    background-color: #e0a800;
    transform: translateY(-3px);
}

/* FAQ Section */
.page-promotions-limited-time-tournaments__faq {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.page-promotions-limited-time-tournaments__faq-item {
    background-color: #fff;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
}

.page-promotions-limited-time-tournaments__faq-question {
    font-size: 1.4em;
    color: #007bff;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-promotions-limited-time-tournaments__faq-answer {
    font-size: 1.1em;
    color: #555;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-promotions-limited-time-tournaments__hero-title {
        font-size: 2.5em;
    }

    .page-promotions-limited-time-tournaments__hero-subtitle {
        font-size: 1.2em;
    }

    .page-promotions-limited-time-tournaments__section-title {
        font-size: 2em;
    }

    .page-promotions-limited-time-tournaments__benefits-list li {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .page-promotions-limited-time-tournaments__hero {
        padding: 60px 15px;
    }

    .page-promotions-limited-time-tournaments__hero-title {
        font-size: 2em;
    }

    .page-promotions-limited-time-tournaments__hero-subtitle {
        font-size: 1em;
    }

    .page-promotions-limited-time-tournaments__hero-btn {
        padding: 12px 25px;
        font-size: 1.1em;
    }

    .page-promotions-limited-time-tournaments__section-title {
        font-size: 1.8em;
    }

    .page-promotions-limited-time-tournaments__text-content,
    .page-promotions-limited-time-tournaments__card-detail,
    .page-promotions-limited-time-tournaments__feature-description,
    .page-promotions-limited-time-tournaments__step-description,
    .page-promotions-limited-time-tournaments__tips-list li,
    .page-promotions-limited-time-tournaments__benefits-list li,
    .page-promotions-limited-time-tournaments__faq-answer {
        font-size: 0.95em;
    }

    .page-promotions-limited-time-tournaments__card-title {
        font-size: 1.5em;
    }

    .page-promotions-limited-time-tournaments__cta-btn {
        padding: 15px 30px;
        font-size: 1.2em;
    }

    .page-promotions-limited-time-tournaments__features-grid,
    .page-promotions-limited-time-tournaments__steps-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .page-promotions-limited-time-tournaments__hero-title {
        font-size: 1.7em;
    }

    .page-promotions-limited-time-tournaments__hero-subtitle {
        font-size: 0.9em;
    }

    .page-promotions-limited-time-tournaments__hero-btn {
        padding: 10px 20px;
        font-size: 1em;
    }

    .page-promotions-limited-time-tournaments__section-title {
        font-size: 1.6em;
    }

    .page-promotions-limited-time-tournaments__tournament-card {
        padding: 20px;
    }

    .page-promotions-limited-time-tournaments__card-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .page-promotions-limited-time-tournaments__status {
        margin-top: 10px;
    }
}