:root {
    --primary-color: #113B7A;
    --secondary-color: #1D5FD1;
    --button-gradient: linear-gradient(180deg, #2B73F6 0%, #1144A6 100%);
    --card-bg: #10233F;
    --text-main: #F3F8FF;
    --text-secondary: #AFC4E8;
    --border-color: #244D84;
    --glow-color: #4FA8FF;
    --gold-color: #F2C14E;
    --divider-color: #1B3357;
    --deep-navy: #08162B; /* Assuming this is the body background from shared.css */
}

/* Base styles for the page content */
.page-blog-tk66-live-apk-download-guide {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-secondary); /* Default text color for the page, assuming dark body bg */
    background-color: transparent; /* Rely on body background from shared.css */
}

.page-blog-tk66-live-apk-download-guide__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.page-blog-tk66-live-apk-download-guide__section-title {
    font-size: 36px;
    font-weight: bold;
    color: var(--gold-color); /* Gold color for main titles */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-blog-tk66-live-apk-download-guide__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--gold-color);
    border-radius: 2px;
}

.page-blog-tk66-live-apk-download-guide__section-description {
    text-align: center;
    margin-bottom: 40px;
    font-size: 18px;
    color: var(--text-secondary);
}

.page-blog-tk66-live-apk-download-guide__sub-title {
    font-size: 24px;
    font-weight: bold;
    color: var(--text-main);
    margin-top: 30px;
    margin-bottom: 15px;
}

/* Buttons */
.page-blog-tk66-live-apk-download-guide__btn-primary,
.page-blog-tk66-live-apk-download-guide__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-blog-tk66-live-apk-download-guide__btn-primary {
    background: var(--button-gradient);
    color: var(--text-main);
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-blog-tk66-live-apk-download-guide__btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    opacity: 0.9;
}

.page-blog-tk66-live-apk-download-guide__btn-secondary {
    background-color: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-blog-tk66-live-apk-download-guide__btn-secondary:hover {
    background-color: var(--secondary-color);
    color: var(--text-main);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* HERO Section */
.page-blog-tk66-live-apk-download-guide__hero-section {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column; /* Ensure image is above content */
    align-items: center;
    justify-content: center;
    padding-top: 10px; /* Small top padding */
    padding-bottom: 60px;
    background-color: var(--deep-navy); /* Fallback, should be covered by body bg */
    color: var(--text-main);
}

.page-blog-tk66-live-apk-download-guide__hero-image {
    width: 100%;
    max-height: 700px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px; /* Space between image and content */
}

.page-blog-tk66-live-apk-download-guide__hero-image img {
    width: 100%;
    height: auto;
    object-fit: cover; /* Default for desktop */
    display: block;
    min-width: 200px; /* Global image size requirement */
    min-height: 200px;
}

.page-blog-tk66-live-apk-download-guide__hero-content {
    text-align: center;
    max-width: 900px;
    padding: 0 20px;
}

.page-blog-tk66-live-apk-download-guide__main-title {
    font-size: clamp(36px, 4.5vw, 56px); /* Responsive font size */
    color: var(--gold-color);
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: 800;
}

.page-blog-tk66-live-apk-download-guide__description {
    font-size: 20px;
    margin-bottom: 30px;
    color: var(--text-secondary);
}

.page-blog-tk66-live-apk-download-guide__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    box-sizing: border-box;
}

.page-blog-tk66-live-apk-download-guide__cta-buttons .page-blog-tk66-live-apk-download-guide__btn-primary,
.page-blog-tk66-live-apk-download-guide__cta-buttons .page-blog-tk66-live-apk-download-guide__btn-secondary {
    flex: 1;
    min-width: 200px;
}

/* Introduction Section */
.page-blog-tk66-live-apk-download-guide__introduction-section {
    padding: 80px 0;
    background-color: var(--card-bg); /* Dark background */
    color: var(--text-secondary);
}

.page-blog-tk66-live-apk-download-guide__introduction-section p {
    font-size: 17px;
    margin-bottom: 20px;
    text-align: justify;
    color: var(--text-secondary);
}

.page-blog-tk66-live-apk-download-guide__introduction-section .page-blog-tk66-live-apk-download-guide__section-title {
    color: var(--gold-color);
}

/* Download Android Section */
.page-blog-tk66-live-apk-download-guide__download-android-section {
    padding: 80px 0;
    background-color: var(--deep-navy); /* Dark background */
    color: var(--text-secondary);
}

.page-blog-tk66-live-apk-download-guide__content-grid {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    margin-top: 40px;
}

.page-blog-tk66-live-apk-download-guide__step-by-step {
    flex: 2;
}

.page-blog-tk66-live-apk-download-guide__step-item {
    margin-bottom: 30px;
}

.page-blog-tk66-live-apk-download-guide__step-title {
    font-size: 22px;
    font-weight: bold;
    color: var(--text-main);
    margin-bottom: 10px;
}

.page-blog-tk66-live-apk-download-guide__step-item p {
    font-size: 16px;
    color: var(--text-secondary);
    text-align: justify;
}

.page-blog-tk66-live-apk-download-guide__image-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.page-blog-tk66-live-apk-download-guide__image-wrapper img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    min-width: 200px;
    min-height: 200px;
}

.page-blog-tk66-live-apk-download-guide__note {
    text-align: center;
    font-size: 16px;
    margin-top: 40px;
    color: var(--gold-color);
}

/* Download iOS Section */
.page-blog-tk66-live-apk-download-guide__download-ios-section {
    padding: 80px 0;
    background-color: var(--card-bg); /* Dark background */
    color: var(--text-secondary);
}

.page-blog-tk66-live-apk-download-guide__content-grid--reverse {
    flex-direction: row-reverse;
}

.page-blog-tk66-live-apk-download-guide__text-content {
    flex: 2;
}

.page-blog-tk66-live-apk-download-guide__text-content p {
    font-size: 17px;
    margin-bottom: 20px;
    text-align: justify;
    color: var(--text-secondary);
}

.page-blog-tk66-live-apk-download-guide__ordered-list {
    list-style-type: decimal;
    margin-left: 25px;
    margin-bottom: 20px;
    font-size: 16px;
    color: var(--text-secondary);
}}