/* style/game-reviews-arcade-game-f.css */

/* Base styles for the page content */
.page-game-reviews-arcade-game-f {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f9fa;
}

.page-game-reviews-arcade-game-f .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-game-reviews-arcade-game-f .content-block {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    padding: 40px;
    margin-bottom: 30px;
}

/* Hero Section */
.page-game-reviews-arcade-game-f .hero-section {
    background: linear-gradient(135deg, #007bff, #28a745);
    color: #fff;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-game-reviews-arcade-game-f .hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    transform: rotate(45deg);
    opacity: 0.3;
    animation: hero-animation 15s infinite linear;
}

@keyframes hero-animation {
    0% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.05); }
    100% { transform: rotate(360deg) scale(1); }
}

.page-game-reviews-arcade-game-f .hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}

.page-game-reviews-arcade-game-f .hero-subtitle {
    font-size: 1.5em;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.page-game-reviews-arcade-game-f .hero-cta {
    background-color: #ffc107; /* A contrasting color for CTA */
    color: #333;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
}

.page-game-reviews-arcade-game-f .hero-cta:hover {
    background-color: #e0a800;
    transform: translateY(-3px);
}

/* Section Titles */
.page-game-reviews-arcade-game-f .section-title {
    font-size: 2.5em;
    color: #007bff;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-game-reviews-arcade-game-f .section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #28a745;
    border-radius: 2px;
}

.page-game-reviews-arcade-game-f .subsection-title {
    font-size: 1.8em;
    color: #0056b3;
    margin-top: 30px;
    margin-bottom: 15px;
    border-left: 5px solid #28a745;
    padding-left: 15px;
}

/* Paragraphs and Lists */
.page-game-reviews-arcade-game-f p {
    margin-bottom: 1em;
    font-size: 1.1em;
    color: #495057;
}

.page-game-reviews-arcade-game-f ul,
.page-game-reviews-arcade-game-f ol {
    margin-bottom: 1em;
    padding-left: 25px;
    font-size: 1.1em;
    color: #495057;
}

.page-game-reviews-arcade-game-f ul li,
.page-game-reviews-arcade-game-f ol li {
    margin-bottom: 8px;
}

.page-game-reviews-arcade-game-f ul li::marker {
    color: #007bff;
}

.page-game-reviews-arcade-game-f ol li::marker {
    color: #28a745;
    font-weight: bold;
}

/* Images */
.page-game-reviews-arcade-game-f .image-wrapper {
    text-align: center;
    margin: 30px 0;
    background-color: #f0f0f0;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.page-game-reviews-arcade-game-f .image-wrapper img {
    max-width: 100%;
    height: auto;
    border-radius: 6px;
    display: block;
    margin: 0 auto 10px auto;
}

.page-game-reviews-arcade-game-f .image-caption {
    font-style: italic;
    color: #6c757d;
    font-size: 0.95em;
}

/* Call to Action Buttons */
.page-game-reviews-arcade-game-f .btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    cursor: pointer;
    border: none;
}

.page-game-reviews-arcade-game-f .btn-primary {
    background-color: #007bff;
    color: #fff;
}

.page-game-reviews-arcade-game-f .btn-primary:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 123, 255, 0.3);
}

.page-game-reviews-arcade-game-f .btn-success {
    background-color: #28a745;
    color: #fff;
}

.page-game-reviews-arcade-game-f .btn-success:hover {
    background-color: #1e7e34;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(40, 167, 69, 0.3);
}

.page-game-reviews-arcade-game-f .btn-primary-outline {
    background-color: transparent;
    color: #007bff;
    border: 2px solid #007bff;
}

.page-game-reviews-arcade-game-f .btn-primary-outline:hover {
    background-color: #007bff;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 123, 255, 0.3);
}

.page-game-reviews-arcade-game-f .btn-secondary {
    background-color: #6c757d;
    color: #fff;
}

.page-game-reviews-arcade-game-f .btn-secondary:hover {
    background-color: #5a6268;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(108, 117, 125, 0.3);
}

.page-game-reviews-arcade-game-f .cta-banner {
    background-color: #e9f7ee; /* Light green background */
    border: 1px solid #c3e6cb;
    border-left: 5px solid #28a745;
    padding: 30px;
    margin-top: 40px;
    margin-bottom: 40px;
    border-radius: 8px;
    text-align: center;
}

