:root {
    --page-primary-color: #FFD700; /* Gold */
    --page-secondary-color: #DC143C; /* Crimson */
    --page-dark-bg: #1A1A2E; /* Dark Blue/Black */
    --page-light-text: #F8F8F8;
    --page-dark-text: #333333;
    --page-accent-color: #00BFFF; /* Deep Sky Blue for highlights */
}

.page-fishing-games-fishing-weapons-items-introduction {
    font-family: 'Arial', sans-serif;
    color: var(--page-light-text);
    background-color: var(--page-dark-bg);
    line-height: 1.6;
}

.page-fishing-games-fishing-weapons-items-introduction a {
    color: var(--page-primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-fishing-games-fishing-weapons-items-introduction a:hover {
    color: var(--page-secondary-color);
}

.page-fishing-games-fishing-weapons-items-introduction__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.page-fishing-games-fishing-weapons-items-introduction__hero {
    background: linear-gradient(135deg, var(--page-dark-bg) 0%, #360000 50%, var(--page-dark-bg) 100%);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 2px solid var(--page-primary-color);
}

.page-fishing-games-fishing-weapons-items-introduction__hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/path/to/fishing_pattern.png') repeat;
    opacity: 0.05;
    z-index: 0;
}

.page-fishing-games-fishing-weapons-items-introduction__hero > .page-fishing-games-fishing-weapons-items-introduction__container {
    position: relative;
    z-index: 1;
}

.page-fishing-games-fishing-weapons-items-introduction__title {
    font-size: 3.5em;
    color: var(--page-primary-color);
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.7);
}

.page-fishing-games-fishing-weapons-items-introduction__subtitle {
    font-size: 1.4em;
    color: var(--page-light-text);
    max-width: 800px;
    margin: 0 auto 40px;
}

.page-fishing-games-fishing-weapons-items-introduction__hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
    margin-top: 30px;
}

.page-fishing-games-fishing-weapons-items-introduction__section {
    padding: 60px 0;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.page-fishing-games-fishing-weapons-items-introduction__section:last-of-type {
    border-bottom: none;
}

.page-fishing-games-fishing-weapons-items-introduction__section-title {
    font-size: 2.5em;
    color: var(--page-secondary-color);
    text-align: center;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.page-fishing-games-fishing-weapons-items-introduction__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--page-primary-color);
    margin: 15px auto 0;
    border-radius: 2px;
}

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

.page-fishing-games-fishing-weapons-items-introduction__feature-item {
    background-color: rgba(255, 215, 0, 0.1);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 215, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-fishing-games-fishing-weapons-items-introduction__feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.3);
}

.page-fishing-games-fishing-weapons-items-introduction__feature-title {
    font-size: 1.8em;
    color: var(--page-primary-color);
    margin-bottom: 15px;
    border-bottom: 2px solid var(--page-secondary-color);
    padding-bottom: 10px;
}

.page-fishing-games-fishing-weapons-items-introduction__feature-item p, 
.page-fishing-games-fishing-weapons-items-introduction__feature-item ul {
    color: var(--page-light-text);
}

.page-fishing-games-fishing-weapons-items-introduction__feature-item ul {
    list-style: none;
    padding-left: 0;
    margin-top: 15px;
}

.page-fishing-games-fishing-weapons-items-introduction__feature-item ul li {
    margin-bottom: 8px;
    padding-left: 25px;
    position: relative;
}

.page-fishing-games-fishing-weapons-items-introduction__feature-item ul li::before {
    content: '⭐'; /* Unicode star or similar icon */
    position: absolute;
    left: 0;
    color: var(--page-primary-color);
    font-size: 1.1em;
    top: 0;
}

.page-fishing-games-fishing-weapons-items-introduction__image-full-width {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 40px 0;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.4);
}

.page-fishing-games-fishing-weapons-items-introduction__text-center {
    text-align: center;
    font-style: italic;
    margin-top: 20px;
    color: rgba(255, 255, 255, 0.7);
}

.page-fishing-games-fishing-weapons-items-introduction__strategy-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-fishing-games-fishing-weapons-items-introduction__strategy-item {
    background-color: rgba(220, 20, 60, 0.1);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(220, 20, 60, 0.3);
}

.page-fishing-games-fishing-weapons-items-introduction__strategy-title {
    font-size: 1.8em;
    color: var(--page-secondary-color);
    margin-bottom: 15px;
    border-bottom: 2px solid var(--page-primary-color);
    padding-bottom: 10px;
}

.page-fishing-games-fishing-weapons-items-introduction__cta-section {
    text-align: center;
    padding-bottom: 80px;
}

.page-fishing-games-fishing-weapons-items-introduction__cta-button {
    display: inline-block;
    background-color: var(--page-primary-color);
    color: var(--page-dark-bg);
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1.5em;
    font-weight: bold;
    margin-top: 40px;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.page-fishing-games-fishing-weapons-items-introduction__cta-button:hover {
    background-color: var(--page-secondary-color);
    color: var(--page-light-text);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 20px rgba(220, 20, 60, 0.5);
}

.page-fishing-games-fishing-weapons-items-introduction__disclaimer {
    font-size: 0.9em;
    margin-top: 30px;
    color: rgba(255, 255, 255, 0.5);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-fishing-games-fishing-weapons-items-introduction__title {
        font-size: 3em;
    }

    .page-fishing-games-fishing-weapons-items-introduction__section-title {
        font-size: 2em;
    }
}

@media (max-width: 768px) {
    .page-fishing-games-fishing-weapons-items-introduction__hero {
        padding: 60px 0;
    }

    .page-fishing-games-fishing-weapons-items-introduction__title {
        font-size: 2.5em;
    }

    .page-fishing-games-fishing-weapons-items-introduction__subtitle {
        font-size: 1.2em;
    }

    .page-fishing-games-fishing-weapons-items-introduction__section-title {
        font-size: 1.8em;
    }

    .page-fishing-games-fishing-weapons-items-introduction__feature-grid,
    .page-fishing-games-fishing-weapons-items-introduction__strategy-points {
        grid-template-columns: 1fr;
    }

    .page-fishing-games-fishing-weapons-items-introduction__feature-item,
    .page-fishing-games-fishing-weapons-items-introduction__strategy-item {
        padding: 20px;
    }

    .page-fishing-games-fishing-weapons-items-introduction__cta-button {
        font-size: 1.2em;
        padding: 12px 25px;
    }
}

@media (max-width: 480px) {
    .page-fishing-games-fishing-weapons-items-introduction__title {
        font-size: 2em;
    }

    .page-fishing-games-fishing-weapons-items-introduction__subtitle {
        font-size: 1em;
    }

    .page-fishing-games-fishing-weapons-items-introduction__section-title {
        font-size: 1.5em;
    }

    .page-fishing-games-fishing-weapons-items-introduction__feature-title,
    .page-fishing-games-fishing-weapons-items-introduction__strategy-title {
        font-size: 1.5em;
    }
}