/* style/slots-games-demo-entry.css */
.page-slots-games-demo-entry {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f4f7f6;
}

.page-slots-games-demo-entry__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-slots-games-demo-entry__hero-section {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%); /* Darker blue for better contrast */
    color: #fff;
    text-align: center;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px;
}

.page-slots-games-demo-entry__hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
    animation: page-slots-games-demo-entry__pulse 15s infinite ease-in-out;
    z-index: 1;
}

@keyframes page-slots-games-demo-entry__pulse {
    0% { transform: scale(0.8); opacity: 0.7; }
    50% { transform: scale(1.2); opacity: 0.3; }
    100% { transform: scale(0.8); opacity: 0.7; }
}

.page-slots-games-demo-entry__main-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #ffc107; /* Accent color for main title */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
}

.page-slots-games-demo-entry__subtitle {
    font-size: 1.5em;
    margin-bottom: 40px;
    color: #e0e0e0;
    position: relative;
    z-index: 2;
}

.page-slots-games-demo-entry__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    z-index: 2;
    border: none;
}

.page-slots-games-demo-entry__btn--primary {
    background-color: #ffc107;
    color: #000;
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.4);
}

.page-slots-games-demo-entry__btn--primary:hover {
    background-color: #e0a800;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 193, 7, 0.6);
}

.page-slots-games-demo-entry__btn--secondary {
    background-color: #007bff;
    color: #fff;
    border: 2px solid #007bff;
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
}

.page-slots-games-demo-entry__btn--secondary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 123, 255, 0.5);
}

.page-slots-games-demo-entry__btn--center {
    display: block;
    margin: 40px auto 0 auto;
    max-width: 300px;
}

.page-slots-games-demo-entry__hero-image {
    max-width: 100%;
    height: auto;
    margin-top: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 2;
}

.page-slots-games-demo-entry__intro-section, 
.page-slots-games-demo-entry__games-showcase, 
.page-slots-games-demo-entry__how-to-play, 
.page-slots-games-demo-entry__benefits-section, 
.page-slots-games-demo-entry__faq-section, 
.page-slots-games-demo-entry__cta-section {
    padding: 60px 0;
    background-color: #fff;
    margin-bottom: 20px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.page-slots-games-demo-entry__intro-section {
    margin-top: -30px;
    position: relative;
    z-index: 3;
}

.page-slots-games-demo-entry__section-title {
    font-size: 2.5em;
    color: #007bff;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.page-slots-games-demo-entry__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #ffc107;
    margin: 15px auto 0;
    border-radius: 2px;
}

.page-slots-games-demo-entry__section-description {
    text-align: center;
    font-size: 1.1em;
    color: #555;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-slots-games-demo-entry__grid-2-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.page-slots-games-demo-entry__feature-item {
    text-align: center;
    padding: 30px;
    background-color: #f8f9fa;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-slots-games-demo-entry__feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.page-slots-games-demo-entry__feature-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: drop-shadow(0 5px 5px rgba(0, 123, 255, 0.2));
}

.page-slots-games-demo-entry__feature-item h3 {
    font-size: 1.6em;
    color: #007bff;
    margin-bottom: 15px;
}

.page-slots-games-demo-entry__feature-item p {
    color: #666;
    font-size: 1em;
}

.page-slots-games-demo-entry__game-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-slots-games-demo-entry__game-category-card {
    background-color: #f8f9fa;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-slots-games-demo-entry__game-category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.page-slots-games-demo-entry__category-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 5px solid #ffc107;
}

.page-slots-games-demo-entry__game-category-card h3 {
    font-size: 1.8em;
    color: #007bff;
    margin: 25px 0 15px;
    padding: 0 20px;
}

.page-slots-games-demo-entry__game-category-card p {
    color: #666;
    padding: 0 20px 25px;
    font-size: 1em;
}

.page-slots-games-demo-entry__game-category-card .page-slots-games-demo-entry__btn {
    margin-bottom: 25px;
}

.page-slots-games-demo-entry__callout-text {
    text-align: center;
    font-size: 1.2em;
    color: #007bff;
    font-weight: bold;
    margin-top: 50px;
    padding: 20px;
    background-color: #e6f2ff;
    border-radius: 10px;
    border-left: 5px solid #ffc107;
}

.page-slots-games-demo-entry__how-to-play {
    background-color: #e6f2ff;
}

.page-slots-games-demo-entry__steps-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.page-slots-games-demo-entry__steps-list li {
    background-color: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-slots-games-demo-entry__steps-list li:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-slots-games-demo-entry__step-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
    filter: drop-shadow(0 5px 5px rgba(255, 193, 7, 0.2));
}

.page-slots-games-demo-entry__steps-list h3 {
    font-size: 1.5em;
    color: #007bff;
    margin-bottom: 10px;
}

.page-slots-games-demo-entry__steps-list p {
    color: #555;
    font-size: 0.95em;
}

.page-slots-games-demo-entry__benefits-section {
    background-color: #fff;
}

.page-slots-games-demo-entry__benefits-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.page-slots-games-demo-entry__benefits-list li {
    background-color: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: flex-start;
    gap: 15px;
    transition: background-color 0.3s ease;
}

.page-slots-games-demo-entry__benefits-list li:hover {
    background-color: #e9ecef;
}

.page-slots-games-demo-entry__benefit-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    filter: drop-shadow(0 3px 3px rgba(0, 123, 255, 0.2));
}

