/* style/blog-winph-new-user-bonus-strategy.css */

/* Variables for consistent styling */
:root {
    --winph-primary: #F2C14E;
    --winph-secondary: #FFD36B;
    --winph-card-bg: #111111;
    --winph-background: #0A0A0A;
    --winph-text-main: #FFF6D6;
    --winph-border: #3A2A12;
    --winph-glow: #FFD36B;
    --winph-btn-gradient: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
    /* Header offset is defined in shared.css, page content uses small top padding */
}

.page-blog-winph-new-user-bonus-strategy {
    font-family: 'Arial', sans-serif;
    color: var(--winph-text-main); /* Default text color for the page, assuming dark body bg */
    background-color: var(--winph-background); /* Explicitly set page background */
    line-height: 1.6;
    overflow-x: hidden; /* Prevent horizontal scroll */
}

/* Hero Section */
.page-blog-winph-new-user-bonus-strategy__hero-section {
    background: var(--winph-background); /* Dark background for the hero */
    padding-top: 10px; /* Small top padding, body handles --header-offset */
    padding-bottom: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
}

.page-blog-winph-new-user-bonus-strategy__hero-content {
    max-width: 900px;
    padding: 20px 15px;
    z-index: 1;
    position: relative;
}

.page-blog-winph-new-user-bonus-strategy__main-title {
    font-size: 3.2em;
    font-weight: 700;
    color: var(--winph-primary);
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 0 10px rgba(255, 211, 107, 0.5);
    max-width: 100%; /* Ensure H1 doesn't overflow */
}

.page-blog-winph-new-user-bonus-strategy__hero-description {
    font-size: 1.2em;
    color: var(--winph-text-main);
    margin-bottom: 30px;
}