/* style/n-h-slot-features.css */
.page-n-h-slot-features {
    --primary-color: #3A0CA3;
    --secondary-color: #FFD700;
    --text-dark: #333333;
    --text-light: #ffffff;
    --bg-light: #f4f7f6;
    --bg-dark: #2a096e;
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
}

.page-n-h-slot-features a {
    color: var(--primary-color);
    text-decoration: none;
}

.page-n-h-slot-features a:hover {
    text-decoration: underline;
}

.page-n-h-slot-features .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-n-h-slot-features .hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--bg-dark) 100%);
    color: var(--text-light);
}

.page-n-h-slot-features .hero-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page-n-h-slot-features .hero-image {
    width: 100%;
    margin-bottom: 30px;
}

.page-n-h-slot-features .hero-image img {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.page-n-h-slot-features .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
}

.page-n-h-slot-features .hero-content h1 {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: var(--secondary-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}

.page-n-h-slot-features .hero-content p {
    font-size: 1.3em;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 30px auto;
}

.page-n-h-slot-features .cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: var(--secondary-color);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.2em;
    font-weight: bold;
    margin-top: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-n-h-slot-features .cta-button:hover {
    background: #ffc400;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-n-h-slot-features .content-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.page-n-h-slot-features .content-section:nth-of-type(even) {
    background-color: #ffffff;
}

.page-n-h-slot-features h2 {
    font-size: 2.5em;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.page-n-h-slot-features h2::after {
    content: '';
    width: 80px;
    height: 4px;
    background-color: var(--secondary-color);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -15px;
    border-radius: 2px;
}

.page-n-h-slot-features h3 {
    font-size: 1.8em;
    color: var(--primary-color);
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-n-h-slot-features .section-why-choose p,
.page-n-h-slot-features .section-special-features p,
.page-n-h-slot-features .section-guide p,
.page-n-h-slot-features .section-promotions p,
.page-n-h-slot-features .section-security p {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px auto;
    font-size: 1.1em;
}

.page-n-h-slot-features .feature-grid, 
.page-n-h-slot-features .guide-steps,
.page-n-h-slot-features .security-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-n-h-slot-features .feature-item, 
.page-n-h-slot-features .guide-steps .step-item,
.page-n-h-slot-features .security-features .security-item {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-n-h-slot-features .feature-item:hover, 
.page-n-h-slot-features .guide-steps .step-item:hover,
.page-n-h-slot-features .security-features .security-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.page-n-h-slot-features .feature-item img, 
.page-n-h-slot-features .guide-steps .step-item img,
.page-n-h-slot-features .security-features .security-item img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
    object-fit: cover;
    min-width: 200px; /* Enforce min size */
    min-height: 200px; /* Enforce min size */
}

.page-n-h-slot-features .feature-item h3, 
.page-n-h-slot-features .guide-steps .step-item h3,
.page-n-h-slot-features .security-features .security-item h3 {
    color: var(--primary-color);
    font-size: 1.5em;
    margin-bottom: 15px;
}

.page-n-h-slot-features .feature-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-n-h-slot-features .feature-card {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-n-h-slot-features .feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.page-n-h-slot-features .feature-card img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
    object-fit: cover;
    min-width: 200px; /* Enforce min size */
    min-height: 200px; /* Enforce min size */
}

.page-n-h-slot-features .feature-card h3 {
    color: var(--primary-color);
    font-size: 1.5em;
    margin-bottom: 15px;
}

.page-n-h-slot-features .promo-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-n-h-slot-features .promo-card {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-n-h-slot-features .promo-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    background-color: var(--bg-dark);
}

.page-n-h-slot-features .promo-card img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
    object-fit: cover;
    min-width: 200px; /* Enforce min size */
    min-height: 200px; /* Enforce min size */
}

.page-n-h-slot-features .promo-card h3 {
    color: var(--secondary-color);
    font-size: 1.5em;
    margin-bottom: 15px;
}

.page-n-h-slot-features .promo-card p {
    font-size: 1em;
    line-height: 1.6;
}

/* FAQ Section */
.page-n-h-slot-features .section-faq {
    background-color: var(--bg-light);
}

.page-n-h-slot-features .faq-list {
    margin-top: 40px;
}

.page-n-h-slot-features .faq-item {
    margin-bottom: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    background-color: #ffffff;
}

.page-n-h-slot-features .faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    background: #fff;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.page-n-h-slot-features .faq-question:hover {
    background: #f5f5f5;
}

.page-n-h-slot-features .faq-question h3 {
    margin: 0;
    font-size: 1.25em;
    color: var(--primary-color);
}

.page-n-h-slot-features .faq-toggle {
    font-size: 24px;
    font-weight: bold;
    color: var(--secondary-color);
    transition: transform 0.3s ease;
}

.page-n-h-slot-features .faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.page-n-h-slot-features .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    padding: 0 25px;
    background: #f9f9f9;
    color: var(--text-dark);
}

