.page-about {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #F2FFF6; /* Text Main - light color for dark background */
    background-color: #08160F; /* Background */
}

.page-about__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    box-sizing: border-box;
}

.page-about__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 10px 0 60px 0;
    background-color: #08160F;
}

.page-about__hero-image-wrapper {
    width: 100%;
    overflow: hidden;
    margin-bottom: 20px;
}

.page-about__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.page-about__hero-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    padding: 20px;
    box-sizing: border-box;
}

.page-about__main-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: #F2FFF6;
    margin-bottom: 15px;
    font-weight: bold;
    line-height: 1.2;
    text-shadow: 0 0 10px rgba(87, 227, 141, 0.5); /* Glow */
}

.page-about__description {
    font-size: 1.15rem;
    color: #A7D9B8; /* Text Secondary */
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-about__cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}

.page-about__btn-primary,
.page-about__btn-secondary,
.page-about__btn-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    white-space: normal;
    word-wrap: break-word;
    text-align: center;
    box-sizing: border-box;
}

.page-about__btn-primary {
    background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button color */
    color: #F2FFF6;
    border: none;
    box-shadow: 0 4px 15px rgba(42, 209, 111, 0.4);
}

.page-about__btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(42, 209, 111, 0.6);
}

.page-about__btn-secondary {
    background-color: transparent;
    color: #F2FFF6;
    border: 2px solid #2E7A4E; /* Border color */
    box-shadow: 0 2px 10px rgba(46, 122, 78, 0.3);
}

.page-about__btn-secondary:hover {
    background-color: rgba(46, 122, 78, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(46, 122, 78, 0.5);
}

.page-about__btn-link {
    background-color: transparent;
    color: #2AD16F;
    border: 1px solid #2AD16F;
    padding: 10px 20px;
    font-size: 0.9rem;
    border-radius: 5px;
}

.page-about__btn-link:hover {
    background-color: rgba(42, 209, 111, 0.1);
    color: #F2FFF6;
}

.page-about__content-section,
.page-about__features-section,
.page-about__why-choose-us,
.page-about__games-services-section,
.page-about__security-section,
.page-about__support-section,
.page-about__responsible-gaming-section,
.page-about__faq-section,
.page-about__join-community-section {
    padding: 60px 0;
    background-color: #08160F;
}

.page-about__dark-bg {
    background-color: #11271B; /* Card BG */
    color: #F2FFF6;
}

.page-about__section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: #F2FFF6;
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
    text-shadow: 0 0 8px rgba(87, 227, 141, 0.3);
}

.page-about__text-block {
    font-size: 1.05rem;
    color: #A7D9B8; /* Text Secondary */
    margin-bottom: 20px;
    text-align: justify;
}

.page-about__text-block .highlight {
    color: #2AD16F;
    font-weight: bold;
}

.page-about__features-section .page-about__container,
.page-about__games-services-section .page-about__container {
    display: grid;
    gap: 30px;
}

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

.page-about__feature-card,
.page-about__card {
    background-color: #11271B; /* Card BG */
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid #2E7A4E; /* Border color */
}

.page-about__card-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-about__card-title {
    font-size: 1.5rem;
    color: #F2FFF6;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-about__card-description {
    font-size: 0.95rem;
    color: #A7D9B8;
    line-height: 1.5;
}

