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

/* Biến CSS */
:root {
    --page-slots-games-fishing-primary-color: #0A192F;
    --page-slots-games-fishing-secondary-color: #FFD700;
    --page-slots-games-fishing-text-light: #FFFFFF;
    --page-slots-games-fishing-text-dark: #0A192F;
    --page-slots-games-fishing-background-dark: #0A192F;
    --page-slots-games-fishing-background-light: #F0F2F5;
    --page-slots-games-fishing-accent-color: #FFD700;
    --page-slots-games-fishing-border-radius: 8px;
    --page-slots-games-fishing-transition-speed: 0.3s ease;
}

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

.page-slots-games-fishing__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.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-slots-games-fishing-accent-color);
    border-radius: 2px;
}

.page-slots-games-fishing__btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: var(--page-slots-games-fishing-border-radius);
    text-decoration: none;
    font-weight: bold;
    transition: var(--page-slots-games-fishing-transition-speed);
    cursor: pointer;
    text-align: center;
    white-space: nowrap;
}

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

.page-slots-games-fishing__btn--primary:hover {
    background-color: transparent;
    color: var(--page-slots-games-fishing-accent-color);
}

.page-slots-games-fishing__btn--secondary {
    background-color: transparent;
    color: var(--page-slots-games-fishing-accent-color);
    border: 2px solid var(--page-slots-games-fishing-accent-color);
    margin-left: 15px;
}

.page-slots-games-fishing__btn--secondary:hover {
    background-color: var(--page-slots-games-fishing-accent-color);
    color: var(--page-slots-games-fishing-primary-color);
}

.page-slots-games-fishing__btn--small {
    padding: 8px 18px;
    font-size: 0.9em;
}

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