.page-game-reviews-arcade-game-f .cta-banner p {
    font-size: 1.3em;
    color: #1e7e34;
    margin-bottom: 20px;
    font-weight: 600;
}

.page-game-reviews-arcade-game-f .cta-banner .cta-btn {
    font-size: 1.3em;
    padding: 15px 35px;
    border-radius: 50px;
}

.page-game-reviews-arcade-game-f .text-link {
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
}

.page-game-reviews-arcade-game-f .text-link:hover {
    text-decoration: underline;
    color: #0056b3;
}

/* FAQ Section */
.page-game-reviews-arcade-game-f .faq-section {
    margin-top: 50px;
}

.page-game-reviews-arcade-game-f .faq-item {
    background-color: #f0f8ff;
    border: 1px solid #d0eaff;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 20px;
}

.page-game-reviews-arcade-game-f .faq-question {
    font-size: 1.5em;
    color: #007bff;
    margin-bottom: 10px;
}

.page-game-reviews-arcade-game-f .faq-answer {
    font-size: 1.1em;
    color: #343a40;
}

.page-game-reviews-arcade-game-f .faq-item .btn {
    margin-top: 15px;
}

/* Conclusion Section */
.page-game-reviews-arcade-game-f .conclusion-section {
    text-align: center;
    padding-top: 40px;
    padding-bottom: 60px;
}

.page-game-reviews-arcade-game-f .cta-final {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.page-game-reviews-arcade-game-f .cta-final .btn-lg {
    padding: 18px 40px;
    font-size: 1.4em;
    border-radius: 50px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-game-reviews-arcade-game-f .hero-title {
        font-size: 2.8em;
    }
    .page-game-reviews-arcade-game-f .hero-subtitle {
        font-size: 1.3em;
    }
    .page-game-reviews-arcade-game-f .section-title {
        font-size: 2em;
    }
    .page-game-reviews-arcade-game-f .subsection-title {
        font-size: 1.6em;
    }
    .page-game-reviews-arcade-game-f .content-block {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .page-game-reviews-arcade-game-f .hero-title {
        font-size: 2.2em;
    }
    .page-game-reviews-arcade-game-f .hero-subtitle {
        font-size: 1.1em;
    }
    .page-game-reviews-arcade-game-f .hero-cta {
        padding: 12px 25px;
        font-size: 1.1em;
    }
    .page-game-reviews-arcade-game-f .section-title {
        font-size: 1.8em;
    }
    .page-game-reviews-arcade-game-f .subsection-title {
        font-size: 1.4em;
    }
    .page-game-reviews-arcade-game-f p, .page-game-reviews-arcade-game-f ul li, .page-game-reviews-arcade-game-f ol li {
        font-size: 1em;
    }
    .page-game-reviews-arcade-game-f .content-block {
        padding: 20px;
    }
    .page-game-reviews-arcade-game-f .cta-banner p {
        font-size: 1.1em;
    }
    .page-game-reviews-arcade-game-f .cta-banner .cta-btn {
        font-size: 1.1em;
        padding: 12px 25px;
    }
    .page-game-reviews-arcade-game-f .faq-question {
        font-size: 1.3em;
    }
    .page-game-reviews-arcade-game-f .cta-final {
        flex-direction: column;
        gap: 15px;
    }
    .page-game-reviews-arcade-game-f .cta-final .btn-lg {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
}

@media (max-width: 576px) {
    .page-game-reviews-arcade-game-f .hero-title {
        font-size: 1.8em;
    }
    .page-game-reviews-arcade-game-f .hero-subtitle {
        font-size: 0.95em;
    }
    .page-game-reviews-arcade-game-f .hero-section {
        padding: 60px 0;
    }
    .page-game-reviews-arcade-game-f .content-block {
        padding: 15px;
    }
    .page-game-reviews-arcade-game-f .section-title {
        font-size: 1.6em;
        margin-bottom: 30px;
    }
    .page-game-reviews-arcade-game-f .subsection-title {
        font-size: 1.2em;
        padding-left: 10px;
    }
    .page-game-reviews-arcade-game-f .image-wrapper {
        margin: 20px 0;
    }
    .page-game-reviews-arcade-game-f .faq-question {
        font-size: 1.1em;
    }
}