/* style/game-strategies-tips-slot-winning-secrets.css */

/* Variables for consistent styling */
:root {
    --page-ax88-primary-color: #1A1A2E; /* Deep Blue */
    --page-ax88-secondary-color: #E6B325; /* Gold */
    --page-ax88-text-light: #F0F0F0; /* Light Gray for text on dark background */
    --page-ax88-text-dark: #333333; /* Dark Gray for text on light background */
    --page-ax88-accent-color: #FF5722; /* Vibrant Orange for highlights */
    --page-ax88-border-radius: 8px;
    --page-ax88-spacing-unit: 16px;
}

.page-game-strategies-tips-slot-winning-secrets {
    font-family: 'Arial', sans-serif;
    color: var(--page-ax88-text-light);
    background-color: var(--page-ax88-primary-color);
    line-height: 1.6;
}

.page-game-strategies-tips-slot-winning-secrets__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--page-ax88-spacing-unit) * 2;
}

/* Hero Section */
.page-game-strategies-tips-slot-winning-secrets__hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--page-ax88-spacing-unit) * 5 0;
    background: linear-gradient(135deg, var(--page-ax88-primary-color) 0%, #3a3a5e 100%); /* Lighter variant of primary for gradient */
    position: relative;
    overflow: hidden;
}

.page-game-strategies-tips-slot-winning-secrets__hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 var(--page-ax88-spacing-unit);
}

.page-game-strategies-tips-slot-winning-secrets__hero-title {
    font-size: 3.5em;
    color: var(--page-ax88-secondary-color);
    margin-bottom: var(--page-ax88-spacing-unit);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.page-game-strategies-tips-slot-winning-secrets__hero-subtitle {
    font-size: 1.4em;
    color: var(--page-ax88-text-light);
    margin-bottom: var(--page-ax88-spacing-unit) * 2;
    opacity: 0.9;
}

.page-game-strategies-tips-slot-winning-secrets__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.page-game-strategies-tips-slot-winning-secrets__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15;
    filter: grayscale(100%);
    transform: scale(1.1);
}

/* General Section Styling */
.page-game-strategies-tips-slot-winning-secrets__section {
    padding: var(--page-ax88-spacing-unit) * 4 0;
    border-bottom: 1px solid rgba(230, 179, 37, 0.2);
}

.page-game-strategies-tips-slot-winning-secrets__section:last-of-type {
    border-bottom: none;
}

.page-game-strategies-tips-slot-winning-secrets__section-title {
    font-size: 2.5em;
    color: var(--page-ax88-secondary-color);
    text-align: center;
    margin-bottom: var(--page-ax88-spacing-unit) * 3;
    position: relative;
}

.page-game-strategies-tips-slot-winning-secrets__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--page-ax88-accent-color);
    margin: var(--page-ax88-spacing-unit) auto 0;
    border-radius: 2px;
}

.page-game-strategies-tips-slot-winning-secrets__text {
    font-size: 1.1em;
    margin-bottom: var(--page-ax88-spacing-unit) * 1.5;
    color: var(--page-ax88-text-light);
    opacity: 0.9;
}

.page-game-strategies-tips-slot-winning-secrets__highlight {
    color: var(--page-ax88-secondary-color);
    font-weight: bold;
}

/* Buttons */
.page-game-strategies-tips-slot-winning-secrets__btn {
    display: inline-block;
    padding: var(--page-ax88-spacing-unit) var(--page-ax88-spacing-unit) * 2;
    border-radius: var(--page-ax88-border-radius);
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
}

.page-game-strategies-tips-slot-winning-secrets__btn--primary {
    background-color: var(--page-ax88-secondary-color);
    color: var(--page-ax88-primary-color);
    border: 2px solid var(--page-ax88-secondary-color);
    margin-right: var(--page-ax88-spacing-unit);
}

.page-game-strategies-tips-slot-winning-secrets__btn--primary:hover {
    background-color: transparent;
    color: var(--page-ax88-secondary-color);
}

.page-game-strategies-tips-slot-winning-secrets__btn--secondary {
    background-color: transparent;
    color: var(--page-ax88-secondary-color);
    border: 2px solid var(--page-ax88-secondary-color);
}

.page-game-strategies-tips-slot-winning-secrets__btn--secondary:hover {
    background-color: var(--page-ax88-secondary-color);
    color: var(--page-ax88-primary-color);
}

.page-game-strategies-tips-slot-winning-secrets__cta-group {
    display: flex;
    justify-content: center;
    gap: var(--page-ax88-spacing-unit);
    margin-top: var(--page-ax88-spacing-unit) * 2;
    flex-wrap: wrap;
}

/* Lists */
.page-game-strategies-tips-slot-winning-secrets__list {
    list-style: none;
    padding-left: 0;
    margin-top: var(--page-ax88-spacing-unit) * 2;
}

.page-game-strategies-tips-slot-winning-secrets__list li {
    background-color: rgba(230, 179, 37, 0.1);
    border-left: 5px solid var(--page-ax88-secondary-color);
    padding: var(--page-ax88-spacing-unit) * 1.5;
    margin-bottom: var(--page-ax88-spacing-unit);
    border-radius: var(--page-ax88-border-radius);
    font-size: 1.05em;
    color: var(--page-ax88-text-light);
}

.page-game-strategies-tips-slot-winning-secrets__list-title {
    color: var(--page-ax88-secondary-color);
    font-size: 1.3em;
    margin-top: 0;
    margin-bottom: var(--page-ax88-spacing-unit) / 2;
}

.page-game-strategies-tips-slot-winning-secrets__list-title + .page-game-strategies-tips-slot-winning-secrets__text {
    margin-top: 0;
}

/* Images */
.page-game-strategies-tips-slot-winning-secrets__image {
    max-width: 100%;
    height: auto;
    border-radius: var(--page-ax88-border-radius);
    margin: var(--page-ax88-spacing-unit) * 2 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    display: block;
}

.page-game-strategies-tips-slot-winning-secrets__image--full-width {
    width: 100%;
}

.page-game-strategies-tips-slot-winning-secrets__image--centered {
    margin-left: auto;
    margin-right: auto;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-game-strategies-tips-slot-winning-secrets__hero-title {
        font-size: 2.5em;
    }

    .page-game-strategies-tips-slot-winning-secrets__hero-subtitle {
        font-size: 1.2em;
    }

    .page-game-strategies-tips-slot-winning-secrets__section-title {
        font-size: 2em;
    }

    .page-game-strategies-tips-slot-winning-secrets__text {
        font-size: 1em;
    }

    .page-game-strategies-tips-slot-winning-secrets__btn {
        width: 100%;
        margin-right: 0;
        margin-bottom: var(--page-ax88-spacing-unit);
    }

    .page-game-strategies-tips-slot-winning-secrets__cta-group {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .page-game-strategies-tips-slot-winning-secrets__hero-title {
        font-size: 2em;
    }

    .page-game-strategies-tips-slot-winning-secrets__hero-subtitle {
        font-size: 1em;
    }

    .page-game-strategies-tips-slot-winning-secrets__section-title {
        font-size: 1.8em;
    }

    .page-game-strategies-tips-slot-winning-secrets__list li {
        padding: var(--page-ax88-spacing-unit);
    }
}