.page-slots-games-fishing__hero-title {
    font-size: 3.8em;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-slots-games-fishing__hero-subtitle {
    font-size: 1.4em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-slots-games-fishing__hero-actions a {
    font-size: 1.1em;
}

/* Intro Section */
.page-slots-games-fishing__intro-section {
    background-color: var(--page-slots-games-fishing-background-light);
    padding: 80px 0;
}

.page-slots-games-fishing__intro-content p {
    text-align: center;
    margin-bottom: 50px;
    font-size: 1.1em;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

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

.page-slots-games-fishing__feature-item {
    background-color: var(--page-slots-games-fishing-text-light);
    padding: 30px;
    border-radius: var(--page-slots-games-fishing-border-radius);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-slots-games-fishing__feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.page-slots-games-fishing__feature-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
}

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

/* How-To-Play Section */
.page-slots-games-fishing__how-to-play-section {
    background-color: var(--page-slots-games-fishing-primary-color);
    color: var(--page-slots-games-fishing-text-light);
    padding: 80px 0;
}

.page-slots-games-fishing__how-to-play-section .page-slots-games-fishing__section-title {
    color: var(--page-slots-games-fishing-text-light);
}

.page-slots-games-fishing__how-to-play-section .page-slots-games-fishing__section-title::after {
    background-color: var(--page-slots-games-fishing-text-light);
}

.page-slots-games-fishing__how-to-play-section p {
    text-align: center;
    margin-bottom: 50px;
    font-size: 1.1em;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

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

.page-slots-games-fishing__step-item {
    background-color: #1a345a;
    padding: 30px;
    border-radius: var(--page-slots-games-fishing-border-radius);
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-slots-games-fishing__step-number {
    font-size: 3em;
    font-weight: bold;
    color: var(--page-slots-games-fishing-accent-color);
    margin-bottom: 15px;
}

.page-slots-games-fishing__step-title {
    font-size: 1.6em;
    color: var(--page-slots-games-fishing-text-light);
    margin-bottom: 15px;
}

.page-slots-games-fishing__step-item p {
    font-size: 1em;
    margin-bottom: 20px;
    color: #cccccc;
}

.page-slots-games-fishing__step-item a {
    color: var(--page-slots-games-fishing-accent-color);
    text-decoration: underline;
}

.page-slots-games-fishing__step-item a:hover {
    color: #ffffff;
}

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

/* Strategy Section */
.page-slots-games-fishing__strategy-section {
    background-color: var(--page-slots-games-fishing-background-light);
    padding: 80px 0;
}

.page-slots-games-fishing__strategy-section p {
    text-align: center;
    margin-bottom: 50px;
    font-size: 1.1em;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

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

.page-slots-games-fishing__strategy-item {
    background-color: var(--page-slots-games-fishing-text-light);
    padding: 30px;
    border-radius: var(--page-slots-games-fishing-border-radius);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.page-slots-games-fishing__strategy-image {
    width: 100%;
    max-height: 200px;
    object-fit: cover;
    border-radius: var(--page-slots-games-fishing-border-radius);
    margin-bottom: 20px;
}

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

/* Promotions Section */
.page-slots-games-fishing__promotions-section {
    background-color: var(--page-slots-games-fishing-primary-color);
    color: var(--page-slots-games-fishing-text-light);
    padding: 80px 0;
}

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

.page-slots-games-fishing__promotions-section .page-slots-games-fishing__section-title::after {
    background-color: var(--page-slots-games-fishing-text-light);
}

.page-slots-games-fishing__promotions-section p {
    text-align: center;
    margin-bottom: 50px;
    font-size: 1.1em;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

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

.page-slots-games-fishing__promo-item {
    background-color: #1a345a;
    padding: 30px;
    border-radius: var(--page-slots-games-fishing-border-radius);
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-slots-games-fishing__promo-image {
    width: 100%;
    max-height: 180px;
    object-fit: cover;
    border-radius: var(--page-slots-games-fishing-border-radius);
    margin-bottom: 20px;
}

.page-slots-games-fishing__promo-title {
    font-size: 1.5em;
    color: var(--page-slots-games-fishing-accent-color);
    margin-bottom: 15px;
}

.page-slots-games-fishing__promo-item p {
    color: #cccccc;
    margin-bottom: 20px;
}

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

.page-slots-games-fishing__app-download-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.page-slots-games-fishing__app-text-content {
    flex: 1;
    min-width: 300px;
    max-width: 600px;
}

.page-slots-games-fishing__app-text-content .page-slots-games-fishing__section-title {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
}

.page-slots-games-fishing__app-text-content .page-slots-games-fishing__section-title::after {
    left: 0;
    transform: translateX(0);
}

.page-slots-games-fishing__app-text-content p {
    text-align: left;
    margin-bottom: 20px;
}

.page-slots-games-fishing__app-feature-title {
    font-size: 1.4em;
    color: var(--page-slots-games-fishing-primary-color);
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-slots-games-fishing__app-features-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.page-slots-games-fishing__app-features-list li {
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path fill="%23FFD700" d="M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z"/></svg>') no-repeat left center;
    background-size: 20px;
    padding-left: 30px;
    margin-bottom: 10px;
    color: var(--page-slots-games-fishing-text-dark);
}

.page-slots-games-fishing__app-image-wrapper {
    flex: 1;
    min-width: 250px;
    max-width: 400px;
    text-align: center;
}

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

/* Trust Section */
.page-slots-games-fishing__trust-section {
    background-color: var(--page-slots-games-fishing-primary-color);
    color: var(--page-slots-games-fishing-text-light);
    padding: 80px 0;
}

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

.page-slots-games-fishing__trust-section .page-slots-games-fishing__section-title::after {
    background-color: var(--page-slots-games-fishing-text-light);
}

.page-slots-games-fishing__trust-section p {
    text-align: center;
    margin-bottom: 50px;
    font-size: 1.1em;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

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

.page-slots-games-fishing__trust-item {
    background-color: #1a345a;
    padding: 30px;
    border-radius: var(--page-slots-games-fishing-border-radius);
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-slots-games-fishing__trust-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
}

.page-slots-games-fishing__trust-title {
    font-size: 1.5em;
    color: var(--page-slots-games-fishing-accent-color);
    margin-bottom: 15px;
}

.page-slots-games-fishing__trust-item p {
    color: #cccccc;
}

/* Final CTA Section */
.page-slots-games-fishing__cta-final-section {
    background-color: var(--page-slots-games-fishing-background-light);
    padding: 80px 0;
    text-align: center;
}

.page-slots-games-fishing__cta-final-section p {
    font-size: 1.2em;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-slots-games-fishing__hero-title {
        font-size: 3em;
    }
    .page-slots-games-fishing__section-title {
        font-size: 2em;
    }
    .page-slots-games-fishing__app-download-content {
        flex-direction: column;
    }
    .page-slots-games-fishing__app-text-content,
    .page-slots-games-fishing__app-image-wrapper {
        max-width: 100%;
    }
    .page-slots-games-fishing__app-text-content .page-slots-games-fishing__section-title {
        text-align: center;
    }
    .page-slots-games-fishing__app-text-content .page-slots-games-fishing__section-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .page-slots-games-fishing__app-text-content p {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .page-slots-games-fishing__hero-section {
        padding: 80px 0;
    }
    .page-slots-games-fishing__hero-title {
        font-size: 2.5em;
    }
    .page-slots-games-fishing__hero-subtitle {
        font-size: 1.2em;
    }
    .page-slots-games-fishing__hero-actions {
        display: flex;
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    .page-slots-games-fishing__btn--secondary {
        margin-left: 0;
    }
    .page-slots-games-fishing__section-title {
        font-size: 1.8em;
    }
    .page-slots-games-fishing__feature-title,
    .page-slots-games-fishing__step-title,
    .page-slots-games-fishing__strategy-title,
    .page-slots-games-fishing__promo-title,
    .page-slots-games-fishing__trust-title {
        font-size: 1.3em;
    }
}

@media (max-width: 480px) {
    .page-slots-games-fishing__hero-title {
        font-size: 2em;
    }
    .page-slots-games-fishing__hero-subtitle {
        font-size: 1em;
    }
    .page-slots-games-fishing__btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }
    .page-slots-games-fishing__section-title {
        font-size: 1.5em;
    }
}