/* style/blog-uu8-game-guides-tips.css */

/* --- Base Styles & Variables --- */
:root {
    /* Custom Colors */
    --primary-color: #11A84E; /* Main */
    --secondary-color: #22C768; /* Aux */
    --bg-color: #08160F; /* Background */
    --card-bg-color: #11271B; /* Card BG */
    --text-main-color: #F2FFF6; /* Text Main */
    --text-secondary-color: #A7D9B8; /* Text Secondary */
    --button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button */
    --border-color: #2E7A4E; /* Border */
    --glow-color: #57E38D; /* Glow */
    --gold-color: #F2C14E; /* Gold */
    --divider-color: #1E3A2A; /* Divider */
    --deep-green-color: #0A4B2C; /* Deep Green */

    /* Typography */
    --font-family-primary: 'Arial', sans-serif;
    --font-size-base: 16px;
    --line-height-base: 1.6;
}

/* --- Page Specific Styles --- */
.page-blog-uu8-game-guides-tips {
    font-family: var(--font-family-primary);
    color: var(--text-main-color);
    background-color: var(--bg-color); /* Ensure main content area also has this background */
    line-height: var(--line-height-base);
    font-size: var(--font-size-base);
}

.page-blog-uu8-game-guides-tips__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* --- Hero Section --- */
.page-blog-uu8-game-guides-tips__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding-top: 10px; /* Small top padding, body handles header offset */
    padding-bottom: 60px;
    background-color: var(--bg-color); /* Match body background */
}

.page-blog-uu8-game-guides-tips__hero-image-wrapper {
    width: 100%;
    max-height: 600px; /* Limit height for hero image */
    overflow: hidden;
    margin-bottom: 30px; /* Space between image and content */
}

.page-blog-uu8-game-guides-tips__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-width: 100%; /* Ensure responsive */
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.page-blog-uu8-game-guides-tips__hero-content {
    max-width: 900px;
    padding: 0 20px;
    box-sizing: border-box;
    z-index: 1; /* Ensure content is above any background effects */
}

.page-blog-uu8-game-guides-tips__hero-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem); /* Use clamp for H1 */
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--gold-color); /* Use gold for prominent title */
    text-shadow: 0 0 10px rgba(87, 227, 141, 0.5); /* Soft glow */
}

.page-blog-uu8-game-guides-tips__hero-description {
    font-size: 1.25rem;
    color: var(--text-secondary-color);
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-blog-uu8-game-guides-tips__hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
}

/* --- General Section Styling --- */
.page-blog-uu8-game-guides-tips__intro-section,
.page-blog-uu8-game-guides-tips__game-guides-section,
.page-blog-uu8-game-guides-tips__promotions-overview,
.page-blog-uu8-game-guides-tips__how-to-claim,
.page-blog-uu8-game-guides-tips__faq-section,
.page-blog-uu8-game-guides-tips__cta-section {
    padding: 60px 0;
    background-color: var(--bg-color); /* Consistent background */
}

.page-blog-uu8-game-guides-tips__section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-blog-uu8-game-guides-tips__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--gold-color);
    border-radius: 2px;
}

.page-blog-uu8-game-guides-tips__text-block {
    font-size: 1.1rem;
    color: var(--text-secondary-color);
    margin-bottom: 20px;
    text-align: justify;
}

/* --- Buttons --- */
.page-blog-uu8-game-guides-tips__btn-primary,
.page-blog-uu8-game-guides-tips__btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    border: none;
    max-width: 100%; /* Ensure responsive */
    box-sizing: border-box; /* Include padding in width */
    white-space: normal; /* Allow text wrap */
    word-wrap: break-word; /* Allow text wrap */
}

.page-blog-uu8-game-guides-tips__btn-primary {
    background: var(--button-gradient);
    color: #ffffff; /* White text for contrast */
    border: 2px solid transparent;
}

.page-blog-uu8-game-guides-tips__btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3), 0 0 15px var(--glow-color);
}

.page-blog-uu8-game-guides-tips__btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.page-blog-uu8-game-guides-tips__btn-secondary:hover {
    background-color: var(--primary-color);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* --- Game Guides Section --- */
.page-blog-uu8-game-guides-tips__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-blog-uu8-game-guides-tips__guide-card {
    background-color: var(--card-bg-color);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.page-blog-uu8-game-guides-tips__guide-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.page-blog-uu8-game-guides-tips__card-image {
    width: 100%;
    height: 200px; /* Fixed height for consistency */
    object-fit: cover;
    display: block;
    max-width: 100%; /* Ensure responsive */
}

.page-blog-uu8-game-guides-tips__card-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--gold-color);
    margin: 20px 20px 10px;
    line-height: 1.4;
}

.page-blog-uu8-game-guides-tips__card-title a {
    color: var(--gold-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-blog-uu8-game-guides-tips__card-title a:hover {
    color: var(--glow-color);
}

.page-blog-uu8-game-guides-tips__card-description {
    font-size: 0.95rem;
    color: var(--text-secondary-color);
    padding: 0 20px;
    margin-bottom: 20px;
    flex-grow: 1; /* Allow description to take available space */
}

.page-blog-uu8-game-guides-tips__card-link {
    display: inline-block;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    padding: 10px 20px 20px;
    transition: color 0.3s ease;
}

.page-blog-uu8-game-guides-tips__card-link:hover {
    color: var(--glow-color);
}

/* --- Promotions Overview --- */
.page-blog-uu8-game-guides-tips__image-full-width {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    margin-bottom: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    max-width: 100%; /* Ensure responsive */
}

.page-blog-uu8-game-guides-tips__list-items {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
}

.page-blog-uu8-game-guides-tips__list-item {
    background-color: var(--card-bg-color);
    border-left: 5px solid var(--primary-color);
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-blog-uu8-game-guides-tips__list-item-title {
    font-size: 1.3rem;
    color: var(--gold-color);
    margin-top: 0;
    margin-bottom: 10px;
}

.page-blog-uu8-game-guides-tips__list-item p {
    font-size: 1rem;
    color: var(--text-secondary-color);
    margin: 0;
}

.page-blog-uu8-game-guides-tips__cta-center {
    text-align: center;
}