/* style/online-games-fishing.css */

/* Base styles for the page content */
.page-online-games-fishing {
    font-family: 'Arial', sans-serif;
    color: #E0E0E0; /* Light grey for general text */
    background-color: #0A203C; /* Main dark blue background */
    line-height: 1.6;
}

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

.page-online-games-fishing-section {
    padding: 80px 0;
    text-align: center;
}

.page-online-games-fishing-section:nth-of-type(even) {
    background-color: #0D2B4D; /* Slightly lighter dark blue for alternating sections */
}

.page-online-games-fishing-title,
.page-online-games-fishing-heading {
    color: #FFD700; /* Gold for titles and headings */
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-online-games-fishing-title {
    font-size: 3.5em;
    margin-top: 0;
}

.page-online-games-fishing-heading {
    font-size: 2.5em;
}

.page-online-games-fishing-description {
    font-size: 1.1em;
    margin-bottom: 30px;
    color: #C0C0C0; /* Lighter grey for descriptions */
}

.page-online-games-fishing .highlight {
    color: #FFD700; /* Highlight color for brand name */
}

/* Buttons */
.page-online-games-fishing-cta-group {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.page-online-games-fishing-button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.page-online-games-fishing-button.primary {
    background-color: #FFD700; /* Gold background */
    color: #0A203C; /* Dark blue text */
    border: 2px solid #FFD700;
}

.page-online-games-fishing-button.primary:hover {
    background-color: #E6C200; /* Slightly darker gold on hover */
    border-color: #E6C200;
    transform: translateY(-3px);
}

.page-online-games-fishing-button.secondary {
    background-color: transparent;
    color: #FFD700; /* Gold text */
    border: 2px solid #FFD700;
}

.page-online-games-fishing-button.secondary:hover {
    background-color: #FFD700;
    color: #0A203C; /* Dark blue text on hover */
    transform: translateY(-3px);
}

.page-online-games-fishing-text-link {
    color: #FFD700;
    text-decoration: underline;
}

.page-online-games-fishing-text-link:hover {
    color: #E6C200;
}

/* Hero Section */
.page-online-games-fishing-hero {
    background: linear-gradient(135deg, #0A203C, #0D2B4D);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page-online-games-fishing-hero-image {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1400px;
    height: auto;
    opacity: 0.3;
    z-index: 0;
}

.page-online-games-fishing-hero .page-online-games-fishing-container {
    position: relative;
    z-index: 1;
    text-align: center;
}

/* Image styles */
.page-online-games-fishing-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 10px;
    margin: 40px auto;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    display: block;
}

.page-online-games-fishing-image.right {
    float: right;
    margin-left: 40px;
    margin-bottom: 20px;
}

.page-online-games-fishing-image.left {
    float: left;
    margin-right: 40px;
    margin-bottom: 20px;
}

.page-online-games-fishing-image.wide {
    max-width: 900px;
}

/* Lists */
.page-online-games-fishing-list {
    list-style: none;
    padding: 0;
    margin: 30px auto;
    max-width: 800px;
    text-align: left;
}

.page-online-games-fishing-list li {
    background-color: #1A3A5D; /* Darker blue for list items */
    margin-bottom: 10px;
    padding: 15px 20px;
    border-radius: 8px;
    display: flex;
    align-items: flex-start;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-online-games-fishing-list li::before {
    content: '✔️';
    color: #FFD700;
    margin-right: 10px;
    font-size: 1.2em;
    line-height: 1;
}

.page-online-games-fishing-numbered-list {
    list-style: none;
    counter-reset: my-awesome-counter;
    padding: 0;
    margin: 30px auto;
    max-width: 800px;
    text-align: left;
}

.page-online-games-fishing-numbered-list li {
    counter-increment: my-awesome-counter;
    margin-bottom: 15px;
    padding-left: 40px;
    position: relative;
    color: #E0E0E0;
}

.page-online-games-fishing-numbered-list li::before {
    content: counter(my-awesome-counter) ".";
    color: #FFD700;
    font-weight: bold;
    font-size: 1.4em;
    position: absolute;
    left: 0;
    top: 0;
}

/* Tips Grid */
.page-online-games-fishing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.page-online-games-fishing-tip-card {
    background-color: #1A3A5D;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
    transition: transform 0.3s ease;
}

.page-online-games-fishing-tip-card:hover {
    transform: translateY(-10px);
}

.page-online-games-fishing-card-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

.page-online-games-fishing-tip-card h3 {
    color: #FFD700;
    font-size: 1.5em;
    margin-bottom: 15px;
}

.page-online-games-fishing-tip-card p {
    color: #C0C0C0;
}

/* Download Section */
.page-online-games-fishing-download-flex {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.page-online-games-fishing-download-item {
    text-align: center;
    background-color: #1A3A5D;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-online-games-fishing-qr-code {
    width: 150px;
    height: 150px;
    margin-bottom: 20px;
    border: 5px solid #FFD700;
    border-radius: 5px;
}

.page-online-games-fishing-download-item p {
    color: #C0C0C0;
    margin-bottom: 20px;
    font-size: 1.1em;
}

.page-online-games-fishing-note {
    margin-top: 30px;
    font-style: italic;
    color: #A0A0A0;
}

/* FAQ Accordion */
.page-online-games-fishing-accordion {
    max-width: 800px;
    margin: 50px auto;
    text-align: left;
}

.page-online-games-fishing-accordion-item {
    margin-bottom: 15px;
    border: 1px solid #1A3A5D;
    border-radius: 8px;
    overflow: hidden;
}

.page-online-games-fishing-accordion-header {
    background-color: #1A3A5D; /* Darker blue for accordion header */
    color: #FFD700; /* Gold text */
    padding: 18px 25px;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    cursor: pointer;
    font-size: 1.2em;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.page-online-games-fishing-accordion-header:hover {
    background-color: #2A4A6D; /* Slightly lighter on hover */
}

.page-online-games-fishing-accordion-header::after {
    content: '\002B'; /* Plus sign */
    font-size: 1.5em;
    color: #FFD700;
    transition: transform 0.3s ease;
}

.page-online-games-fishing-accordion-header.active::after {
    content: '\2212'; /* Minus sign */
    transform: rotate(180deg);
}

.page-online-games-fishing-accordion-content {
    padding: 0 25px;
    background-color: #0D2B4D; /* Lighter dark blue for content */
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-online-games-fishing-accordion-content p {
    color: #C0C0C0;
    padding: 15px 0;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-online-games-fishing-title {
        font-size: 2.8em;
    }
    .page-online-games-fishing-heading {
        font-size: 2em;
    }
    .page-online-games-fishing-image.right,
    .page-online-games-fishing-image.left {
        float: none;
        margin: 40px auto;
    }
}

@media (max-width: 768px) {
    .page-online-games-fishing-title {
        font-size: 2.2em;
    }
    .page-online-games-fishing-heading {
        font-size: 1.8em;
    }
    .page-online-games-fishing-section {
        padding: 60px 0;
    }
    .page-online-games-fishing-cta-group {
        flex-direction: column;
        gap: 15px;
    }
    .page-online-games-fishing-button {
        width: 80%;
        max-width: 300px;
    }
    .page-online-games-fishing-grid {
        grid-template-columns: 1fr;
    }
    .page-online-games-fishing-download-flex {
        flex-direction: column;
        gap: 30px;
    }
    .page-online-games-fishing-download-item {
        width: 80%;
        max-width: 300px;
        margin: 0 auto;
    }
    .page-online-games-fishing-list li,
    .page-online-games-fishing-numbered-list li {
        padding-left: 30px;
    }
    .page-online-games-fishing-numbered-list li::before {
        font-size: 1.2em;
    }
    .page-online-games-fishing-accordion-header {
        font-size: 1em;
        padding: 15px 20px;
    }
}

@media (max-width: 480px) {
    .page-online-games-fishing-title {
        font-size: 1.8em;
    }
    .page-online-games-fishing-heading {
        font-size: 1.5em;
    }
    .page-online-games-fishing-section {
        padding: 40px 0;
    }
    .page-online-games-fishing-button {
        font-size: 1em;
        padding: 12px 25px;
    }
    .page-online-games-fishing-hero-image {
        opacity: 0.15;
    }
}