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

/* Biến CSS */
:root {
    --page-primary-color: #007bff;
    --page-secondary-color: #ffc107;
    --page-dark-text: #333;
    --page-light-text: #f8f9fa;
    --page-background-light: #f4f7f6;
    --page-background-dark: #2c3e50;
    --page-border-color: #e0e0e0;
}

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

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

.page-slots-games-fishing .section-title {
    font-size: 2.5em;
    color: var(--page-primary-color);
    text-align: center;
    margin-bottom: 40px;
    font-weight: 700;
    position: relative;
    padding-bottom: 10px;
}

.page-slots-games-fishing .section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--page-secondary-color);
    border-radius: 2px;
}

.page-slots-games-fishing .section-description {
    text-align: center;
    font-size: 1.1em;
    color: var(--page-dark-text);
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-slots-games-fishing .btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1em;
}

.page-slots-games-fishing .btn-primary {
    background-color: var(--page-primary-color);
    color: var(--page-light-text);
    border: 2px solid var(--page-primary-color);
}

.page-slots-games-fishing .btn-primary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
    transform: translateY(-2px);
}

.page-slots-games-fishing .btn-secondary {
    background-color: var(--page-secondary-color);
    color: var(--page-dark-text);
    border: 2px solid var(--page-secondary-color);
}

.page-slots-games-fishing .btn-secondary:hover {
    background-color: #e0a800;
    border-color: #e0a800;
    transform: translateY(-2px);
}

.page-slots-games-fishing .large-btn {
    padding: 15px 35px;
    font-size: 1.1em;
    margin: 10px;
}

.page-slots-games-fishing .small-btn {
    padding: 8px 15px;
    font-size: 0.9em;
}

