:root {
    --primary-color: #FFD700; /* Gold */
    --secondary-color: #000080; /* Dark Blue */
    --text-dark: #333333;
    --text-light: #ffffff;
    --background-light: #f4f7f6;
    --background-dark: #0a192f;
    --border-color: #e0e0e0;
}

.page-new-user-guide {
    font-family: 'Arial', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
}

.page-new-user-guide .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-new-user-guide section {
    padding: 60px 0;
    margin-bottom: 20px;
}

.page-new-user-guide section:nth-of-type(even) {
    background-color: var(--background-light);
}

.page-new-user-guide h1, .page-new-user-guide h2, .page-new-user-guide h3 {
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-weight: bold;
}

.page-new-user-guide h1 {
    font-size: 3.2em;
    text-align: center;
    color: var(--primary-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-new-user-guide h2 {
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 40px;
}

.page-new-user-guide h3 {
    font-size: 1.8em;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.page-new-user-guide p {
    font-size: 1.1em;
    margin-bottom: 15px;
}

.page-new-user-guide ul, .page-new-user-guide ol {
    list-style-type: disc;
    margin-left: 25px;
    margin-bottom: 15px;
    font-size: 1.1em;
}

.page-new-user-guide ul li, .page-new-user-guide ol li {
    margin-bottom: 8px;
}

.page-new-user-guide .cta-button {
    display: inline-block;
    padding: 15px 30px;
    background: var(--primary-color);
    color: var(--secondary-color);
    text-decoration: none;
    border-radius: 8px;
    font-size: 1.2em;
    font-weight: bold;
    margin-top: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    border: 2px solid var(--primary-color);
}

.page-new-user-guide .cta-button:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    border-color: var(--primary-color);
}

.page-new-user-guide .secondary-button {
    background: var(--secondary-color);
    color: var(--primary-color);
    border-color: var(--secondary-color);
}

.page-new-user-guide .secondary-button:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
    border-color: var(--primary-color);
}

.page-new-user-guide .link-text {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-new-user-guide .link-text:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

/* Hero Section */
.page-new-user-guide .hero-section {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #1a2a4c 100%);
    color: var(--text-light);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-new-user-guide .hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at top left, rgba(255, 215, 0, 0.2) 0%, transparent 70%);
    transform: rotate(30deg);
    opacity: 0.8;
}

.page-new-user-guide .hero-section::after {
    content: '';
    position: absolute;
    bottom: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at bottom right, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    transform: rotate(-30deg);
    opacity: 0.6;
}

.page-new-user-guide .hero-container {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-new-user-guide .hero-content h1 {
    font-size: 3.8em;
    color: var(--primary-color);
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-new-user-guide .hero-content p {
    font-size: 1.3em;
    max-width: 700px;
    margin: 0 auto 30px auto;
    color: var(--text-light);
}

/* Section Intro */
.page-new-user-guide .section-intro .intro-grid {
    display: flex;
    gap: 40px;
    align-items: center;
}

.page-new-user-guide .section-intro .intro-text {
    flex: 2;
}

.page-new-user-guide .section-intro .intro-image {
    flex: 1;
    text-align: center;
}

.page-new-user-guide .section-intro .intro-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* Section Registration */
.page-new-user-guide .section-registration .step-by-step-guide {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
    margin-bottom: 40px;
}

.page-new-user-guide .section-registration .step-item {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-new-user-guide .section-registration .step-item img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
    object-fit: cover;
}

.page-new-user-guide .section-registration .step-item h3 {
    color: var(--primary-color);
    font-size: 1.5em;
    margin-top: 0;
}

.page-new-user-guide .registration-notes {
    background-color: #fff8e1; /* Light yellow background for notes */
    border-left: 5px solid var(--primary-color);
    padding: 25px;
    border-radius: 8px;
    margin-top: 40px;
    text-align: center;
}

.page-new-user-guide .registration-notes h3 {
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.page-new-user-guide .registration-notes ul {
    list-style-type: none;
    margin-left: 0;
    padding-left: 0;
    text-align: left;
}

.page-new-user-guide .registration-notes ul li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 30px;
}

.page-new-user-guide .registration-notes ul li::before {
    content: '✓';
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.2em;
}

/* Section Deposit */
.page-new-user-guide .section-deposit .deposit-methods {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    margin-top: 30px;
    text-align: center;
}

.page-new-user-guide .section-deposit .deposit-methods h3 {
    color: var(--primary-color);
    font-size: 1.6em;
    margin-bottom: 20px;
}

.page-new-user-guide .section-deposit .deposit-methods ul, .page-new-user-guide .section-deposit .deposit-methods ol {
    text-align: left;
    max-width: 700px;
    margin: 0 auto 30px auto;
}

/* Section Games */
.page-new-user-guide .section-games .game-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-new-user-guide .section-games .game-card {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-new-user-guide .section-games .game-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.page-new-user-guide .section-games .game-card img {
    width: 100%;
    height: 250px; /* Fixed height for consistency */
    object-fit: cover;
    border-bottom: 1px solid var(--border-color);
}

.page-new-user-guide .section-games .game-card h3 {
    color: var(--secondary-color);
    font-size: 1.5em;
    padding: 15px 15px 5px 15px;
    margin-bottom: 0;
}

.page-new-user-guide .section-games .game-card p {
    padding: 0 15px 15px 15px;
    font-size: 0.95em;
}

.page-new-user-guide .section-games .game-card .link-text {
    display: block;
    padding: 10px 15px 20px 15px;
    font-size: 1em;
}

/* Section App Download */
.page-new-user-guide .section-app-download {
    background-color: var(--secondary-color);
    color: var(--text-light);
    text-align: center;
}

.page-new-user-guide .section-app-download h2 {
    color: var(--primary-color);
}

.page-new-user-guide .section-app-download p {
    font-size: 1.1em;
    margin-bottom: 30px;
}

.page-new-user-guide .app-download-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.page-new-user-guide .app-download-content .app-benefits {
    text-align: left;
    max-width: 500px;
}

.page-new-user-guide .app-download-content .app-benefits h3 {
    color: var(--primary-color);
    font-size: 1.8em;
}

.page-new-user-guide .app-download-content .app-benefits ul {
    list-style-type: none;
    padding-left: 0;
    margin-left: 0;
}

.page-new-user-guide .app-download-content .app-benefits ul li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
    font-size: 1.1em;
}

.page-new-user-guide .app-download-content .app-benefits ul li::before {
    content: '★';
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.2em;
}

.page-new-user-guide .app-download-content .app-qr-codes img {
    width: 300px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-new-user-guide .app-download-content .app-qr-codes p {
    margin-top: 15px;
    font-size: 1em;
}

/* Section Promotions */
.page-new-user-guide .section-promotions .promotion-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-new-user-guide .section-promotions .promo-item {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-new-user-guide .section-promotions .promo-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.page-new-user-guide .section-promotions .promo-item h3 {
    color: var(--primary-color);
    font-size: 1.6em;
    margin-bottom: 15px;
}

.page-new-user-guide .section-promotions .promo-item p {
    font-size: 1em;
    margin-bottom: 20px;
}

/* Section Security Support */
.page-new-user-guide .section-security-support {
    background-color: var(--background-light);
}

.page-new-user-guide .security-support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-new-user-guide .security-support-grid .security-item {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.page-new-user-guide .security-support-grid .security-item h3 {
    color: var(--secondary-color);
    font-size: 1.6em;
    margin-bottom: 15px;
}

/* FAQ Section */
.page-new-user-guide .section-faq {
    padding-bottom: 80px;
}

.page-new-user-guide .faq-list {
    margin-top: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-new-user-guide .faq-item {
    margin-bottom: 15px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
}

.page-new-user-guide .faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    background: #ffffff;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.page-new-user-guide .faq-question:hover {
    background: #f5f5f5;
}

.page-new-user-guide .faq-question h3 {
    margin: 0;
    font-size: 1.25em;
    color: var(--secondary-color);
}

.page-new-user-guide .faq-toggle {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.page-new-user-guide .faq-item.active .faq-toggle {
    transform: rotate(45deg);
    color: var(--secondary-color);
}

.page-new-user-guide .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-new-user-guide .faq-item.active .faq-answer {
    max-height: 500px; /* Sufficient height to contain content */
    padding: 20px 25px;
}

.page-new-user-guide .faq-answer p {
    margin-bottom: 0;
}

/* Section Conclusion */
.page-new-user-guide .section-conclusion {
    text-align: center;
    padding-top: 40px;
    padding-bottom: 80px;
    background-color: var(--secondary-color);
    color: var(--text-light);
}

.page-new-user-guide .section-conclusion h2 {
    color: var(--primary-color);
}

.page-new-user-guide .section-conclusion p {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 30px auto;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-new-user-guide .hero-content h1 {
        font-size: 3em;
    }
    .page-new-user-guide .hero-content p {
        font-size: 1.1em;
    }
    .page-new-user-guide h2 {
        font-size: 2em;
    }
    .page-new-user-guide h3 {
        font-size: 1.6em;
    }
    .page-new-user-guide .section-intro .intro-grid {
        flex-direction: column;
    }
    .page-new-user-guide .section-intro .intro-image {
        margin-top: 30px;
    }
    .page-new-user-guide .app-download-content {
        flex-direction: column;
        gap: 30px;
    }
    .page-new-user-guide .app-download-content .app-benefits {
        text-align: center;
    }
    .page-new-user-guide .app-download-content .app-benefits ul {
        text-align: left;
        padding-left: 25px;
    }
}

@media (max-width: 768px) {
    .page-new-user-guide section {
        padding: 40px 0;
    }
    .page-new-user-guide .hero-content h1 {
        font-size: 2.5em;
    }
    .page-new-user-guide .hero-content p {
        font-size: 1em;
    }
    .page-new-user-guide h2 {
        font-size: 1.8em;
    }
    .page-new-user-guide h3 {
        font-size: 1.4em;
    }
    .page-new-user-guide p, .page-new-user-guide ul li, .page-new-user-guide ol li {
        font-size: 1em;
    }
    .page-new-user-guide .cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-new-user-guide .step-by-step-guide, .page-new-user-guide .game-categories, .page-new-user-guide .promotion-list, .page-new-user-guide .security-support-grid {
        grid-template-columns: 1fr;
    }
    .page-new-user-guide .faq-question {
        padding: 15px 20px;
    }
    .page-new-user-guide .faq-question h3 {
        font-size: 1.1em;
    }
    .page-new-user-guide .faq-answer {
        padding: 0 20px;
    }
    .page-new-user-guide .faq-item.active .faq-answer {
        padding: 15px 20px;
    }
}

@media (max-width: 480px) {
    .page-new-user-guide .hero-content h1 {
        font-size: 2em;
    }
    .page-new-user-guide .hero-content p {
        font-size: 0.9em;
    }
    .page-new-user-guide h2 {
        font-size: 1.6em;
    }
    .page-new-user-guide h3 {
        font-size: 1.2em;
    }
    .page-new-user-guide .app-qr-codes img {
        width: 250px;
    }
}