/* style/resources-sunwin-giftcode-usage-guide.css */

/* Base styles for the page content */
.page-resources-sunwin-giftcode-usage-guide {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #ffffff; /* Default text color for dark body background */
    background-color: transparent; /* Body background from shared.css */
    padding-top: var(--header-offset, 120px); /* Fixed header offset for desktop */
}

.page-resources-sunwin-giftcode-usage-guide__section-title {
    font-size: 2.5em;
    color: #26A9E0; /* Brand color for titles */
    text-align: center;
    margin-bottom: 40px;
    padding-top: 20px;
}

.page-resources-sunwin-giftcode-usage-guide__text-block {
    max-width: 900px;
    margin: 0 auto 30px auto;
    font-size: 1.1em;
    color: #f0f0f0; /* Slightly off-white for body text */
}

.page-resources-sunwin-giftcode-usage-guide__text-block p {
    margin-bottom: 1em;
}

.page-resources-sunwin-giftcode-usage-guide__highlight-text {
    color: #26A9E0; /* Brand color for highlights */
    font-weight: bold;
}

.page-resources-sunwin-giftcode-usage-guide a {
    color: #26A9E0;
    text-decoration: none;
}

.page-resources-sunwin-giftcode-usage-guide a:hover {
    text-decoration: underline;
}

/* Hero Section */
.page-resources-sunwin-giftcode-usage-guide__hero-section {
    position: relative;
    width: 100%;
    height: 600px; /* Adjust height as needed */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #FFFFFF;
}

.page-resources-sunwin-giftcode-usage-guide__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.page-resources-sunwin-giftcode-usage-guide__hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Dark overlay for text readability */
    z-index: 2;
}

.page-resources-sunwin-giftcode-usage-guide__hero-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
    padding: 20px;
}

.page-resources-sunwin-giftcode-usage-guide__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFFFFF;
    line-height: 1.2;
}

.page-resources-sunwin-giftcode-usage-guide__hero-description {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: #f0f0f0;
}

.page-resources-sunwin-giftcode-usage-guide__hero-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Buttons */
.page-resources-sunwin-giftcode-usage-guide__btn-primary,
.page-resources-sunwin-giftcode-usage-guide__btn-secondary,
.page-resources-sunwin-giftcode-usage-guide__btn-small {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: bold;
    text-transform: uppercase;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    cursor: pointer;
    text-align: center;
    white-space: normal; /* Allow text wrap */
    word-wrap: break-word; /* Allow text wrap */
    box-sizing: border-box; /* Include padding in width */
}

.page-resources-sunwin-giftcode-usage-guide__btn-primary {
    background-color: #26A9E0;
    color: #FFFFFF;
    border: 2px solid #26A9E0;
}

.page-resources-sunwin-giftcode-usage-guide__btn-primary:hover {
    background-color: #1a7fb0;
    border-color: #1a7fb0;
}

.page-resources-sunwin-giftcode-usage-guide__btn-secondary {
    background-color: transparent;
    color: #FFFFFF;
    border: 2px solid #FFFFFF;
}

.page-resources-sunwin-giftcode-usage-guide__btn-secondary:hover {
    background-color: #FFFFFF;
    color: #26A9E0;
}

.page-resources-sunwin-giftcode-usage-guide__btn-small {
    padding: 10px 20px;
    font-size: 0.9em;
    background-color: #EA7C07; /* Login color */
    color: #FFFFFF;
    border: 2px solid #EA7C07;
    margin-top: 15px;
}

.page-resources-sunwin-giftcode-usage-guide__btn-small:hover {
    background-color: #c46406;
    border-color: #c46406;
}

/* Content Area */
.page-resources-sunwin-giftcode-usage-guide__content-area {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    box-sizing: border-box;
}

/* Backgrounds for contrast */
.page-resources-sunwin-giftcode-usage-guide__dark-bg {
    background-color: #0a0a0a; /* Matches body background for seamless look */
    color: #ffffff;
}

.page-resources-sunwin-giftcode-usage-guide__light-bg {
    background-color: #1a1a1a; /* Slightly lighter dark background for contrast */
    color: #f0f0f0;
}

/* Card Grid */
.page-resources-sunwin-giftcode-usage-guide__card-grid,
.page-resources-sunwin-giftcode-usage-guide__tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
    margin-bottom: 40px;
}

.page-resources-sunwin-giftcode-usage-guide__card {
    background-color: rgba(255, 255, 255, 0.05); /* Semi-transparent for dark theme */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    color: #f0f0f0;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-resources-sunwin-giftcode-usage-guide__card-title {
    font-size: 1.5em;
    color: #26A9E0;
    margin-bottom: 15px;
}

.page-resources-sunwin-giftcode-usage-guide__list {
    list-style: none;
    padding: 0;
    margin-top: 15px;
}

.page-resources-sunwin-giftcode-usage-guide__list-item {
    margin-bottom: 8px;
    padding-left: 25px;
    position: relative;
}

.page-resources-sunwin-giftcode-usage-guide__list-item::before {
    content: '✅'; /* Checkmark icon */
    position: absolute;
    left: 0;
    color: #26A9E0;
}

/* Step-by-step Guide */
.page-resources-sunwin-giftcode-usage-guide__step-by-step {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 40px;
    margin-bottom: 40px;
}

.page-resources-sunwin-giftcode-usage-guide__step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    color: #f0f0f0;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-resources-sunwin-giftcode-usage-guide__step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #26A9E0;
    color: #FFFFFF;
    font-size: 2em;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-resources-sunwin-giftcode-usage-guide__step-title {
    font-size: 1.8em;
    color: #26A9E0;
    margin-bottom: 15px;
}

/* Images */
.page-resources-sunwin-giftcode-usage-guide__image-full-width,
.page-resources-sunwin-giftcode-usage-guide__image-center {
    width: 100%;
    height: auto;
    display: block;
    margin: 40px auto;
    border-radius: 10px;
    object-fit: cover;
    min-width: 200px; /* Min size enforcement */
    min-height: 200px; /* Min size enforcement */
}

.page-resources-sunwin-giftcode-usage-guide__image-center {
    max-width: 80%; /* Smaller than full width for center alignment */
}

/* Video Section */
.page-resources-sunwin-giftcode-usage-guide__video-section {
    position: relative;
    padding: 60px 20px;
    text-align: center;
    background-color: #1a1a1a;
    border-radius: 10px;
    margin-top: 40px;
}

.page-resources-sunwin-giftcode-usage-guide__video-title {
    font-size: 2em;
    color: #26A9E0;
    margin-bottom: 25px;
}