/* style/game-introduction-slots-detail.css */
.page-game-introduction-slots-detail {
    font-family: 'Arial', sans-serif;
    color: #f0f0f0; /* Light text on dark background */
    background-color: #0d123d; /* Darker background based on main color */
}

.page-game-introduction-slots-detail__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-game-introduction-slots-detail__hero {
    background: linear-gradient(135deg, #1A237E 0%, #0d123d 100%);
    padding: 80px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    color: #ffffff;
}

.page-game-introduction-slots-detail__hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.page-game-introduction-slots-detail__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: bold;
    color: #FFC107; /* Highlight with secondary color */
}

.page-game-introduction-slots-detail__hero-title .highlight {
    color: #ffffff;
}

.page-game-introduction-slots-detail__hero-description {
    font-size: 1.3em;
    margin-bottom: 40px;
    color: #e0e0e0;
}

.page-game-introduction-slots-detail__hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.page-game-introduction-slots-detail__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-game-introduction-slots-detail__btn--primary {
    background-color: #FFC107;
    color: #1A237E;
    border: 2px solid #FFC107;
}

.page-game-introduction-slots-detail__btn--primary:hover {
    background-color: #ffda6a;
    transform: translateY(-3px);
}

.page-game-introduction-slots-detail__btn--secondary {
    background-color: transparent;
    color: #FFC107;
    border: 2px solid #FFC107;
}

.page-game-introduction-slots-detail__btn--secondary:hover {
    background-color: #FFC107;
    color: #1A237E;
    transform: translateY(-3px);
}

.page-game-introduction-slots-detail__btn--small {
    padding: 10px 20px;
    font-size: 0.9em;
}

.page-game-introduction-slots-detail__btn--large {
    padding: 18px 40px;
    font-size: 1.2em;
}

.page-game-introduction-slots-detail__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.2;
    overflow: hidden;
}

.page-game-introduction-slots-detail__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.7);
}

.page-game-introduction-slots-detail__section {
    padding: 60px 0;
    background-color: #1a237e; /* Primary color for sections */
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-game-introduction-slots-detail__section:nth-of-type(even) {
    background-color: #0d123d; /* Alternate darker background */
}

.page-game-introduction-slots-detail__section-title {
    font-size: 2.5em;
    color: #FFC107;
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
    position: relative;
    padding-bottom: 15px;
}

.page-game-introduction-slots-detail__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFC107;
    border-radius: 2px;
}

.page-game-introduction-slots-detail__section-title .highlight {
    color: #ffffff;
}

.page-game-introduction-slots-detail__text-content {
    font-size: 1.1em;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #e0e0e0;
    text-align: justify;
}

.page-game-introduction-slots-detail__text-content strong {
    color: #FFC107;
}

.page-game-introduction-slots-detail__features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-game-introduction-slots-detail__feature-item {
    background-color: #2a348e; /* Slightly lighter primary */
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.page-game-introduction-slots-detail__feature-item:hover {
    transform: translateY(-10px);
}

.page-game-introduction-slots-detail__feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px #FFC107);
}

.page-game-introduction-slots-detail__feature-title {
    font-size: 1.5em;
    color: #FFC107;
    margin-bottom: 15px;
}

.page-game-introduction-slots-detail__feature-description {
    font-size: 1em;
    color: #c0c0c0;
}

.page-game-introduction-slots-detail__game-type-card {
    display: flex;
    align-items: center;
    background-color: #2a348e;
    border-radius: 10px;
    margin-bottom: 25px;
    padding: 25px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.page-game-introduction-slots-detail__game-type-card:hover {
    transform: translateY(-5px);
}

.page-game-introduction-slots-detail__game-type-image {
    width: 150px;
    height: 100px;
    object-fit: contain;
    border-radius: 8px;
    margin-right: 25px;
    flex-shrink: 0;
}

.page-game-introduction-slots-detail__game-type-title {
    font-size: 1.8em;
    color: #FFC107;
    margin-bottom: 10px;
}

.page-game-introduction-slots-detail__game-type-description {
    font-size: 1.05em;
    line-height: 1.7;
    color: #c0c0c0;
}

.page-game-introduction-slots-detail__step-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.page-game-introduction-slots-detail__step-item {
    background-color: #2a348e;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-game-introduction-slots-detail__step-title {
    font-size: 1.6em;
    color: #FFC107;
    margin-bottom: 10px;
}

.page-game-introduction-slots-detail__step-item p {
    font-size: 1.05em;
    line-height: 1.7;
    color: #e0e0e0;
}

.page-game-introduction-slots-detail__link {
    color: #FFC107;
    text-decoration: underline;
}

.page-game-introduction-slots-detail__link:hover {
    color: #ffda6a;
}

.page-game-introduction-slots-detail__cta-wrapper {
    text-align: center;
    margin-top: 50px;
}

.page-game-introduction-slots-detail__tip-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.page-game-introduction-slots-detail__tip-item {
    background-color: #2a348e;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-game-introduction-slots-detail__tip-title {
    font-size: 1.6em;
    color: #FFC107;
    margin-bottom: 10px;
}

.page-game-introduction-slots-detail__tip-item p {
    font-size: 1.05em;
    line-height: 1.7;
    color: #e0e0e0;
}

.page-game-introduction-slots-detail__slot-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-game-introduction-slots-detail__slot-card {
    background-color: #2a348e;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
    transition: transform 0.3s ease;
}

.page-game-introduction-slots-detail__slot-card:hover {
    transform: translateY(-8px);
}

.page-game-introduction-slots-detail__slot-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-bottom: 3px solid #FFC107;
}

