/* style/blog-how-to-use-cwin666-code.css */

/* Base styles and color scheme based on provided palette */
:root {
    --primary-color: #11A84E;
    --secondary-color: #22C768;
    --button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    --card-bg: #11271B;
    --background-main: #08160F;
    --text-main: #F2FFF6;
    --text-secondary: #A7D9B8;
    --border-color: #2E7A4E;
    --glow-color: #57E38D;
    --gold-color: #F2C14E;
    --divider-color: #1E3A2A;
    --deep-green: #0A4B2C;
}

.page-blog-how-to-use-cwin666-code {
    background-color: var(--background-main);
    color: var(--text-main);
    font-family: Arial, sans-serif;
    line-height: 1.6;
    font-size: 1rem;
}

.page-blog-how-to-use-cwin666-code__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* Hero Section */
.page-blog-how-to-use-cwin666-code__hero-section {
    position: relative;
    display: flex;
    flex-direction: column; /* Enforce image on top, content below */
    align-items: center;
    text-align: center;
    padding: 10px 0 60px 0; /* Small top padding, body handles header offset */
    background-color: var(--card-bg); /* Use card-bg for hero section background */
    overflow: hidden;
}

.page-blog-how-to-use-cwin666-code__hero-image-wrapper {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.page-blog-how-to-use-cwin666-code__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.page-blog-how-to-use-cwin666-code__hero-content {
    padding: 40px 20px;
    max-width: 800px;
    z-index: 1;
    position: relative;
    color: var(--text-main);
}

.page-blog-how-to-use-cwin666-code__main-title {
    font-size: clamp(2rem, 4vw, 3.5rem); /* Using clamp for H1 font size */
    color: var(--gold-color);
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
}

.page-blog-how-to-use-cwin666-code__intro-text {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-blog-how-to-use-cwin666-code__cta-button {
    display: inline-block;
    background: var(--button-gradient);
    color: #ffffff;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: none;
    cursor: pointer;
    white-space: normal;
    word-wrap: break-word;
}

.page-blog-how-to-use-cwin666-code__cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* General Section Styles */
.page-blog-how-to-use-cwin666-code__section {
    padding: 60px 0;
    border-bottom: 1px solid var(--divider-color);
}

.page-blog-how-to-use-cwin666-code__section:last-of-type {
    border-bottom: none;
}

.page-blog-how-to-use-cwin666-code__section-title {
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

.page-blog-how-to-use-cwin666-code__text-block {
    font-size: 1.1rem;
    color: var(--text-main);
    margin-bottom: 20px;
    text-align: justify;
}

.page-blog-how-to-use-cwin666-code__highlight {
    color: var(--gold-color);
    font-weight: bold;
}

/* Activation Guide Section */
.page-blog-how-to-use-cwin666-code__step-by-step {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.page-blog-how-to-use-cwin666-code__step-item {
    background-color: var(--card-bg);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    text-align: center;
    border: 1px solid var(--border-color);
}

.page-blog-how-to-use-cwin666-code__step-title {
    font-size: 1.6rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.page-blog-how-to-use-cwin666-code__step-image {
    width: 100%;
    height: auto;
    max-width: 600px;
    margin: 0 auto 20px auto;
    border-radius: 8px;
    display: block;
    object-fit: cover;
}

.page-blog-how-to-use-cwin666-code__step-description {
    color: var(--text-secondary);
    font-size: 1rem;
}

.page-blog-how-to-use-cwin666-code__notes {
    background-color: var(--deep-green);
    padding: 30px;
    border-radius: 10px;
    margin-top: 60px;
    border: 1px solid var(--border-color);
}

.page-blog-how-to-use-cwin666-code__notes-title {
    font-size: 1.5rem;
    color: var(--gold-color);
    margin-bottom: 20px;
    text-align: center;
}

.page-blog-how-to-use-cwin666-code__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.page-blog-how-to-use-cwin666-code__list-item {
    color: var(--text-secondary);
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}

.page-blog-how-to-use-cwin666-code__list-item::before {
    content: '✅';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.page-blog-how-to-use-cwin666-code__link {
    color: var(--glow-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-blog-how-to-use-cwin666-code__link:hover {
    color: #ffffff;
    text-decoration: underline;
}

/* Bonus Types Section */
.page-blog-how-to-use-cwin666-code__bonus-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-blog-how-to-use-cwin666-code__card {
    background-color: var(--card-bg);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    text-align: center;
    border: 1px solid var(--border-color);
    color: var(--text-main);
}

.page-blog-how-to-use-cwin666-code__card-image {
    width: 100%;
    height: auto;
    max-width: 400px;
    margin: 0 auto 20px auto;
    border-radius: 8px;
    display: block;
    object-fit: cover;
}

.page-blog-how-to-use-cwin666-code__card-title {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.page-blog-how-to-use-cwin666-code__card-description {
    color: var(--text-secondary);
    font-size: 1rem;
}

/* Effective Use Section */
.page-blog-how-to-use-cwin666-code__strategy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-blog-how-to-use-cwin666-code__strategy-item {
    background-color: var(--card-bg);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
    color: var(--text-main);
}

.page-blog-how-to-use-cwin666-code__strategy-title {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.page-blog-how-to-use-cwin666-code__strategy-description {
    color: var(--text-secondary);
    font-size: 1rem;
}

/* FAQ Section */
.page-blog-how-to-use-cwin666-code__faq-list {
    margin-top: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-blog-how-to-use-cwin666-code__faq-item {
    background-color: var(--card-bg);
    margin-bottom: 15px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.page-blog-how-to-use-cwin666-code__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    cursor: pointer;
    font-size: 1.2rem;
    color: var(--primary-color);
    font-weight: bold;
    background-color: var(--deep-green);
    border-bottom: 1px solid var(--border-color);
    list-style: none;
}
.page-blog-how-to-use-cwin666-code__faq-question::-webkit-details-marker {
    display: none;
}
.page-blog-how-to-use-cwin666-code__faq-question::marker {
    display: none;
}

.page-blog-how-to-use-cwin666-code__faq-qtext {
    flex-grow: 1;
}

.page-blog-how-to-use-cwin666-code__faq-toggle {
    font-size: 1.5rem;
    line-height: 1;
    margin-left: 15px;
    color: var(--gold-color);
}

.page-blog-how-to-use-cwin666-code__faq-item[open] .page-blog-how-to-use-cwin666-code__faq-toggle {
    content: '−';
}