
    :root {
    --page-97-win-11-primary-color: #FFD700; /* Gold */
    --page-97-win-11-secondary-color: #00BFFF; /* Deep Sky Blue */
    --page-97-win-11-background-dark: #1a1a2e; /* Dark Blue-Purple */
    --page-97-win-11-background-light: #2c2c54; /* Lighter Blue-Purple */
    --page-97-win-11-text-light: #f0f0f0;
    --page-97-win-11-text-dark: #333;
    --page-97-win-11-border-color: #4a4a70;
}

.page-97-win-11 {
    font-family: 'Arial', sans-serif;
    color: var(--page-97-win-11-text-light);
    background-color: var(--page-97-win-11-background-dark);
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: 10px; /* Small decorative padding, assuming body has main header offset */
}

.page-97-win-11__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 15px;
}

.page-97-win-11__section-title {
    font-size: 2.5em;
    color: var(--page-97-win-11-primary-color);
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.page-97-win-11__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--page-97-win-11-secondary-color);
    border-radius: 2px;
}

.page-97-win-11__section-description {
    text-align: center;
    font-size: 1.1em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: var(--page-97-win-11-text-light);
}

.page-97-win-11__highlight {
    color: var(--page-97-win-11-primary-color);
    font-weight: bold;
}

/* Hero Section */
.page-97-win-11__hero-section {
    position: relative;
    width: 100%;
    height: 60vh; /* Adjust height for mobile first */
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    margin-bottom: 40px;
}

.page-97-win-11__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.page-97-win-11__hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2;
}

.page-97-win-11__hero-content {
    position: relative;
    z-index: 3;
    color: var(--page-97-win-11-text-light);
    padding: 0 15px;
}

.page-97-win-11__hero-title {
    font-size: 2.8em;
    margin-bottom: 15px;
    line-height: 1.2;
    color: var(--page-97-win-11-text-light);
}

.page-97-win-11__hero-subtitle {
    font-size: 1.2em;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-97-win-11__hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.page-97-win-11__button {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    white-space: nowrap;
}

.page-97-win-11__button--primary {
    background-color: var(--page-97-win-11-primary-color);
    color: var(--page-97-win-11-background-dark);
    border: 2px solid var(--page-97-win-11-primary-color);
}

.page-97-win-11__button--primary:hover {
    background-color: #e6c200; /* Darkened primary color */
    transform: translateY(-2px);
}

.page-97-win-11__button--secondary {
    background-color: transparent;
    color: var(--page-97-win-11-primary-color);
    border: 2px solid var(--page-97-win-11-primary-color);
}

.page-97-win-11__button--secondary:hover {
    background-color: var(--page-97-win-11-primary-color);
    color: var(--page-97-win-11-background-dark);
    transform: translateY(-2px);
}

.page-97-win-11__button--large {
    padding: 15px 35px;
    font-size: 1.1em;
}

/* Intro Section */
.page-97-win-11__intro-section {
    background-color: var(--page-97-win-11-background-light);
    padding: 60px 0;
    margin-bottom: 40px;
}

.page-97-win-11__intro-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
}

.page-97-win-11__feature-item {
    background-color: var(--page-97-win-11-background-dark);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    flex: 1 1 300px; /* Allows items to grow/shrink, min-width 300px */
    max-width: 350px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--page-97-win-11-border-color);
    box-sizing: border-box; /* Crucial for responsive lists */
}

.page-97-win-11__feature-icon {
    width: 100%;
    max-width: 250px;
    height: auto;
    margin-bottom: 20px;
    filter: none;
    min-width: 200px; /* Corrected to meet minimum size requirement */
    min-height: 200px; /* Corrected to meet minimum size requirement */
    object-fit: contain;
}

.page-97-win-11__feature-title {
    font-size: 1.5em;
    color: var(--page-97-win-11-primary-color);
    margin-bottom: 15px;
}

.page-97-win-11__feature-text {
    font-size: 1em;
    color: var(--page-97-win-11-text-light);
}

/* Products Section */
.page-97-win-11__products-section {
    padding: 60px 0;
    margin-bottom: 40px;
}

.page-97-win-11__product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.page-97-win-11__product-card {
    background-color: var(--page-97-win-11-background-light);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
    border: 1px solid var(--page-97-win-11-border-color);
    box-sizing: border-box; /* Crucial for responsive lists */
}

.page-97-win-11__product-image {
    width: 100%;
    height: 200px; /* Fixed height for consistency */
    object-fit: cover;
    filter: none;
    max-width: 100%;
    height: auto;
    min-width: 200px;
    min-height: 200px;
}

.page-97-win-11__product-title {
    font-size: 1.6em;
    color: var(--page-97-win-11-primary-color);
    margin: 20px 15px 10px;
}

.page-97-win-11__product-description {
    font-size: 0.95em;
    color: var(--page-97-win-11-text-light);
    padding: 0 15px 20px;
}

/* Promotions Section */
.page-97-win-11__promotions-section {
    background-color: var(--page-97-win-11-background-dark);
    padding: 60px 0;
    margin-bottom: 40px;
}

.page-97-win-11__promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.page-97-win-11__promo-card {
    background-color: var(--page-97-win-11-background-light);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--page-97-win-11-border-color);
    box-sizing: border-box; /* Crucial for responsive lists */
}

.page-97-win-11__promo-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    filter: none;
    max-width: 100%;
    height: auto;
    min-width: 200px;
    min-height: 200px;
}

