/* style/game-guides-slot-machine-tips.css */

.page-game-guides-slot-machine-tips {
    font-family: 'Arial', sans-serif;
    color: #0A2239;
    line-height: 1.6;
    background-color: #f9f9f9;
}

.page-game-guides-slot-machine-tips .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-game-guides-slot-machine-tips .hero-section {
    background: linear-gradient(135deg, #0A2239, #3A5B79);
    color: #FFFFFF;
    padding: 80px 0;
    text-align: center;
}

.page-game-guides-slot-machine-tips .hero-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: #E0B400;
    font-weight: bold;
    line-height: 1.2;
}

.page-game-guides-slot-machine-tips .hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-game-guides-slot-machine-tips .content-section {
    padding: 60px 0;
    background-color: #FFFFFF;
}

.page-game-guides-slot-machine-tips .section-title {
    font-size: 2.2em;
    color: #0A2239;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.page-game-guides-slot-machine-tips .section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #E0B400;
    border-radius: 2px;
}

.page-game-guides-slot-machine-tips .subsection-title {
    font-size: 1.8em;
    color: #0A2239;
    margin-top: 40px;
    margin-bottom: 20px;
    border-left: 5px solid #E0B400;
    padding-left: 15px;
}

.page-game-guides-slot-machine-tips p {
    font-size: 1.1em;
    margin-bottom: 15px;
    color: #333333;
}

.page-game-guides-slot-machine-tips ul {
    list-style: disc;
    margin-left: 25px;
    margin-bottom: 20px;
}

.page-game-guides-slot-machine-tips li {
    margin-bottom: 10px;
    font-size: 1.05em;
    color: #444444;
}

.page-game-guides-slot-machine-tips .btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
    font-size: 1.1em;
    text-align: center;
}

.page-game-guides-slot-machine-tips .btn-primary {
    background-color: #E0B400;
    color: #0A2239;
    border: 2px solid #E0B400;
}

.page-game-guides-slot-machine-tips .btn-primary:hover {
    background-color: #f0c32f;
    color: #000000;
    border-color: #f0c32f;
}

.page-game-guides-slot-machine-tips .btn-secondary {
    background-color: #0A2239;
    color: #E0B400;
    border: 2px solid #E0B400;
    margin-top: 20px;
}

.page-game-guides-slot-machine-tips .btn-secondary:hover {
    background-color: #1a3a5c;
    color: #f0c32f;
    border-color: #f0c32f;
}

.page-game-guides-slot-machine-tips .highlight-keyword {
    color: #E0B400;
    font-weight: bold;
}

.page-game-guides-slot-machine-tips .image-wrapper {
    text-align: center;
    margin: 30px 0;
}

.page-game-guides-slot-machine-tips .content-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-game-guides-slot-machine-tips .image-caption {
    font-style: italic;
    font-size: 0.95em;
    color: #666666;
    margin-top: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-game-guides-slot-machine-tips .hero-title {
        font-size: 2em;
    }
    .page-game-guides-slot-machine-tips .hero-description {
        font-size: 1em;
    }
    .page-game-guides-slot-machine-tips .section-title {
        font-size: 1.8em;
    }
    .page-game-guides-slot-machine-tips .subsection-title {
        font-size: 1.5em;
    }
    .page-game-guides-slot-machine-tips p, .page-game-guides-slot-machine-tips li {
        font-size: 1em;
    }
    .page-game-guides-slot-machine-tips .btn {
        padding: 10px 20px;
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .page-game-guides-slot-machine-tips .hero-title {
        font-size: 1.6em;
    }
    .page-game-guides-slot-machine-tips .section-title {
        font-size: 1.5em;
    }
    .page-game-guides-slot-machine-tips .subsection-title {
        font-size: 1.3em;
    }
    .page-game-guides-slot-machine-tips .btn {
        display: block;
        width: 100%;
        margin-top: 15px;
    }
}