/* style/no-hu.css */

/* Base styles for the page content */
.page-no-hu {
    font-family: 'Arial', sans-serif;
    color: #e5dfd3; /* Light text for dark background */
    background-color: #1A202C; /* Main dark background */
    line-height: 1.6;
}

.page-no-hu-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-no-hu-section {
    padding: 80px 0;
    text-align: center;
}

.page-no-hu-section:nth-of-type(even) {
    background-color: #2a3342; /* Slightly lighter dark background for contrast */
}

.page-no-hu-section-title {
    font-size: 2.8em;
    color: #FFD700; /* Gold accent for titles */
    margin-bottom: 20px;
    font-weight: bold;
    text-transform: uppercase;
}

.page-no-hu-section-subtitle {
    font-size: 1.2em;
    color: #ccc;
    margin-bottom: 40px;
}

/* Hero Section */
.page-no-hu-hero {
    background: linear-gradient(135deg, #1A202C 0%, #3a475a 100%);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    text-align: center;
    border-bottom: 5px solid #FFD700;
}

.page-no-hu-hero-title {
    font-size: 4em;
    color: #FFD700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: 900;
}

.page-no-hu-hero-description {
    font-size: 1.5em;
    color: #fff;
    max-width: 800px;
    margin: 0 auto 40px auto;
    line-height: 1.8;
}

.page-no-hu-hero-actions .page-no-hu-btn {
    margin: 0 15px;
}

/* Buttons */
.page-no-hu-btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1.1em;
    text-align: center;
}

.page-no-hu-btn-primary {
    background-color: #FFD700; /* Gold */
    color: #1A202C;
}

.page-no-hu-btn-primary:hover {
    background-color: #e6c200; /* Darker gold */
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(255, 215, 0, 0.4);
}

.page-no-hu-btn-secondary {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-no-hu-btn-secondary:hover {
    background-color: #FFD700;
    color: #1A202C;
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(255, 215, 0, 0.2);
}

.page-no-hu-btn-small {
    padding: 10px 20px;
    font-size: 0.9em;
}

.page-no-hu-btn-large {
    padding: 18px 40px;
    font-size: 1.2em;
}

/* Grid Layouts */
.page-no-hu-grid-2-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    text-align: left;
}

.page-no-hu-grid-2-cols-reversed {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    text-align: left;
}

.page-no-hu-grid-2-cols-reversed > *:first-child {
    order: 2;
}

.page-no-hu-grid-2-cols-reversed > *:last-child {
    order: 1;
}

.page-no-hu-grid-3-cols {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

/* Image Blocks */
.page-no-hu-image-block {
    text-align: center;
}

.page-no-hu-image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Feature List */
.page-no-hu-feature-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
    font-size: 1.1em;
}

.page-no-hu-feature-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    color: #fff;
}

.page-no-hu-icon-check {
    color: #FFD700;
    margin-right: 15px;
    font-size: 1.3em;
}

.page-no-hu-icon-check::before {
    content: '✔'; /* Unicode checkmark */
}

