/* style/fishing-games-popular-recommendations.css */
:root {
    --primary-color: #FFD700; /* Gold */
    --secondary-color: #8B0000; /* Dark Red */
    --text-light: #ffffff;
    --text-dark: #333333;
    --bg-dark: #000000;
    --bg-light: #f8f9fa;
    --card-bg: rgba(255, 255, 255, 0.1);
    --border-color: rgba(255, 255, 255, 0.2);
}

.page-fishing-games-popular-recommendations {
    font-family: 'Arial', sans-serif;
    color: var(--text-light); /* Default text color for dark body background */
    background-color: var(--bg-dark);
}

.page-fishing-games-popular-recommendations__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Hero Section */
.page-fishing-games-popular-recommendations__hero-section {
    padding: 120px 20px 80px; /* Desktop padding-top to clear fixed header */
    background: linear-gradient(135deg, var(--secondary-color) 0%, #330000 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 5px solid var(--primary-color);
}

.page-fishing-games-popular-recommendations__main-title {
    font-size: 3.5em;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
    font-weight: 700;
}

.page-fishing-games-popular-recommendations__hero-description {
    font-size: 1.2em;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.page-fishing-games-popular-recommendations__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.page-fishing-games-popular-recommendations__cta-button {
    display: inline-block;
    padding: 15px 35px;
    background-color: var(--primary-color);
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1em;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    border: none;
    cursor: pointer;
}

.page-fishing-games-popular-recommendations__cta-button:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-fishing-games-popular-recommendations__cta-button--secondary {
    background-color: var(--secondary-color);
    color: var(--text-light);
    border: 2px solid var(--primary-color);
}

.page-fishing-games-popular-recommendations__cta-button--secondary:hover {
    background-color: #a00000;
    color: var(--primary-color);
    border-color: var(--text-light);
}

/* General Section Styling */
.page-fishing-games-popular-recommendations__section-title {
    font-size: 2.5em;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 40px;
    padding-top: 60px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    font-weight: 700;
}

.page-fishing-games-popular-recommendations__section-description {
    font-size: 1.1em;
    color: var(--text-light);
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px;
    line-height: 1.6;
}

/* Why Section */
.page-fishing-games-popular-recommendations__why-section {
    padding: 80px 20px;
    background-color: var(--secondary-color);
    color: var(--text-light);
}

.page-fishing-games-popular-recommendations__features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.page-fishing-games-popular-recommendations__feature-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, background 0.3s ease;
    border: 1px solid var(--border-color);
}

.page-fishing-games-popular-recommendations__feature-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
}

.page-fishing-games-popular-recommendations__feature-icon {
    width: 100px;
    height: 100px;
    margin-bottom: 20px;
    object-fit: contain;
}