.page-about__why-choose-us .page-about__reason-list,
.page-about__security-list,
.page-about__responsible-list,
.page-about__support-channels {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.page-about__reason-item,
.page-about__security-item,
.page-about__responsible-item,
.page-about__support-channel-item {
    background-color: #0A4B2C; /* Deep Green */
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    border-left: 5px solid #2AD16F;
}

.page-about__reason-heading,
.page-about__security-heading,
.page-about__responsible-item,
.page-about__support-channel-item {
    font-size: 1.3rem;
    color: #F2FFF6;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-about__reason-text,
.page-about__security-text {
    font-size: 0.95rem;
    color: #A7D9B8;
    line-height: 1.5;
}

.page-about__games-services-section .page-about__game-category {
    background-color: #11271B; /* Card BG */
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    text-align: center;
    border: 1px solid #2E7A4E;
}

.page-about__game-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-about__game-category-title {
    font-size: 1.6rem;
    color: #F2FFF6;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-about__game-description {
    font-size: 0.95rem;
    color: #A7D9B8;
    line-height: 1.5;
    margin-bottom: 20px;
}

.page-about__support-image,
.page-about__join-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 12px;
    margin: 30px auto;
    display: block;
    max-width: 800px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-about__faq-list {
    display: grid;
    gap: 20px;
}

.page-about__faq-item {
    background-color: #11271B; /* Card BG */
    border-radius: 12px;
    border: 1px solid #2E7A4E;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    color: #F2FFF6;
}

.page-about__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    font-size: 1.15rem;
    font-weight: bold;
    color: #F2FFF6;
    list-style: none;
}

.page-about__faq-question::-webkit-details-marker {
    display: none;
}

.page-about__faq-toggle {
    font-size: 1.5rem;
    color: #2AD16F;
    margin-left: 15px;
    transition: transform 0.3s ease;
}

.page-about__faq-item[open] .page-about__faq-toggle {
    transform: rotate(45deg);
}

.page-about__faq-answer {
    padding: 0 25px 20px 25px;
    font-size: 1rem;
    color: #A7D9B8;
    line-height: 1.6;
}

.page-about__faq-answer p {
    margin-top: 0;
    margin-bottom: 10px;
}

.page-about__faq-answer a {
    color: #2AD16F;
    text-decoration: none;
}

.page-about__faq-answer a:hover {
    text-decoration: underline;
}

/* Links within text blocks */
.page-about__text-block a,
.page-about__reason-text a,
.page-about__security-text a {
    color: #2AD16F;
    text-decoration: none;
    font-weight: bold;
}

.page-about__text-block a:hover,
.page-about__reason-text a:hover,
.page-about__security-text a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-about__main-title {
        font-size: clamp(2rem, 4.5vw, 3rem);
    }
    .page-about__section-title {
        font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    }
    .page-about__feature-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    .page-about__why-choose-us .page-about__reason-list,
    .page-about__security-list,
    .page-about__responsible-list,
    .page-about__support-channels {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-about__hero-section {
        padding-bottom: 40px;
    }
    .page-about__main-title {
        font-size: clamp(1.8rem, 7vw, 2.5rem);
    }
    .page-about__description {
        font-size: 1rem;
    }
    .page-about__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-about__btn-primary,
    .page-about__btn-secondary,
    .page-about__btn-link {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-about__section-title {
        font-size: clamp(1.6rem, 6vw, 2.2rem);
        margin-bottom: 30px;
    }
    .page-about__content-section,
    .page-about__features-section,
    .page-about__why-choose-us,
    .page-about__games-services-section,
    .page-about__security-section,
    .page-about__support-section,
    .page-about__responsible-gaming-section,
    .page-about__faq-section,
    .page-about__join-community-section {
        padding: 40px 0;
    }
    .page-about__text-block {
        font-size: 0.95rem;
    }
    .page-about__feature-grid {
        grid-template-columns: 1fr;
    }
    .page-about__why-choose-us .page-about__reason-list,
    .page-about__security-list,
    .page-about__responsible-list,
    .page-about__support-channels {
        grid-template-columns: 1fr;
    }
    .page-about__reason-item,
    .page-about__security-item,
    .page-about__responsible-item,
    .page-about__support-channel-item {
        padding: 20px;
    }
    .page-about__card-title,
    .page-about__game-category-title {
        font-size: 1.3rem;
    }
    .page-about__card-description,
    .page-about__game-description {
        font-size: 0.9rem;
    }
    .page-about__support-image,
    .page-about__join-image {
        margin: 20px auto;
    }
    .page-about__faq-question {
        font-size: 1rem;
        padding: 15px 20px;
    }
    .page-about__faq-answer {
        padding: 0 20px 15px 20px;
        font-size: 0.9rem;
    }

    /* Mobile image and video responsive rules */
    .page-about img {
        max-width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-about__hero-image-wrapper,
    .page-about__container,
    .page-about__feature-card,
    .page-about__game-category,
    .page-about__faq-item,
    .page-about__cta-buttons {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important; /* Ensure no overflow */
    }
    /* Ensure sections and elements containing images/buttons are also responsive */
    .page-about__content-section,
    .page-about__features-section,
    .page-about__why-choose-us,
    .page-about__games-services-section,
    .page-about__security-section,
    .page-about__support-section,
    .page-about__responsible-gaming-section,
    .page-about__faq-section,
    .page-about__join-community-section {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
}

@media (max-width: 480px) {
    .page-about__hero-content {
        padding: 15px;
    }
    .page-about__main-title {
        font-size: clamp(1.5rem, 8vw, 2.2rem);
    }
    .page-about__description {
        font-size: 0.9rem;
    }
    .page-about__btn-primary,
    .page-about__btn-secondary {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    .page-about__section-title {
        font-size: clamp(1.4rem, 7vw, 2rem);
    }
    .page-about__text-block {
        font-size: 0.9rem;
    }
    .page-about__card-title,
    .page-about__game-category-title {
        font-size: 1.2rem;
    }
    .page-about__reason-heading,
    .page-about__security-heading,
    .page-about__responsible-item,
    .page-about__support-channel-item {
        font-size: 1.1rem;
    }
    .page-about__faq-question {
        font-size: 0.95rem;
    }
    .page-about__faq-answer {
        font-size: 0.85rem;
    }
}