.page-slots-games-demo-entry__benefits-list strong {
    color: #007bff;
    font-size: 1.1em;
    display: block;
    margin-bottom: 5px;
}

.page-slots-games-demo-entry__benefits-list li p {
    color: #555;
    margin: 0;
}

.page-slots-games-demo-entry__faq-section {
    background-color: #f8f9fa;
}

.page-slots-games-demo-entry__faq-item {
    background-color: #fff;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border-left: 4px solid #007bff;
}

.page-slots-games-demo-entry__faq-item h3 {
    color: #007bff;
    font-size: 1.4em;
    margin-bottom: 10px;
}

.page-slots-games-demo-entry__faq-item p {
    color: #444;
    font-size: 1em;
}

.page-slots-games-demo-entry__link {
    color: #ffc107;
    text-decoration: none;
    font-weight: bold;
}

.page-slots-games-demo-entry__link:hover {
    text-decoration: underline;
}

.page-slots-games-demo-entry__cta-section {
    text-align: center;
    padding: 80px 0;
    background: linear-gradient(45deg, #007bff, #0056b3);
    color: #fff;
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
}

.page-slots-games-demo-entry__cta-section .page-slots-games-demo-entry__section-title {
    color: #ffc107;
}

.page-slots-games-demo-entry__cta-section .page-slots-games-demo-entry__section-title::after {
    background-color: #ffc107;
}

.page-slots-games-demo-entry__cta-section .page-slots-games-demo-entry__section-description {
    color: #e0e0e0;
}

.page-slots-games-demo-entry__cta-buttons {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-slots-games-demo-entry__main-title {
        font-size: 2.8em;
    }
    .page-slots-games-demo-entry__subtitle {
        font-size: 1.3em;
    }
    .page-slots-games-demo-entry__section-title {
        font-size: 2em;
    }
    .page-slots-games-demo-entry__grid-2-cols,
    .page-slots-games-demo-entry__game-categories,
    .page-slots-games-demo-entry__steps-list,
    .page-slots-games-demo-entry__benefits-list {
        grid-template-columns: 1fr;
    }
    .page-slots-games-demo-entry__cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    .page-slots-games-demo-entry__btn {
        width: 80%;
        max-width: 300px;
    }
}

@media (max-width: 768px) {
    .page-slots-games-demo-entry__hero-section {
        padding: 60px 0;
    }
    .page-slots-games-demo-entry__main-title {
        font-size: 2.2em;
    }
    .page-slots-games-demo-entry__subtitle {
        font-size: 1.1em;
    }
    .page-slots-games-demo-entry__section-title {
        font-size: 1.8em;
    }
    .page-slots-games-demo-entry__intro-section, 
    .page-slots-games-demo-entry__games-showcase, 
    .page-slots-games-demo-entry__how-to-play, 
    .page-slots-games-demo-entry__benefits-section, 
    .page-slots-games-demo-entry__faq-section, 
    .page-slots-games-demo-entry__cta-section {
        padding: 40px 0;
    }
    .page-slots-games-demo-entry__feature-item,
    .page-slots-games-demo-entry__game-category-card,
    .page-slots-games-demo-entry__steps-list li,
    .page-slots-games-demo-entry__benefits-list li {
        padding: 20px;
    }
    .page-slots-games-demo-entry__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .page-slots-games-demo-entry__main-title {
        font-size: 1.8em;
    }
    .page-slots-games-demo-entry__subtitle {
        font-size: 0.9em;
    }
    .page-slots-games-demo-entry__section-title {
        font-size: 1.5em;
    }
    .page-slots-games-demo-entry__btn {
        width: 90%;
        max-width: unset;
    }
    .page-slots-games-demo-entry__hero-image {
        margin-top: 20px;
    }
}