.page-game-introduction-slots-detail__slot-title {
    font-size: 1.8em;
    color: #FFC107;
    margin: 20px 0 10px;
}

.page-game-introduction-slots-detail__slot-provider {
    font-size: 0.9em;
    color: #a0a0a0;
    margin-bottom: 15px;
}

.page-game-introduction-slots-detail__slot-desc {
    font-size: 1em;
    color: #c0c0c0;
    padding: 0 20px 20px;
    line-height: 1.6;
}

.page-game-introduction-slots-detail__accordion {
    margin-top: 40px;
}

.page-game-introduction-slots-detail__accordion-item {
    background-color: #2a348e;
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-game-introduction-slots-detail__accordion-header {
    background-color: #3b479e; /* Slightly lighter than item background */
    color: #FFC107;
    padding: 20px 25px;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    font-size: 1.3em;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.page-game-introduction-slots-detail__accordion-header::after {
    content: '+';
    font-size: 1.5em;
    transition: transform 0.3s ease;
}

.page-game-introduction-slots-detail__accordion-header.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-game-introduction-slots-detail__accordion-header:hover {
    background-color: #4c57ad;
}

.page-game-introduction-slots-detail__accordion-content {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-game-introduction-slots-detail__accordion-content p {
    font-size: 1.05em;
    line-height: 1.7;
    color: #e0e0e0;
    padding-bottom: 20px;
}

.page-game-introduction-slots-detail__cta-final {
    background: linear-gradient(135deg, #1A237E, #0d123d);
    text-align: center;
    padding: 80px 0;
}

.page-game-introduction-slots-detail__cta-content {
    max-width: 900px;
}

.page-game-introduction-slots-detail__cta-title {
    font-size: 3em;
    color: #FFC107;
    margin-bottom: 25px;
    font-weight: bold;
}

.page-game-introduction-slots-detail__cta-title .highlight {
    color: #ffffff;
}

.page-game-introduction-slots-detail__cta-description {
    font-size: 1.3em;
    color: #e0e0e0;
    margin-bottom: 40px;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-game-introduction-slots-detail__hero-title {
        font-size: 3em;
    }
    .page-game-introduction-slots-detail__hero-description {
        font-size: 1.2em;
    }
    .page-game-introduction-slots-detail__section-title {
        font-size: 2em;
    }
    .page-game-introduction-slots-detail__game-type-card {
        flex-direction: column;
        text-align: center;
    }
    .page-game-introduction-slots-detail__game-type-image {
        margin-right: 0;
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .page-game-introduction-slots-detail__hero {
        padding: 60px 0;
    }
    .page-game-introduction-slots-detail__hero-title {
        font-size: 2.5em;
    }
    .page-game-introduction-slots-detail__hero-description {
        font-size: 1.1em;
    }
    .page-game-introduction-slots-detail__hero-actions {
        flex-direction: column;
        gap: 15px;
    }
    .page-game-introduction-slots-detail__btn {
        width: 80%;
        max-width: 300px;
    }
    .page-game-introduction-slots-detail__section {
        padding: 40px 0;
    }
    .page-game-introduction-slots-detail__section-title {
        font-size: 1.8em;
    }
    .page-game-introduction-slots-detail__features-grid,
    .page-game-introduction-slots-detail__slot-grid,
    .page-game-introduction-slots-detail__tip-list {
        grid-template-columns: 1fr;
    }
    .page-game-introduction-slots-detail__accordion-header {
        font-size: 1.1em;
        padding: 15px 20px;
    }
    .page-game-introduction-slots-detail__accordion-content p {
        font-size: 0.95em;
    }
    .page-game-introduction-slots-detail__cta-title {
        font-size: 2.2em;
    }
    .page-game-introduction-slots-detail__cta-description {
        font-size: 1.1em;
    }
}

@media (max-width: 480px) {
    .page-game-introduction-slots-detail__hero-title {
        font-size: 2em;
    }
    .page-game-introduction-slots-detail__hero-description {
        font-size: 1em;
    }
    .page-game-introduction-slots-detail__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-game-introduction-slots-detail__section-title {
        font-size: 1.6em;
    }
    .page-game-introduction-slots-detail__text-content,
    .page-game-introduction-slots-detail__feature-description,
    .page-game-introduction-slots-detail__game-type-description,
    .page-game-introduction-slots-detail__step-item p,
    .page-game-introduction-slots-detail__tip-item p,
    .page-game-introduction-slots-detail__slot-provider,
    .page-game-introduction-slots-detail__slot-desc {
        font-size: 0.95em;
    }
    .page-game-introduction-slots-detail__cta-title {
        font-size: 1.8em;
    }
    .page-game-introduction-slots-detail__cta-description {
        font-size: 1em;
    }
}