/* style/player-community-new-player-lounge.css */
.page-player-community-new-player-lounge {
    font-family: 'Arial', sans-serif;
    color: #E0E0E0; /* Light gray for general text on dark background */
    background-color: #1A2A3A; /* Dark blue background */
}

.page-player-community-new-player-lounge .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-player-community-new-player-lounge .highlight {
    color: #FFD700;
    font-weight: bold;
}

.page-player-community-new-player-lounge .section-title {
    font-size: 2.5em;
    color: #FFD700;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 15px;
}

.page-player-community-new-player-lounge .section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    border-radius: 2px;
}

.page-player-community-new-player-lounge .btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
    text-align: center;
    white-space: nowrap;
    cursor: pointer;
}

.page-player-community-new-player-lounge .btn-primary {
    background-color: #FFD700;
    color: #1A2A3A;
    border: 2px solid #FFD700;
}

.page-player-community-new-player-lounge .btn-primary:hover {
    background-color: #e6c200;
    border-color: #e6c200;
    transform: translateY(-2px);
}

.page-player-community-new-player-lounge .btn-secondary {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-player-community-new-player-lounge .btn-secondary:hover {
    background-color: #FFD700;
    color: #1A2A3A;
    transform: translateY(-2px);
}

.page-player-community-new-player-lounge .btn-text {
    background-color: transparent;
    color: #FFD700;
    border: none;
    padding: 8px 15px;
    text-decoration: underline;
}

.page-player-community-new-player-lounge .btn-text:hover {
    color: #e6c200;
    text-decoration: none;
}

.page-player-community-new-player-lounge .btn-large {
    padding: 15px 35px;
    font-size: 1.1em;
}

.page-player-community-new-player-lounge .responsive-image {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Hero Section */
.page-player-community-new-player-lounge .hero-section {
    background: linear-gradient(135deg, #1A2A3A 0%, #3a506b 100%);
    padding: 100px 0;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-player-community-new-player-lounge .hero-section .container {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.page-player-community-new-player-lounge .hero-content {
    flex: 1;
    min-width: 300px;
    text-align: left;
}

.page-player-community-new-player-lounge .hero-image {
    flex: 1;
    min-width: 300px;
}

.page-player-community-new-player-lounge .hero-title {
    font-size: 3.5em;
    color: #FFD700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-player-community-new-player-lounge .hero-description {
    font-size: 1.2em;
    color: #E0E0E0;
    margin-bottom: 30px;
    line-height: 1.6;
}

.page-player-community-new-player-lounge .hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* Introduction Section */
.page-player-community-new-player-lounge .introduction-section {
    padding: 80px 0;
    background-color: #25384D;
}

.page-player-community-new-player-lounge .intro-grid {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.page-player-community-new-player-lounge .intro-text {
    flex: 2;
    min-width: 300px;
}

.page-player-community-new-player-lounge .intro-text p {
    font-size: 1.1em;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #D0D0D0;
}

.page-player-community-new-player-lounge .intro-image {
    flex: 1;
    min-width: 250px;
}

/* Getting Started Section */
.page-player-community-new-player-lounge .getting-started-section {
    padding: 80px 0;
    background-color: #1A2A3A;
}

.page-player-community-new-player-lounge .steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.page-player-community-new-player-lounge .step-card {
    background-color: #25384D;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.page-player-community-new-player-lounge .step-card:hover {
    transform: translateY(-5px);
}

.page-player-community-new-player-lounge .step-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

.page-player-community-new-player-lounge .step-card h3 {
    font-size: 1.5em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-player-community-new-player-lounge .step-card p {
    font-size: 1em;
    line-height: 1.6;
    color: #D0D0D0;
    margin-bottom: 20px;
}

.page-player-community-new-player-lounge .note {
    text-align: center;
    margin-top: 40px;
    font-style: italic;
    color: #B0B0B0;
}

/* Community Benefits Section */
.page-player-community-new-player-lounge .community-benefits-section {
    padding: 80px 0;
    background-color: #25384D;
}

.page-player-community-new-player-lounge .benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.page-player-community-new-player-lounge .benefit-card {
    background-color: #1A2A3A;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.page-player-community-new-player-lounge .benefit-card:hover {
    transform: translateY(-5px);
}

.page-player-community-new-player-lounge .benefit-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 4px rgba(255, 215, 0, 0.4));
}

.page-player-community-new-player-lounge .benefit-card h3 {
    font-size: 1.4em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-player-community-new-player-lounge .benefit-card p {
    font-size: 1em;
    line-height: 1.6;
    color: #D0D0D0;
}

/* FAQ Section */
.page-player-community-new-player-lounge .faq-section {
    padding: 80px 0;
    background-color: #1A2A3A;
}

.page-player-community-new-player-lounge .faq-accordion {
    max-width: 900px;
    margin: 0 auto;
}

.page-player-community-new-player-lounge .accordion-item {
    margin-bottom: 15px;
    border: 1px solid #FFD700;
    border-radius: 8px;
    overflow: hidden;
}

.page-player-community-new-player-lounge .accordion-header {
    background-color: #25384D;
    color: #FFD700;
    padding: 18px 25px;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    font-size: 1.2em;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.page-player-community-new-player-lounge .accordion-header::after {
    content: '+';
    font-size: 1.5em;
    color: #FFD700;
    transition: transform 0.3s ease;
}

.page-player-community-new-player-lounge .accordion-header.active {
    background-color: #3a506b;
}

.page-player-community-new-player-lounge .accordion-header.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-player-community-new-player-lounge .accordion-content {
    padding: 0 25px;
    background-color: #1A2A3A;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-player-community-new-player-lounge .accordion-content.show {
    max-height: 500px; /* Adjust as needed */
    padding: 15px 25px;
}

.page-player-community-new-player-lounge .accordion-content p {
    color: #D0D0D0;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* Tips Section */
.page-player-community-new-player-lounge .tips-section {
    padding: 80px 0;
    background-color: #25384D;
}

.page-player-community-new-player-lounge .tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.page-player-community-new-player-lounge .tip-item {
    background-color: #1A2A3A;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.page-player-community-new-player-lounge .tip-item:hover {
    transform: translateY(-5px);
}

.page-player-community-new-player-lounge .tip-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 4px rgba(255, 215, 0, 0.4));
}

.page-player-community-new-player-lounge .tip-item h3 {
    font-size: 1.4em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-player-community-new-player-lounge .tip-item p {
    font-size: 1em;
    line-height: 1.6;
    color: #D0D0D0;
    margin-bottom: 20px;
}

/* CTA Section */
.page-player-community-new-player-lounge .cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1A2A3A 0%, #3a506b 100%);
    text-align: center;
}

.page-player-community-new-player-lounge .cta-section .container {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap-reverse;
}

.page-player-community-new-player-lounge .cta-content {
    flex: 1;
    min-width: 300px;
    text-align: right;
}

.page-player-community-new-player-lounge .cta-image {
    flex: 1;
    min-width: 300px;
    text-align: left;
}

.page-player-community-new-player-lounge .cta-title {
    font-size: 2.8em;
    color: #FFD700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-player-community-new-player-lounge .cta-description {
    font-size: 1.2em;
    color: #E0E0E0;
    margin-bottom: 40px;
    line-height: 1.6;
}

.page-player-community-new-player-lounge .cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: flex-end;
    flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-player-community-new-player-lounge .hero-section .container,
    .page-player-community-new-player-lounge .intro-grid,
    .page-player-community-new-player-lounge .cta-section .container {
        flex-direction: column;
        text-align: center;
    }

    .page-player-community-new-player-lounge .hero-content,
    .page-player-community-new-player-lounge .cta-content {
        text-align: center;
    }

    .page-player-community-new-player-lounge .hero-buttons,
    .page-player-community-new-player-lounge .cta-buttons {
        justify-content: center;
    }

    .page-player-community-new-player-lounge .cta-image {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .page-player-community-new-player-lounge .hero-title {
        font-size: 2.5em;
    }

    .page-player-community-new-player-lounge .section-title {
        font-size: 2em;
    }

    .page-player-community-new-player-lounge .cta-title {
        font-size: 2.2em;
    }

    .page-player-community-new-player-lounge .hero-section,
    .page-player-community-new-player-lounge section {
        padding: 60px 0;
    }

    .page-player-community-new-player-lounge .hero-buttons,
    .page-player-community-new-player-lounge .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .page-player-community-new-player-lounge .btn-large {
        width: 100%;
    }

    .page-player-community-new-player-lounge .accordion-header {
        font-size: 1.1em;
        padding: 15px 20px;
    }

    .page-player-community-new-player-lounge .accordion-content {
        padding: 10px 20px;
    }
}

@media (max-width: 480px) {
    .page-player-community-new-player-lounge .hero-title {
        font-size: 2em;
    }

    .page-player-community-new-player-lounge .hero-description,
    .page-player-community-new-player-lounge .cta-description {
        font-size: 1em;
    }

    .page-player-community-new-player-lounge .section-title {
        font-size: 1.8em;
    }

    .page-player-community-new-player-lounge .cta-title {
        font-size: 1.8em;
    }

    .page-player-community-new-player-lounge .btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }

    .page-player-community-new-player-lounge .step-card h3,
    .page-player-community-new-player-lounge .benefit-card h3,
    .page-player-community-new-player-lounge .tip-item h3 {
        font-size: 1.3em;
    }
}