.page-97-win-11__promo-title {
    font-size: 1.4em;
    color: var(--page-97-win-11-secondary-color);
    margin: 20px 15px 10px;
}

.page-97-win-11__promo-text {
    font-size: 0.95em;
    color: var(--page-97-win-11-text-light);
    padding: 0 15px 20px;
}

/* CTA Section */
.page-97-win-11__cta-section {
    padding: 60px 0;
    text-align: center;
    background: linear-gradient(45deg, var(--page-97-win-11-background-light), var(--page-97-win-11-background-dark));
    margin-bottom: 40px;
}

/* FAQ Section */
.page-97-win-11__faq-section {
    padding: 60px 0;
    background-color: var(--page-97-win-11-background-light);
}

.page-97-win-11__faq-list {
    max-width: 900px;
    margin: 50px auto 0;
    border: 1px solid var(--page-97-win-11-border-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-97-win-11__faq-item {
    border-bottom: 1px solid var(--page-97-win-11-border-color);
}

.page-97-win-11__faq-item:last-child {
    border-bottom: none;
}

.page-97-win-11__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    background-color: var(--page-97-win-11-background-dark);
    cursor: pointer;
    user-select: none;
    transition: background-color 0.3s ease;
}

.page-97-win-11__faq-question:hover {
    background-color: #3a3a60; /* Slightly lighter dark background */
}

.page-97-win-11__faq-question-title {
    font-size: 1.25em;
    color: var(--page-97-win-11-primary-color);
    margin: 0;
    pointer-events: none; /* Prevents title from blocking click event */
}

.page-97-win-11__faq-toggle {
    font-size: 1.8em;
    font-weight: bold;
    color: var(--page-97-win-11-secondary-color);
    transition: transform 0.3s ease;
    pointer-events: none; /* Prevents toggle from blocking click event */
}

.page-97-win-11__faq-item.active .page-97-win-11__faq-toggle {
    transform: rotate(45deg); /* Change + to X or - */
}

.page-97-win-11__faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 25px;
    opacity: 0;
    background-color: #2a2a4e; /* Slightly different background for answer */
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
    color: var(--page-97-win-11-text-light);
}

.page-97-win-11__faq-item.active .page-97-win-11__faq-answer {
    max-height: 2000px !important; /* Sufficiently large to contain content */
    padding: 20px 25px !important;
    opacity: 1;
}

.page-97-win-11__faq-answer p {
    margin: 0;
    padding-bottom: 5px; /* Adjust for paragraph spacing within answer */
}

/* Floating Buttons */
.page-97-win-11__floating-buttons {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 1000;
}

.page-97-win-11__floating-button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: bold;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
    transition: transform 0.2s ease, background-color 0.2s ease;
    white-space: nowrap;
}

.page-97-win-11__floating-button--register {
    background-color: var(--page-97-win-11-primary-color);
    color: var(--page-97-win-11-background-dark);
}

.page-97-win-11__floating-button--register:hover {
    transform: translateY(-3px);
    background-color: #e6c200; /* Darkened primary color */
}

.page-97-win-11__floating-button--login {
    background-color: var(--page-97-win-11-secondary-color);
    color: var(--page-97-win-11-text-light);
}

.page-97-win-11__floating-button--login:hover {
    transform: translateY(-3px);
    background-color: #008cc0; /* Darkened secondary color */
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-97-win-11__hero-section {
        height: 70vh;
        min-height: 350px;
    }

    .page-97-win-11__hero-title {
        font-size: 2em;
    }

    .page-97-win-11__hero-subtitle {
        font-size: 1em;
    }

    .page-97-win-11__hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .page-97-win-11__button {
        width: 100%;
        max-width: 250px;
        margin: 0 auto;
    }

    .page-97-win-11__section-title {
        font-size: 2em;
        margin-bottom: 20px;
    }

    .page-97-win-11__section-description {
        font-size: 0.95em;
        margin-bottom: 30px;
    }

    /* List item mobile responsiveness */
    .page-97-win-11__intro-features,
    .page-97-win-11__product-grid,
    .page-97-win-11__promo-grid {
        grid-template-columns: 1fr; /* Stack items */
        gap: 20px;
    }

    .page-97-win-11__feature-item,
    .page-97-win-11__product-card,
    .page-97-win-11__promo-card {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 20px !important; /* Adjust padding for mobile */
    }

    .page-97-win-11__product-image,
    .page-97-win-11__promo-image,
    .page-97-win-11__feature-icon {
        max-width: 100% !important;
        height: auto !important;
        min-width: 200px !important;
        min-height: 200px !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
    }

    .page-97-win-11__faq-question {
        padding: 15px 20px;
    }

    .page-97-win-11__faq-question-title {
        font-size: 1.1em;
    }

    .page-97-win-11__faq-toggle {
        font-size: 1.5em;
    }

    .page-97-win-11__faq-answer {
        padding: 0 20px;
    }

    .page-97-win-11__faq-item.active .page-97-win-11__faq-answer {
        padding: 15px 20px !important;
    }

    .page-97-win-11__floating-buttons {
        gap: 10px;
        bottom: 15px;
    }

    .page-97-win-11__floating-button {
        padding: 8px 18px;
        font-size: 0.9em;
    }
}

@media (min-width: 769px) {
    .page-97-win-11__hero-section {
        height: 70vh; /* Taller on desktop */
    }
    .page-97-win-11__hero-title {
        font-size: 3.5em;
    }
    .page-97-win-11__hero-subtitle {
        font-size: 1.3em;
    }
}
  