/* style/fishing-games-weapon-systems.css */

.page-fishing-games-weapon-systems {
    font-family: 'Arial', sans-serif;
    color: #FFFFFF; /* White text on dark background */
    background-color: #0A1931;
    line-height: 1.6;
}

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

.page-fishing-games-weapon-systems__hero {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0A1931 0%, #1a3a6b 100%); /* Dark gradient for depth */
}

.page-fishing-games-weapon-systems__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
    z-index: 1;
}

.page-fishing-games-weapon-systems__hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 20px;
}

.page-fishing-games-weapon-systems__hero-title {
    font-size: 3.5em;
    color: #FFD700; /* Gold for main title */
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-fishing-games-weapon-systems__hero-subtitle {
    font-size: 1.5em;
    color: #E0E0E0;
    margin-bottom: 30px;
}

.page-fishing-games-weapon-systems__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-fishing-games-weapon-systems__btn--primary {
    background-color: #FFD700;
    color: #0A1931;
    border: 2px solid #FFD700;
}

.page-fishing-games-weapon-systems__btn--primary:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
}

.page-fishing-games-weapon-systems__btn--secondary {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
    margin-left: 15px;
}

.page-fishing-games-weapon-systems__btn--secondary:hover {
    background-color: #FFD700;
    color: #0A1931;
    transform: translateY(-3px);
}

.page-fishing-games-weapon-systems__section {
    padding: 80px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-fishing-games-weapon-systems__section:last-of-type {
    border-bottom: none;
}

.page-fishing-games-weapon-systems__section-title {
    font-size: 2.5em;
    color: #FFD700;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.page-fishing-games-weapon-systems__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    border-radius: 2px;
}

.page-fishing-games-weapon-systems__introduction p {
    font-size: 1.1em;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 20px auto;
    color: #E0E0E0;
}

.page-fishing-games-weapon-systems__introduction p strong {
    color: #FFD700;
}

.page-fishing-games-weapon-systems__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.page-fishing-games-weapon-systems__grid-item {
    background-color: #1A2A47; /* Slightly lighter dark blue */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.page-fishing-games-weapon-systems__grid-image {
    width: 100%;
    max-width: 350px;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
    object-fit: cover;
    border: 2px solid #FFD700;
}

.page-fishing-games-weapon-systems__grid-image--small {
    max-width: 250px;
    margin-top: 20px;
}

.page-fishing-games-weapon-systems__item-title {
    font-size: 1.8em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-fishing-games-weapon-systems__grid-item p, .page-fishing-games-weapon-systems__grid-item ul {
    text-align: left;
    color: #CCCCCC;
    margin-bottom: 15px;
}

.page-fishing-games-weapon-systems__grid-item ul {
    list-style: disc;
    padding-left: 20px;
}

.page-fishing-games-weapon-systems__grid-item li {
    margin-bottom: 8px;
}

.page-fishing-games-weapon-systems__turret-modes .page-fishing-games-weapon-systems__grid-item {
    text-align: left;
    align-items: flex-start;
}

.page-fishing-games-weapon-systems__turret-modes p {
    color: #CCCCCC;
}

.page-fishing-games-weapon-systems__content-block {
    background-color: #1A2A47;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-fishing-games-weapon-systems__content-block h3 {
    color: #FFD700;
    font-size: 1.6em;
    margin-bottom: 15px;
}

.page-fishing-games-weapon-systems__content-block p, .page-fishing-games-weapon-systems__content-block ul {
    color: #CCCCCC;
    margin-bottom: 10px;
}

.page-fishing-games-weapon-systems__content-block ul {
    list-style: decimal;
    padding-left: 25px;
}

.page-fishing-games-weapon-systems__image--full-width {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 20px;
    border: 2px solid #FFD700;
    object-fit: cover;
}

.page-fishing-games-weapon-systems__feature-list {
    list-style: none;
    padding: 0;
    margin: 40px auto;
    max-width: 800px;
}

.page-fishing-games-weapon-systems__feature-list li {
    background-color: #1A2A47;
    margin-bottom: 15px;
    padding: 15px 25px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    font-size: 1.1em;
    color: #E0E0E0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-fishing-games-weapon-systems__feature-icon {
    color: #FFD700;
    font-size: 1.5em;
    margin-right: 15px;
}

.page-fishing-games-weapon-systems__cta-buttons {
    text-align: center;
    margin-top: 50px;
}

.page-fishing-games-weapon-systems__faq-item {
    background-color: #1A2A47;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-fishing-games-weapon-systems__faq-question {
    font-size: 1.3em;
    color: #FFD700;
    margin-bottom: 10px;
}

.page-fishing-games-weapon-systems__faq-answer {
    color: #CCCCCC;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-fishing-games-weapon-systems__hero {
        height: 500px;
    }
    .page-fishing-games-weapon-systems__hero-title {
        font-size: 2.5em;
    }
    .page-fishing-games-weapon-systems__hero-subtitle {
        font-size: 1.2em;
    }
    .page-fishing-games-weapon-systems__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-fishing-games-weapon-systems__btn--secondary {
        margin-left: 0;
        margin-top: 10px;
    }
    .page-fishing-games-weapon-systems__section-title {
        font-size: 2em;
    }
    .page-fishing-games-weapon-systems__grid {
        grid-template-columns: 1fr;
    }
    .page-fishing-games-weapon-systems__item-title {
        font-size: 1.5em;
    }
}

@media (max-width: 480px) {
    .page-fishing-games-weapon-systems__hero {
        height: 400px;
    }
    .page-fishing-games-weapon-systems__hero-title {
        font-size: 2em;
    }
    .page-fishing-games-weapon-systems__hero-subtitle {
        font-size: 1em;
    }
    .page-fishing-games-weapon-systems__btn {
        display: block;
        width: 100%;
        margin-bottom: 10px;
    }
    .page-fishing-games-weapon-systems__cta-buttons .page-fishing-games-weapon-systems__btn--secondary {
        margin-left: 0;
    }
    .page-fishing-games-weapon-systems__section {
        padding: 50px 0;
    }
    .page-fishing-games-weapon-systems__section-title {
        font-size: 1.8em;
    }
    .page-fishing-games-weapon-systems__introduction p {
        font-size: 1em;
    }
    .page-fishing-games-weapon-systems__feature-list li {
        font-size: 1em;
        padding: 10px 15px;
    }
    .page-fishing-games-weapon-systems__faq-question {
        font-size: 1.1em;
    }
}