.page-fishing-games-popular-recommendations__feature-title {
    font-size: 1.8em;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.page-fishing-games-popular-recommendations__feature-description {
    font-size: 1em;
    line-height: 1.6;
    color: var(--text-light);
}

/* Games Section */
.page-fishing-games-popular-recommendations__games-section {
    padding: 80px 20px;
    background-color: var(--bg-dark);
}

.page-fishing-games-popular-recommendations__game-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-fishing-games-popular-recommendations__game-card {
    background: var(--card-bg);
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-fishing-games-popular-recommendations__game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-fishing-games-popular-recommendations__game-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
    border: 2px solid var(--primary-color);
}

.page-fishing-games-popular-recommendations__game-title {
    font-size: 1.8em;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.page-fishing-games-popular-recommendations__game-description {
    font-size: 1em;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 25px;
}

.page-fishing-games-popular-recommendations__game-button {
    display: inline-block;
    padding: 12px 25px;
    background-color: var(--primary-color);
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    font-size: 0.95em;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-fishing-games-popular-recommendations__game-button:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

/* Strategy Section */
.page-fishing-games-popular-recommendations__strategy-section {
    padding: 80px 20px;
    background-color: var(--secondary-color);
    color: var(--text-light);
}

.page-fishing-games-popular-recommendations__strategy-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-fishing-games-popular-recommendations__strategy-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color);
}

.page-fishing-games-popular-recommendations__strategy-heading {
    font-size: 1.5em;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.page-fishing-games-popular-recommendations__strategy-item p {
    font-size: 1em;
    line-height: 1.6;
    color: var(--text-light);
}

/* Offers Section */
.page-fishing-games-popular-recommendations__offers-section {
    padding: 80px 20px;
    background-color: var(--bg-dark);
}

.page-fishing-games-popular-recommendations__offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.page-fishing-games-popular-recommendations__offer-card {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-fishing-games-popular-recommendations__offer-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-fishing-games-popular-recommendations__offer-image {
    width: 120px;
    height: 120px;
    object-fit: contain;
    margin-bottom: 20px;
}

.page-fishing-games-popular-recommendations__offer-title {
    font-size: 1.8em;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.page-fishing-games-popular-recommendations__offer-card p {
    font-size: 1em;
    line-height: 1.6;
    color: var(--text-light);
}

.page-fishing-games-popular-recommendations__cta-center {
    text-align: center;
    margin-top: 40px;
}

/* Platform Section */
.page-fishing-games-popular-recommendations__platform-section {
    padding: 80px 20px;
    background-color: var(--secondary-color);
    color: var(--text-light);
}

.page-fishing-games-popular-recommendations__platform-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.page-fishing-games-popular-recommendations__platform-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
    border: 1px solid var(--border-color);
}

.page-fishing-games-popular-recommendations__platform-icon {
    width: 100px;
    height: 100px;
    margin-bottom: 20px;
    object-fit: contain;
}

.page-fishing-games-popular-recommendations__platform-heading {
    font-size: 1.5em;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.page-fishing-games-popular-recommendations__platform-item p {
    font-size: 1em;
    line-height: 1.6;
    color: var(--text-light);
}

/* Register Section */
.page-fishing-games-popular-recommendations__register-section {
    padding: 80px 20px;
    background-color: var(--bg-dark);
    text-align: center;
}

.page-fishing-games-popular-recommendations__cta-button--highlight {
    background-color: var(--primary-color);
    color: var(--text-dark);
    font-size: 1.3em;
    padding: 18px 45px;
    border-radius: 50px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-fishing-games-popular-recommendations__cta-button--highlight:hover {
    background-color: #e6c200;
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.page-fishing-games-popular-recommendations__note {
    font-size: 0.9em;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 40px;
    line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-fishing-games-popular-recommendations__main-title {
        font-size: 3em;
    }
    .page-fishing-games-popular-recommendations__section-title {
        font-size: 2em;
    }
}

@media (max-width: 768px) {
    .page-fishing-games-popular-recommendations__hero-section {
        padding-top: 100px !important; /* Mobile padding-top to clear fixed header */
        padding-bottom: 60px;
    }
    .page-fishing-games-popular-recommendations__main-title {
        font-size: 2.5em;
    }
    .page-fishing-games-popular-recommendations__hero-description {
        font-size: 1em;
    }
    .page-fishing-games-popular-recommendations__cta-buttons {
        flex-direction: column;
        gap: 15px;
        padding: 0 15px;
    }
    .page-fishing-games-popular-recommendations__cta-button {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding: 12px 25px !important;
        font-size: 1em !important;
    }

    .page-fishing-games-popular-recommendations__section-title {
        font-size: 1.8em;
        padding-top: 40px;
    }
    .page-fishing-games-popular-recommendations__section-description {
        font-size: 0.95em;
        margin-bottom: 40px;
    }

    .page-fishing-games-popular-recommendations__feature-item,
    .page-fishing-games-popular-recommendations__game-card,
    .page-fishing-games-popular-recommendations__strategy-item,
    .page-fishing-games-popular-recommendations__offer-card,
    .page-fishing-games-popular-recommendations__platform-item {
        padding: 20px;
    }

    .page-fishing-games-popular-recommendations__feature-icon,
    .page-fishing-games-popular-recommendations__platform-icon {
        width: 80px;
        height: 80px;
    }
    .page-fishing-games-popular-recommendations__feature-title,
    .page-fishing-games-popular-recommendations__game-title,
    .page-fishing-games-popular-recommendations__strategy-heading,
    .page-fishing-games-popular-recommendations__offer-title,
    .page-fishing-games-popular-recommendations__platform-heading {
        font-size: 1.4em;
    }

    .page-fishing-games-popular-recommendations__game-image {
        height: 150px;
    }

    .page-fishing-games-popular-recommendations__game-button {
        padding: 10px 20px !important;
        font-size: 0.9em !important;
    }

    .page-fishing-games-popular-recommendations__container,
    .page-fishing-games-popular-recommendations__hero-section,
    .page-fishing-games-popular-recommendations__why-section,
    .page-fishing-games-popular-recommendations__games-section,
    .page-fishing-games-popular-recommendations__strategy-section,
    .page-fishing-games-popular-recommendations__offers-section,
    .page-fishing-games-popular-recommendations__platform-section,
    .page-fishing-games-popular-recommendations__register-section {
        padding-left: 15px !important;
        padding-right: 15px !important;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }

    /* Ensure all images are responsive */
    .page-fishing-games-popular-recommendations img {
        max-width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    .page-fishing-games-popular-recommendations__cta-center {
        padding-left: 15px;
        padding-right: 15px;
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
    }
    .page-fishing-games-popular-recommendations__cta-button--highlight {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        font-size: 1.1em !important;
        padding: 15px 30px !important;
    }
}