.page-index {
    color: #FFF6D6;
    /* Text Main color for overall page content, for dark body background */
    background-color: #0A0A0A;
    /* Page background color */
}

.page-index__video-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    padding-top: 10px;
    /* Small top padding, shared body handles header offset */
    background-color: #0A0A0A;
}

.page-index__video-container {
    position: relative;
    width: 100%;
    /* Important for desktop flex alignment */
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

.page-index__video-link {
    display: block;
    text-decoration: none;
    position: relative;
    width: 100%;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 8px;
    overflow: hidden;
}

.page-index__video-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.page-index__video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.page-index__video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 8px;
    object-fit: cover;
    pointer-events: none;
    /* Prevents video controls from blocking click event on parent anchor */
}

.page-index__video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 1;
}

.page-index__video-link:hover .page-index__video-overlay {
    opacity: 1;
}

.page-index__video-click-hint {
    color: #ffffff;
    font-size: 18px;
    font-weight: bold;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    padding: 10px 20px;
    background: rgba(242, 193, 78, 0.8);
    /* Using primary color with transparency */
    border-radius: 5px;
    white-space: nowrap;
}

.page-index__video-cta {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}

.page-index__play-now-button {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
    /* Button gradient */
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    border: none;
    cursor: pointer;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.page-index__play-now-button:hover {
    background: linear-gradient(180deg, #FFE08C 0%, #E8B020 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

.page-index__play-now-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Keyword Intro Section */

.page-index__keyword-intro-section {
    padding: 80px 20px;
    background-color: #0A0A0A;
    color: #FFF6D6;
}

.page-index__keyword-intro-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.page-index__keyword-intro-row {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 60px;
}

.page-index__keyword-intro-visual {
    flex: 1;
    min-width: 300px;
}

.page-index__keyword-intro-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    object-fit: cover;
}

.page-index__keyword-intro-content {
    flex: 1.2;
}

.page-index__keyword-intro-title {
    font-size: clamp(28px, 3.5vw, 42px);
    /* Use clamp for H1/H2 font size flexibility */
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.3;
    color: #FFD36B;
    /* Glow color for main title */
}

.page-index__keyword-intro-text {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #FFF6D6;
}

.page-index__keyword-intro-cta {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
    /* Button gradient */
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
    border: none;
    cursor: pointer;
}

.page-index__keyword-intro-cta:hover {
    background: linear-gradient(180deg, #FFE08C 0%, #E8B020 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

.page-index__keyword-intro-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.page-index__keyword-intro-stat {
    background-color: #111111;
    /* Card BG */
    border: 1px solid #3A2A12;
    /* Border */
    border-radius: 10px;
    padding: 25px 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page-index__keyword-intro-stat-value {
    font-size: 38px;
    font-weight: 800;
    color: #FFD36B;
    /* Glow color for stats */
    margin-bottom: 8px;
    line-height: 1;
}

.page-index__keyword-intro-stat-label {
    font-size: 15px;
    font-weight: 500;
    color: #FFF6D6;
    line-height: 1.4;
}

/* Article Categories Section */

.page-index__articles-section {
    padding: 80px 20px;
    background-color: #0A0A0A;
    color: #FFF6D6;
}

.page-index__articles-container {
    max-width: 1200px;
    margin: 0 auto;
}

.page-index__articles-main-title {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
    margin-bottom: 50px;
    text-align: left;
}

.page-index__articles-title-small {
    font-size: 18px;
    font-weight: 900;
    color: #F2C14E;
    /* Primary color */
    text-transform: uppercase;
}

.page-index__articles-title-large {
    font-size: 44px;
    font-weight: 900;
    color: #FFF6D6;
    /* Text Main */
    line-height: 1.1;
}

.page-index__category-section {
    margin-bottom: 60px;
    padding: 40px;
    background: #111111;
    /* Card BG */
    border-radius: 20px;
    border: 1px solid #3A2A12;
    /* Border */
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-index__category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 35px;
}

.page-index__category-title-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 1;
    min-width: 0;
}

.page-index__category-icon {
    width: 30px;
    height: 30px;
    object-fit: contain;
    filter: brightness(1.2);
    /* Slight adjustment for visibility on dark bg */
}

.page-index__category-title {
    font-size: 30px;
    font-weight: 700;
    margin: 0;
    color: #FFD36B;
    /* Glow color for category titles */
}

.page-index__category-read-more {
    color: #F2C14E;
    /* Primary color */
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
    font-size: 16px;
}

.page-index__category-read-more:hover {
    color: #FFD36B;
    /* Glow color on hover */
    text-decoration: underline;
}

.page-index__articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.page-index__article-card {
    display: flex;
    flex-direction: column;
    background: transparent;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 8px;
    overflow: hidden;
}

.page-index__article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.page-index__article-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.page-index__article-thumbnail {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    /* 16:9 aspect ratio */
    overflow: hidden;
    background: #222222;
    /* Darker background for image loading */
    border-radius: 8px;
    margin-bottom: 0;
}

.page-index__article-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.page-index__article-provider-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(242, 193, 78, 0.8);
    /* Primary color with transparency */
    color: #111111;
    /* Dark text for contrast */
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 13px;
    font-weight: 700;
    z-index: 1;
    text-transform: uppercase;
}

.page-index__article-title-link {
    display: block;
    text-decoration: none;
    color: inherit;
    margin-top: 15px;
}

.page-index__article-title {
    margin: 0;
    padding: 0;
    font-size: 19px;
    font-weight: 600;
    line-height: 1.4;
    color: #FFF6D6;
    /* Text Main */
    transition: color 0.3s ease;
}

.page-index__article-title-link:hover .page-index__article-title {
    color: #F2C14E;
    /* Primary color on hover */
}

/* Media Partners Section */

.page-index__partners-section {
    padding: 60px 20px;
    background: #0A0A0A;
}

.page-index__partners-container {
    max-width: 1200px;
    margin: 0 auto;
}

.page-index__partners-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 20px;
    align-items: center;
    justify-items: center;
}

.page-index__partner-item {
    background-color: #111111;
    /* Card BG */
    border-radius: 10px;
    padding: 9px 19px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: auto;
    box-sizing: border-box;
    border: 1px solid #3A2A12;
    /* Border */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-index__partner-logo {
    width: 167px;
    height: 127px;
    object-fit: contain;
    display: block;
    filter: brightness(0.8) contrast(1.2);
    /* Slightly adjust for dark background, not changing original color */
}

/* Information Text Area */

.page-index__info-section {
    padding: 80px 20px;
    background: #0A0A0A;
    color: #FFF6D6;
}

.page-index__info-container {
    max-width: 1200px;
    margin: 0 auto;
}

.page-index__info-main-title {
    font-size: 40px;
    font-weight: 700;
    text-align: left;
    margin-bottom: 40px;
    color: #FFD36B;
    /* Glow color for main title */
    \ line-height: 1.3;
}

.page-index__info-content {
    line-height: 1.8;
    color: #FFF6D6;
    font-size: 16px;
}

.page-index__info-subsection {
    margin-bottom: 40px;
}

.page-index__info-subtitle {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 25px;
    color: #F2C14E;
    /* Primary color */
    line-height: 1.3;
}

.page-index__info-content h4 {
    font-size: 24px;
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 18px;
    color: #FFD36B;
    /* Glow color */
    line-height: 1.3;
}

.page-index__info-content p {
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 1.8;
    color: #FFF6D6;
}

.page-index__info-list {
    margin: 20px 0;
    padding-left: 30px;
    list-style-type: disc;
}

.page-index__info-list li {
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 1.8;
    color: #FFF6D6;
}

.page-index__info-first-section {
    margin-bottom: 40px;
}

.page-index__info-expandable {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}

.page-index__info-expandable.expanded {
    max-height: 5000px;
    /* Sufficiently large to show all content */
    transition: max-height 0.6s ease-in;
}

.page-index__load-less-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin: 40px auto 0;
    padding: 0;
    background: transparent;
    border: none;
    font-size: 16px;
    font-weight: normal;
    cursor: pointer;
    transition: color 0.3s ease;
    text-decoration: none;
}

.page-index__load-less-text {
    color: #F2C14E;
    /* Primary color */
    transition: color 0.3s ease;
}

.page-index__load-less-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    color: #F2C14E;
    /* Primary color */
    transition: color 0.3s ease;
}

.page-index__load-less-arrow {
    font-size: 14px;
    line-height: 1;
    display: block;
}

.page-index__load-less-btn.collapsed .page-index__load-less-text {
    color: #F2C14E;
}

.page-index__load-less-btn.collapsed .page-index__load-less-icon {
    color: #F2C14E;
}

.page-index__load-less-btn.expanded .page-index__load-less-text {
    color: #FFD36B;
    /* Glow color when expanded */
}

.page-index__load-less-btn.expanded .page-index__load-less-icon {
    color: #FFD36B;
}

/* Mobile Responsive Design */

@media (max-width: 768px) {
    .page-index__video-section {
        padding-top: 10px !important;
        padding-bottom: 40px;
        padding-left: 15px;
        padding-right: 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }
    .page-index__video-container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 0;
        padding-right: 0;
        overflow: hidden !important;
    }
    .page-index__video-link {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    .page-index__video-wrapper {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        border-radius: 4px;
        overflow: hidden !important;
    }
    .page-index__video {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        border-radius: 4px;
        object-fit: contain;
    }
    .page-index__video-cta {
        margin-top: 20px;
        padding-left: 15px;
        padding-right: 15px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    .page-index__play-now-button {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding: 12px 30px !important;
        font-size: 16px !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }
    .page-index__video-click-hint {
        font-size: 14px !important;
        padding: 8px 16px !important;
    }
    .page-index__keyword-intro-section {
        padding: 50px 15px;
    }
    .page-index__keyword-intro-row {
        flex-direction: column;
        gap: 30px;
        margin-bottom: 40px;
    }
    .page-index__keyword-intro-content {
        text-align: center;
    }
    .page-index__keyword-intro-title {
        font-size: 32px;
    }
    .page-index__keyword-intro-text {
        font-size: 15px;
    }
    .page-index__keyword-intro-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .page-index__keyword-intro-stat-value {
        font-size: 30px;
    }
    .page-index__keyword-intro-stat-label {
        font-size: 14px;
    }
    .page-index__articles-section {
        padding: 50px 15px;
    }
    .page-index__articles-container {
        max-width: 100%;
        padding: 0;
    }
    .page-index__articles-main-title {
        margin-bottom: 30px;
    }
    .page-index__articles-title-small {
        font-size: 16px;
    }
    .page-index__articles-title-large {
        font-size: 36px;
    }
    .page-index__category-section {
        margin-bottom: 40px;
        padding: 25px 15px;
        border-radius: 12px;
    }
    .page-index__category-header {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 25px;
        gap: 10px;
    }
    .page-index__category-title {
        font-size: 24px;
    }
    .page-index__category-icon {
        width: 28px;
        height: 28px;
    }
    .page-index__category-read-more {
        font-size: 15px;
        white-space: nowrap;
    }
    .page-index__articles-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .page-index__article-title {
        font-size: 17px;
        margin: 0;
        padding: 0;
        line-height: 1.4;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    .page-index__article-title-link {
        margin-top: 12px;
    }
    .page-index__article-image {
        max-width: 100% !important;
        height: auto !important;
        display: block;
    }
    .page-index__article-thumbnail {
        max-width: 100% !important;
        width: 100% !important;
        overflow: hidden;
        box-sizing: border-box;
    }
    .page-index__article-card {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box;
        overflow: hidden;
    }
    .page-index__partners-section {
        padding: 50px 15px;
    }
    .page-index__partners-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
    .page-index__partner-item {
        width: 100%;
        max-width: 167px;
        /* Maintain aspect ratio based on original size */
        height: 127px;
    }
    .page-index__partner-logo {
        width: 100%;
        max-width: 167px;
        height: 127px;
    }
    .page-index__info-section {
        padding: 50px 15px;
    }
    .page-index__info-main-title {
        font-size: 32px;
        text-align: left;
    }
    .page-index__info-subtitle {
        font-size: 26px;
    }
    .page-index__info-content p,
    .page-index__info-list li {
        font-size: 15px;
    }
    .page-index__info-content h4 {
        font-size: 20px;
    }
    .page-index__load-less-btn {
        margin-top: 30px;
    }
}

@media (max-width: 480px) {
    .page-index__keyword-intro-section {
        padding: 40px 10px;
    }
    .page-index__keyword-intro-title {
        font-size: 28px;
    }
    .page-index__keyword-intro-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .page-index__articles-section {
        padding: 40px 10px;
    }
    .page-index__articles-main-title {
        margin-bottom: 25px;
    }
    .page-index__articles-title-small {
        font-size: 14px;
    }
    .page-index__articles-title-large {
        font-size: 28px;
    }
    .page-index__category-section {
        margin-bottom: 30px;
        padding: 20px 10px;
    }
    .page-index__category-header {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 20px;
        gap: 10px;
    }
    .page-index__category-title {
        font-size: 22px;
    }
    .page-index__category-read-more {
        font-size: 14px;
        align-self: flex-end;
    }
    .page-index__articles-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .page-index__article-title {
        font-size: 16px;
        line-height: 1.4;
    }
    .page-index__partners-section {
        padding: 40px 10px;
    }
    .page-index__partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .page-index__info-section {
        padding: 40px 10px;
    }
    .page-index__info-main-title {
        font-size: 28px;
    }
    .page-index__info-subtitle {
        font-size: 22px;
    }
}

/* Blog Section Styles - Auto Generated */

.latest-blog-section {
    padding: 40px 20px;
    margin: 20px 0;
}

.latest-blog-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.latest-blog-section h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 2rem;
    font-weight: bold;
}

.latest-blog-section p {
    text-align: center;
    margin-bottom: 30px;
    color: #666;
}

.blog-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.blog-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.blog-card .blog-img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
}

.blog-card .blog-content {
    padding: 20px;
}

.blog-card .blog-content h3 {
    margin: 0 0 12px 0;
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1.4;
}

.blog-card .blog-content .blog-title-link {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-card .blog-content .blog-title-link:hover {
    color: #007bff;
}

.blog-card .blog-content .blog-excerpt {
    color: #666;
    line-height: 1.7;
    margin: 12px 0;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 0.95rem;
}

.blog-card .blog-content .blog-date {
    display: block;
    color: #999;
    font-size: 0.9rem;
    margin: 15px 0 12px 0;
}

.blog-card .blog-content .read-more-link {
    display: inline-block;
    margin-top: 8px;
    padding: 10px 20px;
    background: #007bff;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease;
    font-size: 0.95rem;
    font-weight: 500;
}

.blog-card .blog-content .read-more-link:hover {
    background: #0056b3;
}

.view-all-posts {
    text-align: center;
    margin-top: 30px;
}

.view-all-posts .cta-button {
    display: inline-block;
    padding: 12px 24px;
    background: #007bff;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.view-all-posts .cta-button.secondary {
    background: #6c757d;
}

.view-all-posts .cta-button.secondary:hover {
    background: #5a6268;
}

.view-all-posts .cta-button:hover {
    background: #0056b3;
}

@media (max-width: 768px) {
    .blog-list {
        grid-template-columns: 1fr;
    }
    .latest-blog-section h2 {
        font-size: 1.5rem;
    }
    .blog-card .blog-img {
        height: 250px;
    }
    .blog-card .blog-content {
        padding: 15px;
    }
}