/* style/resources-123win-game-introduction.css */

.page-resources-123win-game-introduction {
    font-family: 'Arial', sans-serif;
    color: #FFFFFF; /* Light text for dark background */
    background-color: #0A2E36; /* Main dark background */
}

.page-resources-123win-game-introduction .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.page-resources-123win-game-introduction .hero-section {
    background: linear-gradient(135deg, #0A2E36 0%, #1A4F5C 100%); /* Dark blue to slightly lighter blue for depth */
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-resources-123win-game-introduction .hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('[GALLERY:bg:abstract,geometric,gaming_pattern]') no-repeat center center/cover;
    opacity: 0.05;
    z-index: 0;
}

.page-resources-123win-game-introduction .hero-title {
    font-size: 3.5em;
    color: #FFD700; /* Gold for emphasis */
    margin-bottom: 20px;
    line-height: 1.2;
    position: relative;
    z-index: 1;
}

.page-resources-123win-game-introduction .hero-subtitle {
    font-size: 1.5em;
    color: #E0E0E0;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

/* General Section Styling */
.page-resources-123win-game-introduction .section-title {
    font-size: 2.8em;
    color: #FFD700;
    text-align: center;
    margin-bottom: 60px;
    padding-top: 60px;
    position: relative;
}

.page-resources-123win-game-introduction .section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    margin: 15px auto 0;
    border-radius: 2px;
}

.page-resources-123win-game-introduction section {
    padding: 80px 0;
    text-align: center;
}

.page-resources-123win-game-introduction section:nth-of-type(even) {
    background-color: #1A4F5C; /* Slightly lighter dark blue for alternating sections */
}

.page-resources-123win-game-introduction p {
    font-size: 1.1em;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #CCCCCC;
}

/* Buttons */
.page-resources-123win-game-introduction .btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    white-space: nowrap;
}

.page-resources-123win-game-introduction .btn-primary {
    background-color: #FFD700; /* Gold */
    color: #0A2E36; /* Dark blue text */
    border: none;
}

.page-resources-123win-game-introduction .btn-primary:hover {
    background-color: #E0B800; /* Darker gold */
    transform: translateY(-3px);
}

.page-resources-123win-game-introduction .btn-secondary {
    background-color: #2E6A78; /* Muted blue */
    color: #FFFFFF;
    border: 2px solid #FFD700;
}

.page-resources-123win-game-introduction .btn-secondary:hover {
    background-color: #FFD700;
    color: #0A2E36;
    transform: translateY(-3px);
}

.page-resources-123win-game-introduction .btn-tertiary {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-resources-123win-game-introduction .btn-tertiary:hover {
    background-color: #FFD700;
    color: #0A2E36;
    transform: translateY(-3px);
}

.page-resources-123win-game-introduction .btn-small {
    padding: 10px 20px;
    font-size: 0.9em;
    border-radius: 5px;
    margin-top: 15px;
}

.page-resources-123win-game-introduction .large-btn {
    padding: 18px 40px;
    font-size: 1.2em;
    margin-top: 30px;
}

/* Introduction Section */
.page-resources-123win-game-introduction .introduction-section p {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-resources-123win-game-introduction .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
    text-align: left;
}

.page-resources-123win-game-introduction .feature-item {
    background-color: #1A4F5C; /* Lighter dark blue */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.page-resources-123win-game-introduction .feature-item:hover {
    transform: translateY(-10px);
}

.page-resources-123win-game-introduction .feature-item h3 {
    color: #FFD700;
    font-size: 1.5em;
    margin-bottom: 15px;
}

.page-resources-123win-game-introduction .feature-item p {
    font-size: 1em;
    color: #E0E0E0;
}

.page-resources-123win-game-introduction .feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: invert(80%) sepia(100%) saturate(2000%) hue-rotate(0deg) brightness(120%) contrast(100%); /* Make icons gold */
}

/* Game Categories Section */
.page-resources-123win-game-introduction .game-categories-section p {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-resources-123win-game-introduction .category-item {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 60px;
    text-align: left;
    background-color: #1A4F5C;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.page-resources-123win-game-introduction .category-item.reverse {
    flex-direction: row-reverse;
}

.page-resources-123win-game-introduction .category-image {
    flex: 1;
    max-width: 45%;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    object-fit: cover;
    height: 300px;
}

.page-resources-123win-game-introduction .category-content {
    flex: 1.2;
}

.page-resources-123win-game-introduction .category-content h3 {
    font-size: 2em;
    color: #FFD700;
    margin-bottom: 20px;
}

.page-resources-123win-game-introduction .category-content p {
    color: #E0E0E0;
    margin-bottom: 25px;
}

/* How to Join Section */
.page-resources-123win-game-introduction .steps-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.page-resources-123win-game-introduction .steps-list li {
    background-color: #1A4F5C;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.page-resources-123win-game-introduction .steps-list li h3 {
    color: #FFD700;
    font-size: 1.6em;
    margin-bottom: 15px;
}

.page-resources-123win-game-introduction .steps-list li p {
    color: #E0E0E0;
    font-size: 1em;
    margin-bottom: 20px;
}

.page-resources-123win-game-introduction .step-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 25px;
    filter: invert(80%) sepia(100%) saturate(2000%) hue-rotate(0deg) brightness(120%) contrast(100%);
}

