/* style/resources-slot-game-tips.css */

/* Variables */
:root {
    --primary-color: #007bff;
    --secondary-color: #ffc107;
    --text-dark: #333;
    --text-light: #fff;
    --bg-light: #f8f9fa;
    --bg-dark: #212529;
    --border-color: #dee2e6;
}

/* Base styles for the page content */
.page-resources-slot-game-tips {
    font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
}

.page-resources-slot-game-tips .container {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Hero Section */
.page-resources-slot-game-tips .hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #0056b3 100%); /* Darker blue gradient */
    color: var(--text-light);
    padding: 80px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-resources-slot-game-tips .hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('[GALLERY:bg:abstract_pattern,geometric,light_blue_yellow]') no-repeat center center/cover;
    opacity: 0.1;
    z-index: 0;
}

.page-resources-slot-game-tips .hero-section .container {
    position: relative;
    z-index: 1;
}

.page-resources-slot-game-tips .hero-section h1 {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: var(--text-light);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-resources-slot-game-tips .hero-section .subtitle {
    font-size: 1.2em;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.page-resources-slot-game-tips .hero-section .back-link {
    position: absolute;
    top: 20px;
    left: 20px;
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: bold;
    padding: 8px 15px;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
    background-color: rgba(255, 255, 255, 0.1);
}

.page-resources-slot-game-tips .hero-section .back-link:hover {
    background-color: rgba(255, 255, 255, 0.2);
    color: var(--text-light);
}

/* Article Content */
.page-resources-slot-game-tips .article-content {
    padding: 60px 0;
    background-color: var(--text-light);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    margin-top: -40px; /* Overlap with hero section */
    position: relative;
    z-index: 2;
}

.page-resources-slot-game-tips .article-content h2 {
    font-size: 2em;
    color: var(--primary-color);
    margin-top: 40px;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--secondary-color);
    padding-bottom: 10px;
}

.page-resources-slot-game-tips .article-content h3 {
    font-size: 1.5em;
    color: var(--text-dark);
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-resources-slot-game-tips .article-content p {
    margin-bottom: 1.5em;
    font-size: 1.05em;
    line-height: 1.7;
}

.page-resources-slot-game-tips .article-content ul {
    list-style-type: disc;
    margin-left: 25px;
    margin-bottom: 1.5em;
}

.page-resources-slot-game-tips .article-content ul li {
    margin-bottom: 0.8em;
    font-size: 1.05em;
}

.page-resources-slot-game-tips .article-content .article-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-resources-slot-game-tips .article-content figure {
    margin: 0;
    text-align: center;
}

.page-resources-slot-game-tips .article-content figcaption {
    font-style: italic;
    color: #666;
    margin-top: 10px;
    font-size: 0.9em;
}

/* Buttons */
.page-resources-slot-game-tips .btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.page-resources-slot-game-tips .btn-primary {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border: none;
}

.page-resources-slot-game-tips .btn-primary:hover {
    background-color: #e6b000;
    transform: translateY(-2px);
}

.page-resources-slot-game-tips .btn-secondary {
    background-color: var(--primary-color);
    color: var(--text-light);
    border: 2px solid var(--primary-color);
}

.page-resources-slot-game-tips .btn-secondary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
    transform: translateY(-2px);
}

.page-resources-slot-game-tips .cta-button {
    margin-top: 30px;
    margin-bottom: 20px;
}

.page-resources-slot-game-tips .cta-button-bottom {
    margin-top: 40px;
    display: block;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    padding: 15px 35px;
    font-size: 1.2em;
}

.page-resources-slot-game-tips .cta-button-bottom:hover {
    background-color: #e6b000;
    transform: translateY(-3px);
}

.page-resources-slot-game-tips .text-link-highlight {
    color: var(--primary-color);
    font-weight: bold;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.page-resources-slot-game-tips .text-link-highlight:hover {
    color: var(--secondary-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-resources-slot-game-tips .hero-section h1 {
        font-size: 2.2em;
    }

    .page-resources-slot-game-tips .hero-section .subtitle {
        font-size: 1em;
    }

    .page-resources-slot-game-tips .article-content h2 {
        font-size: 1.8em;
    }

    .page-resources-slot-game-tips .article-content h3 {
        font-size: 1.3em;
    }

    .page-resources-slot-game-tips .btn {
        padding: 10px 20px;
        font-size: 1em;
    }

    .page-resources-slot-game-tips .hero-section .back-link {
        top: 10px;
        left: 10px;
        padding: 6px 12px;
        font-size: 0.9em;
    }

    .page-resources-slot-game-tips .article-content {
        padding: 30px 15px;
    }
}

@media (max-width: 480px) {
    .page-resources-slot-game-tips .hero-section h1 {
        font-size: 1.8em;
    }

    .page-resources-slot-game-tips .hero-section .subtitle {
        font-size: 0.9em;
    }

    .page-resources-slot-game-tips .article-content h2 {
        font-size: 1.5em;
    }

    .page-resources-slot-game-tips .article-content h3 {
        font-size: 1.2em;
    }

    .page-resources-slot-game-tips .btn {
        padding: 8px 15px;
        font-size: 0.9em;
    }

    .page-resources-slot-game-tips .cta-button-bottom {
        padding: 12px 25px;
        font-size: 1.1em;
    }
}