/* style/game-guides.css */
.page-game-guides {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f9fa;
}

.page-game-guides__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-game-guides__hero-section {
    background: linear-gradient(135deg, #003366, #1a4a7a);
    color: #fff;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-game-guides__hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255, 204, 0, 0.1) 0%, rgba(0, 51, 102, 0) 70%);
    animation: page-game-guides__pulse 15s infinite alternate;
}

@keyframes page-game-guides__pulse {
    0% { transform: scale(1); opacity: 0.7; }
    100% { transform: scale(1.2); opacity: 0.9; }
}

.page-game-guides__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #FFCC00;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 1;
}

.page-game-guides__hero-description,
.page-game-guides__hero-text {
    font-size: 1.2em;
    margin-bottom: 25px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.page-game-guides__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    font-size: 1.1em;
    margin: 10px;
    position: relative;
    z-index: 1;
}

.page-game-guides__btn--primary {
    background-color: #FFCC00;
    color: #003366;
    border: 2px solid #FFCC00;
}

.page-game-guides__btn--primary:hover {
    background-color: #e6b800;
    border-color: #e6b800;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 204, 0, 0.3);
}

.page-game-guides__btn--secondary {
    background-color: #003366;
    color: #FFCC00;
    border: 2px solid #FFCC00;
}

.page-game-guides__btn--secondary:hover {
    background-color: #002244;
    border-color: #e6b800;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 51, 102, 0.3);
}

.page-game-guides__btn--tertiary {
    background-color: transparent;
    color: #003366;
    border: 2px solid #003366;
}

.page-game-guides__btn--tertiary:hover {
    background-color: #003366;
    color: #FFCC00;
    transform: translateY(-3px);
}

.page-game-guides__section-title {
    font-size: 2.5em;
    color: #003366;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

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

.page-game-guides__section-description {
    font-size: 1.1em;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px auto;
    color: #555;
}

.page-game-guides__why-choose-us,
.page-game-guides__popular-games,
.page-game-guides__detailed-guides,
.page-game-guides__tips-strategies,
.page-game-guides__responsible-gaming,
.page-game-guides__cta-section {
    padding: 80px 0;
}

.page-game-guides__why-choose-us {
    background-color: #f0f4f8;
}

.page-game-guides__features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.page-game-guides__feature-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    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-game-guides__feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.page-game-guides__feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 2px 5px rgba(0, 51, 102, 0.3));
}

.page-game-guides__feature-title {
    font-size: 1.5em;
    color: #003366;
    margin-bottom: 15px;
}

.page-game-guides__feature-description {
    font-size: 1em;
    color: #666;
}

.page-game-guides__game-category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.page-game-guides__game-category-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-game-guides__game-category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.page-game-guides__category-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 3px solid #FFCC00;
}

.page-game-guides__game-category-card .page-game-guides__card-title {
    font-size: 1.6em;
    color: #003366;
    padding: 20px 20px 10px;
    margin: 0;
}

.page-game-guides__game-category-card .page-game-guides__card-description {
    font-size: 1em;
    color: #666;
    padding: 0 20px 20px;
    flex-grow: 1;
}

.page-game-guides__game-category-card .page-game-guides__btn {
    margin: 0 20px 20px;
    align-self: flex-start;
}

.page-game-guides__detailed-guides {
    background-color: #f0f4f8;
}

.page-game-guides__guide-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.page-game-guides__guide-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-game-guides__guide-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.page-game-guides__guide-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.page-game-guides__guide-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.page-game-guides__guide-title {
    font-size: 1.8em;
    margin-bottom: 15px;
}

.page-game-guides__guide-title a {
    color: #003366;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-game-guides__guide-title a:hover {
    color: #FFCC00;
}

.page-game-guides__guide-excerpt {
    font-size: 1em;
    color: #666;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-game-guides__tips-strategies {
    background-color: #fff;
}

