/* style/resources-kuwin-game-strategies.css */
.page-resources-kuwin-game-strategies {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f9f9f9;
}

.page-resources-kuwin-game-strategies__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-resources-kuwin-game-strategies__hero-section {
    background: linear-gradient(135deg, #0A2463 0%, #3a5c9f 100%); /* Dark blue to slightly lighter blue */
    color: #FFFFFF;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-resources-kuwin-game-strategies__hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('[GALLERY:bg:abstract,gaming,digital_pattern]') no-repeat center center/cover;
    opacity: 0.1;
    z-index: 0;
}

.page-resources-kuwin-game-strategies__hero-section .page-resources-kuwin-game-strategies__container {
    position: relative;
    z-index: 1;
}

.page-resources-kuwin-game-strategies__main-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFD700; /* Gold for emphasis */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    font-weight: bold;
}

.page-resources-kuwin-game-strategies__subtitle {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-resources-kuwin-game-strategies__cta-button {
    display: inline-block;
    background-color: #FFD700; /* Gold button */
    color: #0A2463; /* Dark blue text on gold */
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-resources-kuwin-game-strategies__cta-button:hover {
    background-color: #e6c200; /* Slightly darker gold on hover */
    transform: translateY(-3px);
}

.page-resources-kuwin-game-strategies__cta-button--small {
    padding: 10px 20px;
    font-size: 0.9em;
    margin-top: 20px;
}

.page-resources-kuwin-game-strategies__cta-button--secondary {
    background-color: #0A2463;
    color: #FFD700;
    border: 2px solid #FFD700;
    margin-left: 20px;
}

.page-resources-kuwin-game-strategies__cta-button--secondary:hover {
    background-color: #1a3c7c; /* Darker blue on hover */
    border-color: #e6c200;
}

.page-resources-kuwin-game-strategies__section {
    padding: 60px 0;
    background-color: #FFFFFF;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.page-resources-kuwin-game-strategies__section:nth-of-type(odd) {
    background-color: #f0f4f8; /* Light blue-grey for alternating sections */
}

.page-resources-kuwin-game-strategies__section-title {
    font-size: 2.5em;
    color: #0A2463; /* Dark blue for titles */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 10px;
}

.page-resources-kuwin-game-strategies__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFD700; /* Gold accent */
    border-radius: 2px;
}

.page-resources-kuwin-game-strategies__intro p {
    text-align: center;
    font-size: 1.1em;
    margin-bottom: 40px;
    color: #555;
}

.page-resources-kuwin-game-strategies__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.page-resources-kuwin-game-strategies__grid--2-col {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}

.page-resources-kuwin-game-strategies__grid-item {
    background-color: #FFFFFF;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease;
}

.page-resources-kuwin-game-strategies__grid-item:hover {
    transform: translateY(-5px);
}

.page-resources-kuwin-game-strategies__feature-image {
    max-width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-resources-kuwin-game-strategies__item-title {
    font-size: 1.5em;
    color: #0A2463;
    margin-bottom: 15px;
}

.page-resources-kuwin-game-strategies__game-category {
    background-color: #fdfdfd;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    margin-bottom: 40px;
    border-left: 5px solid #FFD700;
}

.page-resources-kuwin-game-strategies__category-title {
    font-size: 2em;
    color: #0A2463;
    margin-bottom: 25px;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
}

.page-resources-kuwin-game-strategies__strategy-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.page-resources-kuwin-game-strategies__strategy-list li {
    background-color: #e8f0f7; /* Light blue background for list items */
    border-left: 4px solid #0A2463;
    padding: 15px 20px;
    margin-bottom: 10px;
    border-radius: 5px;
    font-size: 1.05em;
    color: #222;
}

.page-resources-kuwin-game-strategies__strategy-list li strong {
    color: #0A2463;
}

.page-resources-kuwin-game-strategies__management-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 50px;
}

.page-resources-kuwin-game-strategies__management-image {
    max-width: 100%;
    height: 250px;
    object-fit: contain;
    margin-bottom: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-resources-kuwin-game-strategies__promotions .page-resources-kuwin-game-strategies__promotion-list {
    list-style: disc;
    padding-left: 25px;
    margin-bottom: 30px;
}

.page-resources-kuwin-game-strategies__promotions .page-resources-kuwin-game-strategies__promotion-list li {
    background-color: transparent;
    border-left: none;
    padding: 8px 0;
    margin-bottom: 5px;
    color: #333;
}

.page-resources-kuwin-game-strategies__center-text {
    text-align: center;
}

.page-resources-kuwin-game-strategies__button-group {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.page-resources-kuwin-game-strategies__floating-promo-menu {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #0A2463; /* Dark blue background */
    color: #FFFFFF;
    padding: 15px 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 15px;
    max-width: 350px;
    opacity: 0;
    transform: translateY(100%);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.page-resources-kuwin-game-strategies__floating-promo-menu.show {
    opacity: 1;
    transform: translateY(0);
}

.page-resources-kuwin-game-strategies__close-btn {
    background: none;
    border: none;
    color: #FFD700; /* Gold close button */
    font-size: 1.5em;
    cursor: pointer;
    position: absolute;
    top: 5px;
    right: 10px;
}

.page-resources-kuwin-game-strategies__promo-content {
    flex-grow: 1;
    text-align: left;
    padding-right: 30px;
}

.page-resources-kuwin-game-strategies__promo-text {
    margin: 0;
    font-size: 1.1em;
    font-weight: bold;
    color: #FFD700; /* Gold text for promo */
}

.page-resources-kuwin-game-strategies__promo-cta {
    display: inline-block;
    background-color: #FFD700; /* Gold CTA button */
    color: #0A2463; /* Dark blue text on gold */
    padding: 8px 15px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.95em;
    margin-top: 10px;
    transition: background-color 0.3s ease;
}

.page-resources-kuwin-game-strategies__promo-cta:hover {
    background-color: #e6c200;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-resources-kuwin-game-strategies__main-title {
        font-size: 2.8em;
    }
    .page-resources-kuwin-game-strategies__section-title {
        font-size: 2em;
    }
    .page-resources-kuwin-game-strategies__grid {
        grid-template-columns: 1fr;
    }
    .page-resources-kuwin-game-strategies__grid--2-col {
        grid-template-columns: 1fr;
    }
    .page-resources-kuwin-game-strategies__game-category {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .page-resources-kuwin-game-strategies__hero-section {
        padding: 80px 0;
    }
    .page-resources-kuwin-game-strategies__main-title {
        font-size: 2.2em;
    }
    .page-resources-kuwin-game-strategies__subtitle {
        font-size: 1em;
    }
    .page-resources-kuwin-game-strategies__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-resources-kuwin-game-strategies__cta-button--secondary {
        margin-left: 0;
        margin-top: 15px;
    }
    .page-resources-kuwin-game-strategies__button-group {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .page-resources-kuwin-game-strategies__section {
        padding: 40px 0;
    }
    .page-resources-kuwin-game-strategies__section-title {
        font-size: 1.8em;
    }
    .page-resources-kuwin-game-strategies__floating-promo-menu {
        bottom: 10px;
        right: 10px;
        max-width: calc(100% - 40px);
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    .page-resources-kuwin-game-strategies__promo-content {
        padding-right: 0;
    }
    .page-resources-kuwin-game-strategies__close-btn {
        top: 5px;
        right: 5px;
    }
}

@media (max-width: 480px) {
    .page-resources-kuwin-game-strategies__main-title {
        font-size: 1.8em;
    }
    .page-resources-kuwin-game-strategies__section-title {
        font-size: 1.5em;
    }
    .page-resources-kuwin-game-strategies__cta-button {
        width: 100%;
        box-sizing: border-box;
    }
}