/* style/blog-how-to-get-cwin05-new-link-safely.css */

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

.page-blog-how-to-get-cwin05-new-link-safely {
    background-color: var(--cwin05-background);
    color: var(--cwin05-text-main);
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

.page-blog-how-to-get-cwin05-new-link-safely__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* Hero Section */
.page-blog-how-to-get-cwin05-new-link-safely__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 10px; /* Small top padding as body handles header offset */
    padding-bottom: 60px;
    text-align: center;
    overflow: hidden;
}

.page-blog-how-to-get-cwin05-new-link-safely__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.page-blog-how-to-get-cwin05-new-link-safely__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4); /* Darken image for text readability */
}

.page-blog-how-to-get-cwin05-new-link-safely__hero-content-wrapper {
    position: relative;
    z-index: 1;
    padding-top: 120px; /* Ensure content is below image */
    padding-bottom: 60px;
    width: 100%;
    max-width: 1200px;
}

.page-blog-how-to-get-cwin05-new-link-safely__main-title {
    color: var(--cwin05-text-main);
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-blog-how-to-get-cwin05-new-link-safely__hero-description {
    color: var(--cwin05-text-secondary);
    font-size: clamp(1rem, 2vw, 1.25rem);
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.page-blog-how-to-get-cwin05-new-link-safely__cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.page-blog-how-to-get-cwin05-new-link-safely__btn-primary,
.page-blog-how-to-get-cwin05-new-link-safely__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-sizing: border-box;
    max-width: 100%;
    white-space: normal;
    word-wrap: break-word;
}

.page-blog-how-to-get-cwin05-new-link-safely__btn-primary {
    background: var(--cwin05-button-gradient);
    color: #ffffff;
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(var(--cwin05-primary-color), 0.4);
}

.page-blog-how-to-get-cwin05-new-link-safely__btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(var(--cwin05-primary-color), 0.6);
}

.page-blog-how-to-get-cwin05-new-link-safely__btn-secondary {
    background-color: transparent;
    color: var(--cwin05-glow-color);
    border: 2px solid var(--cwin05-glow-color);
}

.page-blog-how-to-get-cwin05-new-link-safely__btn-secondary:hover {
    background-color: var(--cwin05-glow-color);
    color: var(--cwin05-background);
    transform: translateY(-3px);
}

/* General Content Sections */
.page-blog-how-to-get-cwin05-new-link-safely__content-section {
    padding: 60px 0;
    border-bottom: 1px solid var(--cwin05-divider-color);
}

.page-blog-how-to-get-cwin05-new-link-safely__section-title {
    color: var(--cwin05-gold-color);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: bold;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.page-blog-how-to-get-cwin05-new-link-safely__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: var(--cwin05-glow-color);
    margin: 15px auto 0;
    border-radius: 2px;
}

.page-blog-how-to-get-cwin05-new-link-safely__text-block {
    color: var(--cwin05-text-secondary);
    margin-bottom: 20px;
    font-size: 1.05rem;
    text-align: justify;
}