/* Hero Section */
.page-slots-games-fishing .hero-section {
    background: linear-gradient(135deg, var(--page-primary-color) 0%, #0056b3 100%);
    color: var(--page-light-text);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-slots-games-fishing .hero-section .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.page-slots-games-fishing .hero-content {
    max-width: 800px;
    z-index: 1;
}

.page-slots-games-fishing .hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: 800;
    color: var(--page-light-text);
    line-height: 1.2;
}

.page-slots-games-fishing .hero-description {
    font-size: 1.25em;
    margin-bottom: 30px;
    opacity: 0.9;
}

.page-slots-games-fishing .hero-actions .btn {
    margin: 0 10px;
}

.page-slots-games-fishing .hero-image-wrapper {
    margin-top: 40px;
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 700px;
}

.page-slots-games-fishing .hero-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* About Fishing Game Section */
.page-slots-games-fishing .about-fishing-game {
    padding: 80px 0;
    background-color: #fff;
}

.page-slots-games-fishing .content-grid {
    display: flex;
    gap: 40px;
    align-items: center;
}

.page-slots-games-fishing .content-grid .text-content {
    flex: 1;
    font-size: 1.1em;
    color: var(--page-dark-text);
}

.page-slots-games-fishing .content-grid .image-content {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-slots-games-fishing .section-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Why 92lottery Section */
.page-slots-games-fishing .why-92lottery {
    padding: 80px 0;
    background-color: var(--page-background-light);
}

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

.page-slots-games-fishing .feature-list li {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-slots-games-fishing .feature-list li:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.page-slots-games-fishing .feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 5px 5px rgba(0, 0, 0, 0.1));
}

.page-slots-games-fishing .feature-list h3 {
    font-size: 1.5em;
    color: var(--page-primary-color);
    margin-bottom: 15px;
}

.page-slots-games-fishing .feature-list p {
    font-size: 1em;
    color: var(--page-dark-text);
}

.page-slots-games-fishing .cta-center {
    text-align: center;
    margin-top: 50px;
}

/* Gameplay Guide Section */
.page-slots-games-fishing .gameplay-guide {
    padding: 80px 0;
    background-color: #fff;
}

.page-slots-games-fishing .guide-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.page-slots-games-fishing .step-item {
    background-color: var(--page-background-light);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.page-slots-games-fishing .step-image {
    width: 100%;
    max-width: 200px;
    height: auto;
    margin-bottom: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.page-slots-games-fishing .step-item h3 {
    font-size: 1.4em;
    color: var(--page-primary-color);
    margin-bottom: 15px;
}

.page-slots-games-fishing .step-item p {
    font-size: 1em;
    color: var(--page-dark-text);
    margin-bottom: 20px;
}

/* Fishing Tips Section */
.page-slots-games-fishing .fishing-tips {
    padding: 80px 0;
    background-color: var(--page-background-dark);
    color: var(--page-light-text);
}

.page-slots-games-fishing .fishing-tips .section-title {
    color: var(--page-light-text);
}

.page-slots-games-fishing .fishing-tips .section-title::after {
    background-color: var(--page-secondary-color);
}

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

.page-slots-games-fishing .tip-item {
    background-color: #3a4b5d;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-slots-games-fishing .tip-item:hover {
    transform: translateY(-10px);
    background-color: #4c5f72;
}

.page-slots-games-fishing .tip-image {
    width: 100%;
    max-width: 250px;
    height: auto;
    margin-bottom: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.page-slots-games-fishing .tip-item h3 {
    font-size: 1.5em;
    color: var(--page-secondary-color);
    margin-bottom: 15px;
}

.page-slots-games-fishing .tip-item p {
    font-size: 1em;
    color: var(--page-light-text);
    opacity: 0.9;
}

/* Exclusive Offers Section */
.page-slots-games-fishing .exclusive-offers {
    padding: 80px 0;
    background-color: var(--page-background-light);
}

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

.page-slots-games-fishing .offer-cards .card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-slots-games-fishing .offer-cards .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.page-slots-games-fishing .card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.page-slots-games-fishing .card-title {
    font-size: 1.5em;
    color: var(--page-primary-color);
    margin: 20px 20px 10px;
}

.page-slots-games-fishing .card-text {
    font-size: 1em;
    color: var(--page-dark-text);
    padding: 0 20px 20px;
}

.page-slots-games-fishing .card .btn {
    display: block;
    width: calc(100% - 40px);
    margin: 0 20px 20px;
    text-align: center;
}

/* App Download Section */
.page-slots-games-fishing .app-download {
    padding: 80px 0;
    background-color: var(--page-primary-color);
    color: var(--page-light-text);
}

.page-slots-games-fishing .app-download .section-title {
    color: var(--page-light-text);
}

.page-slots-games-fishing .app-download .section-title::after {
    background-color: var(--page-secondary-color);
}

.page-slots-games-fishing .app-content {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.page-slots-games-fishing .app-text {
    flex: 1;
    min-width: 300px;
}

.page-slots-games-fishing .app-text p {
    font-size: 1.1em;
    margin-bottom: 20px;
    opacity: 0.9;
}

.page-slots-games-fishing .app-buttons {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.page-slots-games-fishing .app-image-wrapper {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
}

.page-slots-games-fishing .app-image {
    max-width: 350px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

/* Responsible Gaming Section */
.page-slots-games-fishing .responsible-gaming {
    padding: 80px 0;
    background-color: #f0f0f0;
    text-align: center;
}

.page-slots-games-fishing .responsible-gaming .section-title {
    color: var(--page-dark-text);
}

.page-slots-games-fishing .responsible-gaming .section-description {
    color: var(--page-dark-text);
    margin-bottom: 30px;
}

/* Final CTA Section */
.page-slots-games-fishing .final-cta {
    padding: 100px 0;
    background: linear-gradient(45deg, var(--page-secondary-color) 0%, #e0a800 100%);
    color: var(--page-dark-text);
    text-align: center;
}

.page-slots-games-fishing .final-cta .section-title {
    color: var(--page-dark-text);
}

.page-slots-games-fishing .final-cta .section-title::after {
    background-color: var(--page-primary-color);
}

.page-slots-games-fishing .final-cta .section-description {
    color: var(--page-dark-text);
    margin-bottom: 40px;
}

.page-slots-games-fishing .cta-actions .btn {
    margin: 0 15px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-slots-games-fishing .hero-title {
        font-size: 2.8em;
    }
    .page-slots-games-fishing .section-title {
        font-size: 2em;
    }
    .page-slots-games-fishing .content-grid {
        flex-direction: column;
    }
    .page-slots-games-fishing .app-content {
        flex-direction: column;
        text-align: center;
    }
    .page-slots-games-fishing .app-buttons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .page-slots-games-fishing .hero-section {
        padding: 80px 0;
    }
    .page-slots-games-fishing .hero-title {
        font-size: 2.2em;
    }
    .page-slots-games-fishing .hero-description {
        font-size: 1.1em;
    }
    .page-slots-games-fishing .hero-actions {
        flex-direction: column;
        gap: 15px;
    }
    .page-slots-games-fishing .hero-actions .btn {
        width: 80%;
        max-width: 300px;
    }
    .page-slots-games-fishing .section-title {
        font-size: 1.8em;
    }
    .page-slots-games-fishing .feature-list, .page-slots-games-fishing .guide-steps, .page-slots-games-fishing .tips-grid, .page-slots-games-fishing .offer-cards {
        grid-template-columns: 1fr;
    }
    .page-slots-games-fishing .app-image {
        max-width: 280px;
    }
    .page-slots-games-fishing .cta-actions {
        flex-direction: column;
        gap: 15px;
    }
    .page-slots-games-fishing .cta-actions .btn {
        width: 80%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .page-slots-games-fishing .hero-title {
        font-size: 1.8em;
    }
    .page-slots-games-fishing .section-title {
        font-size: 1.5em;
    }
    .page-slots-games-fishing .btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }
    .page-slots-games-fishing .large-btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-slots-games-fishing .app-buttons {
        flex-direction: column;
        gap: 10px;
    }
    .page-slots-games-fishing .app-buttons .btn {
        width: 100%;
    }
    .page-slots-games-fishing .card-title {
        font-size: 1.3em;
    }
}