.page-resources-123win-game-introduction .call-to-action-text {
    font-size: 1.3em;
    font-weight: bold;
    color: #FFD700;
    margin-top: 50px;
    margin-bottom: 30px;
}

/* Promotions Section */
.page-resources-123win-game-introduction .promotion-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.page-resources-123win-game-introduction .promo-card {
    background-color: #0A2E36;
    border: 1px solid #FFD700;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.page-resources-123win-game-introduction .promo-card:hover {
    transform: translateY(-10px);
    background-color: #1A4F5C;
}

.page-resources-123win-game-introduction .promo-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-resources-123win-game-introduction .promo-card h3 {
    color: #FFD700;
    font-size: 1.6em;
    margin-bottom: 15px;
}

.page-resources-123win-game-introduction .promo-card p {
    color: #E0E0E0;
    font-size: 1em;
    margin-bottom: 20px;
}

/* Responsible Gaming Section */
.page-resources-123win-game-introduction .responsible-gaming-section {
    background-color: #0A2E36;
    padding: 80px 0;
    text-align: center;
}

.page-resources-123win-game-introduction .responsible-gaming-section p {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 30px;
}

/* FAQ Section */
.page-resources-123win-game-introduction .faq-section {
    background-color: #1A4F5C;
    padding: 80px 0;
}

.page-resources-123win-game-introduction .faq-item {
    background-color: #0A2E36;
    border: 1px solid #2E6A78;
    border-radius: 10px;
    padding: 25px 30px;
    margin-bottom: 20px;
    text-align: left;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-resources-123win-game-introduction .faq-item h3 {
    color: #FFD700;
    font-size: 1.4em;
    margin-bottom: 15px;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.page-resources-123win-game-introduction .faq-item h3::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5em;
    color: #FFD700;
    transition: transform 0.3s ease;
}

.page-resources-123win-game-introduction .faq-item.active h3::after {
    content: '-';
    transform: translateY(-50%) rotate(180deg);
}

.page-resources-123win-game-introduction .faq-item p {
    color: #E0E0E0;
    font-size: 1em;
    display: none;
    margin-top: 15px;
}

.page-resources-123win-game-introduction .faq-item.active p {
    display: block;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-resources-123win-game-introduction .hero-title {
        font-size: 2.8em;
    }
    .page-resources-123win-game-introduction .hero-subtitle {
        font-size: 1.3em;
    }
    .page-resources-123win-game-introduction .section-title {
        font-size: 2.2em;
    }
    .page-resources-123win-game-introduction .category-item {
        flex-direction: column;
        text-align: center;
    }
    .page-resources-123win-game-introduction .category-item.reverse {
        flex-direction: column;
    }
    .page-resources-123win-game-introduction .category-image {
        max-width: 100%;
        height: 250px;
        margin-bottom: 20px;
    }
    .page-resources-123win-game-introduction .category-content {
        flex: none;
    }
}

@media (max-width: 768px) {
    .page-resources-123win-game-introduction .hero-section {
        padding: 80px 0;
    }
    .page-resources-123win-game-introduction .hero-title {
        font-size: 2.2em;
    }
    .page-resources-123win-game-introduction .hero-subtitle {
        font-size: 1.1em;
    }
    .page-resources-123win-game-introduction .section-title {
        font-size: 1.8em;
        margin-bottom: 40px;
    }
    .page-resources-123win-game-introduction section {
        padding: 60px 0;
    }
    .page-resources-123win-game-introduction .features-grid,
    .page-resources-123win-game-introduction .promotion-cards {
        grid-template-columns: 1fr;
    }
    .page-resources-123win-game-introduction .steps-list {
        grid-template-columns: 1fr;
    }
    .page-resources-123win-game-introduction .btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-resources-123win-game-introduction .large-btn {
        padding: 15px 30px;
        font-size: 1.1em;
    }
}

@media (max-width: 480px) {
    .page-resources-123win-game-introduction .hero-title {
        font-size: 1.8em;
    }
    .page-resources-123win-game-introduction .hero-subtitle {
        font-size: 0.95em;
    }
    .page-resources-123win-game-introduction .section-title {
        font-size: 1.6em;
    }
    .page-resources-123win-game-introduction p {
        font-size: 0.95em;
    }
    .page-resources-123win-game-introduction .category-item {
        padding: 20px;
    }
    .page-resources-123win-game-introduction .category-image {
        height: 200px;
    }
    .page-resources-123win-game-introduction .category-content h3 {
        font-size: 1.6em;
    }
    .page-resources-123win-game-introduction .faq-item h3 {
        font-size: 1.2em;
    }
}