.page-game-guides__strategy-list {
    list-style: none;
    padding: 0;
    margin-top: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-game-guides__strategy-list li {
    background-color: #f0f4f8;
    border-left: 5px solid #003366;
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 8px;
    font-size: 1.1em;
    color: #333;
    display: flex;
    align-items: flex-start;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-game-guides__list-icon {
    color: #FFCC00;
    font-size: 1.5em;
    margin-right: 15px;
    line-height: 1;
    display: block;
    min-width: 25px;
}

.page-game-guides__strategy-list li strong {
    color: #003366;
}

.page-game-guides__responsible-gaming {
    background-color: #003366;
    color: #fff;
    text-align: center;
}

.page-game-guides__responsible-gaming .page-game-guides__section-title {
    color: #FFCC00;
}

.page-game-guides__responsible-gaming .page-game-guides__section-title::after {
    background-color: #fff;
}

.page-game-guides__responsible-gaming .page-game-guides__section-description,
.page-game-guides__responsible-text {
    color: #ccc;
    margin-bottom: 30px;
}

.page-game-guides__responsible-list {
    list-style: disc;
    text-align: left;
    max-width: 700px;
    margin: 0 auto 40px auto;
    font-size: 1.1em;
    color: #fff;
    padding-left: 20px;
}

.page-game-guides__responsible-list li {
    margin-bottom: 10px;
}

.page-game-guides__cta-section {
    background: linear-gradient(to right, #003366, #FFCC00);
    color: #fff;
    text-align: center;
    padding: 80px 0;
}

.page-game-guides__cta-title {
    font-size: 2.8em;
    color: #fff;
    margin-bottom: 20px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.page-game-guides__cta-description {
    font-size: 1.3em;
    max-width: 800px;
    margin: 0 auto 40px auto;
    color: #eee;
}

.page-game-guides__floating-download-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #FFCC00;
    color: #003366;
    padding: 15px 25px;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    z-index: 1000;
    transition: all 0.3s ease;
}

.page-game-guides__floating-download-btn:hover {
    background-color: #e6b800;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-game-guides__floating-download-icon {
    width: 28px;
    height: 28px;
    margin-right: 10px;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .page-game-guides__hero-title {
        font-size: 2.8em;
    }
    .page-game-guides__section-title {
        font-size: 2.2em;
    }
    .page-game-guides__cta-title {
        font-size: 2.4em;
    }
}

@media (max-width: 768px) {
    .page-game-guides__hero-section {
        padding: 80px 0;
    }
    .page-game-guides__hero-title {
        font-size: 2.2em;
    }
    .page-game-guides__hero-description,
    .page-game-guides__hero-text {
        font-size: 1em;
    }
    .page-game-guides__section-title {
        font-size: 1.8em;
    }
    .page-game-guides__section-description {
        font-size: 0.95em;
        margin-bottom: 40px;
    }
    .page-game-guides__features-grid,
    .page-game-guides__game-category-grid,
    .page-game-guides__guide-list {
        grid-template-columns: 1fr;
    }
    .page-game-guides__cta-title {
        font-size: 2em;
    }
    .page-game-guides__cta-description {
        font-size: 1.1em;
    }
    .page-game-guides__floating-download-btn {
        bottom: 20px;
        right: 20px;
        padding: 12px 20px;
        font-size: 1em;
    }
    .page-game-guides__floating-download-icon {
        width: 24px;
        height: 24px;
    }
}

@media (max-width: 480px) {
    .page-game-guides__hero-section {
        padding: 60px 0;
    }
    .page-game-guides__hero-title {
        font-size: 1.8em;
    }
    .page-game-guides__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-game-guides__section-title {
        font-size: 1.6em;
    }
    .page-game-guides__feature-item,
    .page-game-guides__game-category-card,
    .page-game-guides__guide-card {
        padding: 20px;
    }
    .page-game-guides__feature-title {
        font-size: 1.3em;
    }
    .page-game-guides__card-title,
    .page-game-guides__guide-title {
        font-size: 1.4em;
    }
    .page-game-guides__floating-download-text {
        display: none;
    }
    .page-game-guides__floating-download-btn {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        justify-content: center;
        align-items: center;
        padding: 0;
    }
    .page-game-guides__floating-download-icon {
        margin-right: 0;
    }
}