/* Card Grid */
.page-blog-how-to-get-cwin05-new-link-safely__card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-blog-how-to-get-cwin05-new-link-safely__card {
    background-color: var(--cwin05-card-bg);
    border: 1px solid var(--cwin05-border-color);
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-blog-how-to-get-cwin05-new-link-safely__card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.page-blog-how-to-get-cwin05-new-link-safely__card-image {
    width: 100%;
    height: 200px; /* Fixed height for consistency */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-blog-how-to-get-cwin05-new-link-safely__card-title {
    color: var(--cwin05-text-main);
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.page-blog-how-to-get-cwin05-new-link-safely__card-text {
    color: var(--cwin05-text-secondary);
    font-size: 1rem;
    text-align: justify;
}

/* Identification Section */
.page-blog-how-to-get-cwin05-new-link-safely__identification-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-blog-how-to-get-cwin05-new-link-safely__identification-item {
    background-color: var(--cwin05-deep-green);
    border: 1px solid var(--cwin05-border-color);
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-blog-how-to-get-cwin05-new-link-safely__identification-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-blog-how-to-get-cwin05-new-link-safely__identification-title {
    color: var(--cwin05-gold-color);
    font-size: 1.4rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.page-blog-how-to-get-cwin05-new-link-safely__identification-text {
    color: var(--cwin05-text-secondary);
    font-size: 1rem;
    text-align: justify;
}

/* Guide Section */
.page-blog-how-to-get-cwin05-new-link-safely__guide-steps {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.page-blog-how-to-get-cwin05-new-link-safely__guide-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.page-blog-how-to-get-cwin05-new-link-safely__step-number {
    background: var(--cwin05-button-gradient);
    color: #ffffff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-blog-how-to-get-cwin05-new-link-safely__guide-title {
    color: var(--cwin05-text-main);
    font-size: 1.6rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.page-blog-how-to-get-cwin05-new-link-safely__guide-text {
    color: var(--cwin05-text-secondary);
    font-size: 1.05rem;
    margin-bottom: 20px;
    max-width: 800px;
    text-align: justify;
}

.page-blog-how-to-get-cwin05-new-link-safely__guide-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

/* Benefits List */
.page-blog-how-to-get-cwin05-new-link-safely__benefit-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.page-blog-how-to-get-cwin05-new-link-safely__benefit-item {
    background-color: var(--cwin05-card-bg);
    border: 1px solid var(--cwin05-border-color);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    color: var(--cwin05-text-secondary);
    font-size: 1.05rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-blog-how-to-get-cwin05-new-link-safely__benefit-item strong {
    color: var(--cwin05-text-main);
    margin-right: 10px;
}

.page-blog-how-to-get-cwin05-new-link-safely__benefit-item::before {
    content: '✅';
    margin-right: 15px;
    font-size: 1.2rem;
    line-height: 1;
    color: var(--cwin05-glow-color);
}

/* Troubleshooting Section */
.page-blog-how-to-get-cwin05-new-link-safely__troubleshooting-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.page-blog-how-to-get-cwin05-new-link-safely__troubleshooting-item {
    background-color: var(--cwin05-card-bg);
    border: 1px solid var(--cwin05-border-color);
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-blog-how-to-get-cwin05-new-link-safely__troubleshooting-title {
    color: var(--cwin05-gold-color);
    font-size: 1.4rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.page-blog-how-to-get-cwin05-new-link-safely__troubleshooting-text {
    color: var(--cwin05-text-secondary);
    font-size: 1rem;
    text-align: justify;
}

/* FAQ Section */
.page-blog-how-to-get-cwin05-new-link-safely__faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.page-blog-how-to-get-cwin05-new-link-safely__faq-item {
    background-color: var(--cwin05-card-bg);
    border: 1px solid var(--cwin05-border-color);
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-blog-how-to-get-cwin05-new-link-safely__faq-item details > summary {
    list-style: none;
}

.page-blog-how-to-get-cwin05-new-link-safely__faq-item details::-webkit-details-marker {
    display: none;
}

.page-blog-how-to-get-cwin05-new-link-safely__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    cursor: pointer;
    font-weight: bold;
    color: var(--cwin05-text-main);
    font-size: 1.1rem;
    background-color: var(--cwin05-deep-green);
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.page-blog-how-to-get-cwin05-new-link-safely__faq-question:hover {
    background-color: var(--cwin05-primary-color);
}

.page-blog-how-to-get-cwin05-new-link-safely__faq-toggle {
    font-size: 1.5rem;
    line-height: 1;
    color: var(--cwin05-glow-color);
    margin-left: 15px;
}

.page-blog-how-to-get-cwin05-new-link-safely__faq-answer {
    padding: 15px 25px 20px;
    color: var(--cwin05-text-secondary);
    font-size: 1rem;
    border-top: 1px solid var(--cwin05-divider-color);
    text-align: justify;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .page-blog-how-to-get-cwin05-new-link-safely__hero-content-wrapper {
        padding-top: 80px;
        padding-bottom: 40px;
    }
    .page-blog-how-to-get-cwin05-new-link-safely__content-section {
        padding: 40px 0;
    }
    .page-blog-how-to-get-cwin05-new-link-safely__section-title {
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .page-blog-how-to-get-cwin05-new-link-safely {
        font-size: 16px;
        line-height: 1.6;
    }
    .page-blog-how-to-get-cwin05-new-link-safely__hero-content-wrapper {
        padding-top: 60px;
        padding-bottom: 30px;
    }
    .page-blog-how-to-get-cwin05-new-link-safely__main-title {
        font-size: clamp(1.8rem, 7vw, 2.5rem);
    }
    .page-blog-how-to-get-cwin05-new-link-safely__hero-description {
        font-size: clamp(0.9rem, 3.5vw, 1.1rem);
    }
    .page-blog-how-to-get-cwin05-new-link-safely__cta-buttons {
        flex-direction: column;
        gap: 15px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        padding: 0 15px;
    }
    .page-blog-how-to-get-cwin05-new-link-safely__btn-primary,
    .page-blog-how-to-get-cwin05-new-link-safely__btn-secondary {
        width: 100% !important;
        max-width: 100% !important;
        padding: 12px 20px;
        font-size: 1rem;
    }
    .page-blog-how-to-get-cwin05-new-link-safely__container {
        padding: 0 15px;
    }
    .page-blog-how-to-get-cwin05-new-link-safely__content-section {
        padding: 30px 0;
    }
    .page-blog-how-to-get-cwin05-new-link-safely__section-title {
        font-size: clamp(1.5rem, 6vw, 2rem);
        margin-bottom: 25px;
    }
    .page-blog-how-to-get-cwin05-new-link-safely__card-grid,
    .page-blog-how-to-get-cwin05-new-link-safely__identification-grid,
    .page-blog-how-to-get-cwin05-new-link-safely__troubleshooting-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .page-blog-how-to-get-cwin05-new-link-safely__card,
    .page-blog-how-to-get-cwin05-new-link-safely__identification-item,
    .page-blog-how-to-get-cwin05-new-link-safely__troubleshooting-item {
        padding: 20px;
    }
    .page-blog-how-to-get-cwin05-new-link-safely__card-image,
    .page-blog-how-to-get-cwin05-new-link-safely__identification-image {
        height: 180px;
    }
    .page-blog-how-to-get-cwin05-new-link-safely__guide-item {
        padding: 0 15px;
    }
    .page-blog-how-to-get-cwin05-new-link-safely__guide-image {
        width: 100%;
        max-width: 100%;
    }
    .page-blog-how-to-get-cwin05-new-link-safely__faq-question {
        padding: 15px 20px;
        font-size: 1rem;
    }
    .page-blog-how-to-get-cwin05-new-link-safely__faq-answer {
        padding: 10px 20px 15px;
    }
    
    /* Image responsive styles */
    .page-blog-how-to-get-cwin05-new-link-safely img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-blog-how-to-get-cwin05-new-link-safely__hero-image {
        max-width: 100% !important;
        width: 100% !important;
        height: 100% !important; /* Keep height 100% for hero section */
    }
    .page-blog-how-to-get-cwin05-new-link-safely__section,
    .page-blog-how-to-get-cwin05-new-link-safely__card,
    .page-blog-how-to-get-cwin05-new-link-safely__container,
    .page-blog-how-to-get-cwin05-new-link-safely__hero-section,
    .page-blog-how-to-get-cwin05-new-link-safely__hero-image-wrapper,
    .page-blog-how-to-get-cwin05-new-link-safely__hero-content-wrapper {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }
    .page-blog-how-to-get-cwin05-new-link-safely__cta-buttons {
        flex-wrap: wrap !important;
        gap: 10px;
        flex-direction: column;
    }
}