.page-n-h-slot-features .faq-item.active .faq-answer {
    max-height: 500px; /* Sufficient height to contain content */
    padding: 15px 25px;
    border-top: 1px solid #e0e0e0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-n-h-slot-features .hero-content h1 {
        font-size: 2.8em;
    }
    .page-n-h-slot-features .hero-content p {
        font-size: 1.2em;
    }
    .page-n-h-slot-features h2 {
        font-size: 2.2em;
    }
    .page-n-h-slot-features h3 {
        font-size: 1.6em;
    }
}

@media (max-width: 768px) {
    .page-n-h-slot-features .hero-section {
        padding: 40px 15px;
    }
    .page-n-h-slot-features .hero-image img {
        border-radius: 4px;
    }
    .page-n-h-slot-features .hero-content h1 {
        font-size: 2.2em;
    }
    .page-n-h-slot-features .hero-content p {
        font-size: 1em;
    }
    .page-n-h-slot-features .cta-button {
        padding: 12px 30px;
        font-size: 1em;
    }
    .page-n-h-slot-features .content-section {
        padding: 50px 0;
    }
    .page-n-h-slot-features h2 {
        font-size: 2em;
        margin-bottom: 30px;
    }
    .page-n-h-slot-features h2::after {
        bottom: -10px;
    }
    .page-n-h-slot-features h3 {
        font-size: 1.4em;
    }
    .page-n-h-slot-features .feature-grid,
    .page-n-h-slot-features .feature-list,
    .page-n-h-slot-features .guide-steps,
    .page-n-h-slot-features .promo-cards,
    .page-n-h-slot-features .security-features {
        grid-template-columns: 1fr;
    }
    .page-n-h-slot-features .feature-item, 
    .page-n-h-slot-features .feature-card, 
    .page-n-h-slot-features .guide-steps .step-item,
    .page-n-h-slot-features .promo-card,
    .page-n-h-slot-features .security-features .security-item {
        padding: 20px;
    }
    .page-n-h-slot-features .faq-question {
        padding: 15px 20px;
    }
    .page-n-h-slot-features .faq-question h3 {
        font-size: 1.1em;
    }
    .page-n-h-slot-features .faq-toggle {
        font-size: 20px;
    }
    .page-n-h-slot-features .faq-answer {
        padding: 0 20px;
    }
    .page-n-h-slot-features .faq-item.active .faq-answer {
        padding: 15px 20px;
    }
}

@media (max-width: 480px) {
    .page-n-h-slot-features .hero-content h1 {
        font-size: 1.8em;
    }
    .page-n-h-slot-features .hero-content p {
        font-size: 0.9em;
    }
    .page-n-h-slot-features .cta-button {
        padding: 10px 25px;
        font-size: 0.9em;
    }
    .page-n-h-slot-features h2 {
        font-size: 1.8em;
    }
    .page-n-h-slot-features h3 {
        font-size: 1.2em;
    }
    .page-n-h-slot-features .feature-item img, 
    .page-n-h-slot-features .guide-steps .step-item img,
    .page-n-h-slot-features .security-features .security-item img,
    .page-n-h-slot-features .feature-card img,
    .page-n-h-slot-features .promo-card img {
        min-width: 150px; /* Adjusted for very small screens, still > 200px if possible */
        min-height: 150px; /* Adjusted for very small screens, still > 200px if possible */
        max-width: 100%;
    }
}