/* Game Cards */
.page-no-hu-game-card {
    background-color: #2a3342;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.page-no-hu-game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}

.page-no-hu-card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-no-hu-card-title {
    font-size: 1.8em;
    color: #FFD700;
    margin-bottom: 10px;
}

.page-no-hu-card-title a {
    color: #FFD700;
    text-decoration: none;
}

.page-no-hu-card-title a:hover {
    text-decoration: underline;
}

.page-no-hu-card-description {
    color: #ccc;
    font-size: 0.95em;
    margin-bottom: 25px;
}

/* How to Play Section */
.page-no-hu-step-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.page-no-hu-step-list li {
    background-color: #2a3342;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-no-hu-step-list li strong {
    color: #FFD700;
    margin-right: 10px;
    flex-shrink: 0;
}

.page-no-hu-step-list li a {
    color: #FFD700;
    text-decoration: none;
}

.page-no-hu-step-list li a:hover {
    text-decoration: underline;
}

/* Jackpot Info */
.page-no-hu-jackpot-highlight {
    background-color: #3a475a;
    border: 3px solid #FFD700;
    border-radius: 15px;
    padding: 40px;
    margin-top: 50px;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-no-hu-jackpot-image {
    max-width: 250px;
    margin-bottom: 30px;
    animation: pulse 2s infinite ease-in-out;
}

.page-no-hu-jackpot-text {
    font-size: 1.8em;
    color: #fff;
    font-weight: bold;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Promotions Section */
.page-no-hu-promo-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    text-align: left;
}

.page-no-hu-promo-list li {
    background-color: #2a3342;
    padding: 20px;
    border-radius: 8px;
    color: #fff;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-no-hu-icon-gift {
    color: #FFD700;
    margin-right: 15px;
    font-size: 1.5em;
}

.page-no-hu-icon-gift::before {
    content: '🎁'; /* Unicode gift icon */
}

.page-no-hu-promo-cta {
    font-size: 1.3em;
    color: #fff;
    margin-top: 40px;
    margin-bottom: 30px;
}

/* App Section */
.page-no-hu-app-features {
    list-style: none;
    padding: 0;
    margin-top: 30px;
    font-size: 1.1em;
}

.page-no-hu-app-features li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    color: #fff;
}

.page-no-hu-icon-mobile {
    color: #FFD700;
    margin-right: 15px;
    font-size: 1.3em;
}

.page-no-hu-icon-mobile::before {
    content: '📱'; /* Unicode mobile phone icon */
}

/* FAQ Section */
.page-no-hu-faq-item {
    background-color: #2a3342;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 20px;
    text-align: left;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-no-hu-faq-question {
    font-size: 1.4em;
    color: #FFD700;
    margin-bottom: 10px;
}

.page-no-hu-faq-answer {
    color: #ccc;
    font-size: 1em;
}

.page-no-hu-faq-answer a {
    color: #FFD700;
    text-decoration: none;
}

.page-no-hu-faq-answer a:hover {
    text-decoration: underline;
}

/* Call to Action Bottom */
.page-no-hu-cta-bottom {
    background: linear-gradient(45deg, #FFD700, #e6c200);
    padding: 100px 0;
    text-align: center;
    color: #1A202C;
}

.page-no-hu-cta-title {
    font-size: 3.5em;
    color: #1A202C;
    margin-bottom: 25px;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.3);
}

.page-no-hu-cta-description {
    font-size: 1.4em;
    color: #333;
    max-width: 900px;
    margin: 0 auto 50px auto;
}

.page-no-hu-cta-bottom .page-no-hu-btn-primary {
    background-color: #1A202C;
    color: #FFD700;
    border: 2px solid #1A202C;
}

.page-no-hu-cta-bottom .page-no-hu-btn-primary:hover {
    background-color: #3a475a;
    border-color: #3a475a;
    color: #FFD700;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-no-hu-cta-bottom .page-no-hu-btn-secondary {
    background-color: transparent;
    color: #1A202C;
    border: 2px solid #1A202C;
}

.page-no-hu-cta-bottom .page-no-hu-btn-secondary:hover {
    background-color: #1A202C;
    color: #FFD700;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-no-hu-hero-title {
        font-size: 3em;
    }
    .page-no-hu-hero-description {
        font-size: 1.2em;
    }
    .page-no-hu-section-title {
        font-size: 2.2em;
    }
    .page-no-hu-grid-2-cols, .page-no-hu-grid-2-cols-reversed {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .page-no-hu-grid-2-cols-reversed > *:first-child {
        order: 1; /* Reset order for smaller screens */
    }
    .page-no-hu-grid-2-cols-reversed > *:last-child {
        order: 2; /* Reset order for smaller screens */
    }
    .page-no-hu-image-block {
        margin-top: 40px;
    }
    .page-no-hu-feature-list, .page-no-hu-step-list, .page-no-hu-promo-list, .page-no-hu-app-features {
        text-align: center;
        align-items: flex-start; /* Adjust for centered text */
        justify-content: center;
    }
    .page-no-hu-feature-list li, .page-no-hu-step-list li, .page-no-hu-promo-list li, .page-no-hu-app-features li {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .page-no-hu-feature-list li i, .page-no-hu-step-list li strong, .page-no-hu-promo-list li i, .page-no-hu-app-features li i {
        margin-right: 0;
        margin-bottom: 10px;
    }
    .page-no-hu-jackpot-text {
        font-size: 1.4em;
    }
    .page-no-hu-cta-title {
        font-size: 2.5em;
    }
    .page-no-hu-cta-description {
        font-size: 1.1em;
    }
}

@media (max-width: 768px) {
    .page-no-hu-hero {
        padding: 80px 0;
    }
    .page-no-hu-hero-title {
        font-size: 2.5em;
    }
    .page-no-hu-hero-description {
        font-size: 1em;
    }
    .page-no-hu-btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-no-hu-hero-actions {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }
    .page-no-hu-hero-actions .page-no-hu-btn {
        margin: 0;
    }
    .page-no-hu-section {
        padding: 60px 0;
    }
    .page-no-hu-section-title {
        font-size: 1.8em;
    }
    .page-no-hu-section-subtitle {
        font-size: 1em;
    }
    .page-no-hu-grid-3-cols {
        grid-template-columns: 1fr;
    }
    .page-no-hu-game-card {
        padding: 20px;
    }
    .page-no-hu-card-title {
        font-size: 1.5em;
    }
    .page-no-hu-jackpot-image {
        max-width: 180px;
    }
    .page-no-hu-jackpot-text {
        font-size: 1.2em;
    }
    .page-no-hu-cta-title {
        font-size: 2em;
    }
    .page-no-hu-cta-description {
        font-size: 1em;
    }
    .page-no-hu-cta-bottom .page-no-hu-btn-large {
        width: 100%;
        margin-bottom: 15px;
    }
    .page-no-hu-faq-question {
        font-size: 1.2em;
    }
}

@media (max-width: 480px) {
    .page-no-hu-hero {
        padding: 60px 0;
    }
    .page-no-hu-hero-title {
        font-size: 2em;
    }
    .page-no-hu-hero-description {
        font-size: 0.9em;
    }
    .page-no-hu-section {
        padding: 40px 0;
    }
    .page-no-hu-section-title {
        font-size: 1.5em;
    }
    .page-no-hu-btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }
    .page-no-hu-jackpot-image {
        max-width: 150px;
    }
    .page-no-hu-jackpot-text {
        font-size: 1em;
    }
    .page-no-hu-cta-title {
        font-size: 1.8em;
    }
    .page-no-hu-cta-description {
        font-size: 0.9em;
    }
}