/* ====== Page Content Enhancement Styles ====== */

/* ====== Footer Styles ====== */
.cc-footer {
    background: #1a2332;
    color: #cbd5e1;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    margin-top: 40px;
}
.cc-footer-main {
    padding: 48px 0 32px;
}
.cc-footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
}
@media (max-width: 1024px) {
    .cc-footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}
@media (max-width: 640px) {
    .cc-footer-container {
        grid-template-columns: 1fr;
        gap: 28px;
    }
}
.cc-footer-col {
    min-width: 0;
}
.cc-footer-brand {
    max-width: 300px;
}
.cc-footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}
.cc-footer-logo img {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    object-fit: cover;
}
.cc-footer-logo-text {
    font-size: 1.2rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: 0.5px;
}
.cc-footer-desc {
    font-size: 0.88rem;
    line-height: 1.6;
    color: #94a3b8;
    margin: 0 0 16px;
}
.cc-footer-social {
    display: flex;
    gap: 10px;
    margin-top: 14px;
}
.cc-footer-social a {
    text-decoration: none;
}
.cc-footer-social-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    transition: transform 0.2s, opacity 0.2s;
}
.cc-footer-social-icon:hover {
    transform: translateY(-2px);
    opacity: 0.85;
}
.cc-si-fb { background: #1877f2; }
.cc-si-ig { background: #e1306c; }
.cc-si-yt { background: #ff0000; }
.cc-si-tg { background: #0088cc; }

.cc-footer-heading {
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin: 0 0 18px;
    padding-bottom: 10px;
    border-bottom: 1px solid #334155;
}
.cc-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.cc-footer-links li {
    margin-bottom: 10px;
}
.cc-footer-links a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
    display: inline-block;
}
.cc-footer-links a:hover {
    color: #4caf50;
}

.cc-footer-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #4caf50 0%, #2e7d32 100%);
    color: #fff;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: transform 0.2s, box-shadow 0.2s;
    margin-bottom: 14px;
}
.cc-footer-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
    color: #fff;
}
.cc-footer-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
}
.cc-footer-badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    background: #334155;
    color: #cbd5e1;
}

.cc-footer-bottom {
    background: #0f172a;
    padding: 18px 0;
    border-top: 1px solid #334155;
}
.cc-footer-bottom .cc-footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    grid-template-columns: none;
    gap: 0;
}
@media (max-width: 640px) {
    .cc-footer-bottom .cc-footer-container {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
}
.cc-footer-bottom p {
    font-size: 0.8rem;
    color: #64748b;
    margin: 0;
}

/* Section Title with accent bar */
.cc-section-title {
    position: relative;
    padding-left: 16px;
    margin: 32px 0 20px;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a2332;
    line-height: 1.3;
}
.cc-section-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    bottom: 4px;
    width: 4px;
    background: linear-gradient(180deg, #4caf50 0%, #2e7d32 100%);
    border-radius: 2px;
}

/* Sub-section title */
.cc-sub-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1a2332;
    margin: 24px 0 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Table styling */
.cc-table-wrap {
    overflow-x: auto;
    margin: 20px 0;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}
.cc-table-wrap table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
    min-width: 600px;
}
.cc-table-wrap thead th {
    background: #1a2332;
    color: #fff;
    padding: 12px 14px;
    text-align: left;
    font-weight: 600;
    white-space: nowrap;
}
.cc-table-wrap tbody tr:nth-child(even) {
    background: #f8f9fa;
}
.cc-table-wrap tbody tr:hover {
    background: #e8f5e9;
}
.cc-table-wrap tbody td {
    padding: 12px 14px;
    border-bottom: 1px solid #e9ecef;
    color: #333;
    line-height: 1.5;
}
.cc-table-wrap tbody tr:last-child td {
    border-bottom: none;
}

/* Card grid */
.cc-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
    margin: 20px 0;
}
.cc-card {
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 10px;
    padding: 20px;
    position: relative;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
}
.cc-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.cc-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    border-radius: 10px 10px 0 0;
}
.cc-card-green::before { background: linear-gradient(90deg, #4caf50, #2e7d32); }
.cc-card-blue::before { background: linear-gradient(90deg, #2196f3, #1565c0); }
.cc-card-orange::before { background: linear-gradient(90deg, #ff9800, #e65100); }
.cc-card-red::before { background: linear-gradient(90deg, #f44336, #c62828); }
.cc-card-purple::before { background: linear-gradient(90deg, #9c27b0, #6a1b9a); }
.cc-card-title {
    font-size: 1rem;
    font-weight: 700;
    color: #1a2332;
    margin-bottom: 10px;
}
.cc-card p {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

/* Stat highlight boxes */
.cc-stat-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 14px;
    margin: 20px 0;
}
.cc-stat-box {
    background: linear-gradient(135deg, #1a2332 0%, #2c3e50 100%);
    color: #fff;
    border-radius: 10px;
    padding: 18px 14px;
    text-align: center;
}
.cc-stat-box .cc-stat-num {
    font-size: 1.8rem;
    font-weight: 800;
    display: block;
    margin-bottom: 4px;
    color: #4caf50;
}
.cc-stat-box .cc-stat-label {
    font-size: 0.8rem;
    opacity: 0.9;
    line-height: 1.3;
}
.cc-stat-box-green {
    background: linear-gradient(135deg, #4caf50 0%, #2e7d32 100%);
}
.cc-stat-box-green .cc-stat-num {
    color: #fff;
}
.cc-stat-box-orange {
    background: linear-gradient(135deg, #ff9800 0%, #e65100 100%);
}
.cc-stat-box-orange .cc-stat-num {
    color: #fff;
}

/* Tip / Warning / Success boxes */
.cc-tip,
.cc-warning,
.cc-success {
    border-radius: 8px;
    padding: 16px 18px;
    margin: 20px 0;
    font-size: 0.95rem;
    line-height: 1.6;
    position: relative;
    padding-left: 48px;
}
.cc-tip::before,
.cc-warning::before,
.cc-success::before {
    position: absolute;
    left: 16px;
    top: 16px;
    font-size: 1.2rem;
    font-weight: 700;
}
.cc-tip {
    background: #e3f2fd;
    border-left: 4px solid #2196f3;
    color: #0d47a1;
}
.cc-tip::before { content: '💡'; }
.cc-warning {
    background: #fff3e0;
    border-left: 4px solid #ff9800;
    color: #e65100;
}
.cc-warning::before { content: '⚠️'; }
.cc-success {
    background: #e8f5e9;
    border-left: 4px solid #4caf50;
    color: #1b5e20;
}
.cc-success::before { content: '✅'; }

/* Image placeholder */
.cc-img-placeholder {
    background: linear-gradient(135deg, #f0f2f5 0%, #e4e7eb 100%);
    border: 2px dashed #c5c9d0;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 180px;
    color: #8892a0;
    font-size: 0.9rem;
    text-align: center;
    padding: 20px;
    margin: 16px 0;
}
.cc-img-placeholder .cc-img-icon {
    font-size: 2.5rem;
    margin-bottom: 8px;
    opacity: 0.6;
}
.cc-img-placeholder img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Two column layout */
.cc-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin: 20px 0;
    align-items: start;
}
@media (max-width: 768px) {
    .cc-two-col {
        grid-template-columns: 1fr;
    }
}

/* Accordion */
.cc-accordion {
    border: 1px solid #e9ecef;
    border-radius: 8px;
    margin: 12px 0;
    overflow: hidden;
}
.cc-accordion-header {
    background: #f8f9fa;
    padding: 14px 18px;
    cursor: pointer;
    font-weight: 600;
    color: #1a2332;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
}
.cc-accordion-header:hover {
    background: #e9ecef;
}
.cc-accordion-header::after {
    content: '+';
    font-size: 1.3rem;
    color: #4caf50;
    transition: transform 0.2s;
}
.cc-accordion.active .cc-accordion-header::after {
    content: '−';
}
.cc-accordion-body {
    display: none;
    padding: 16px 18px;
    background: #fff;
    border-top: 1px solid #e9ecef;
}
.cc-accordion.active .cc-accordion-body {
    display: block;
}

/* Badge / Tag */
.cc-badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-right: 6px;
}
.cc-badge-green { background: #e8f5e9; color: #2e7d32; }
.cc-badge-red { background: #ffebee; color: #c62828; }
.cc-badge-blue { background: #e3f2fd; color: #1565c0; }
.cc-badge-orange { background: #fff3e0; color: #e65100; }

/* Hero banner for sub-pages */
.cc-page-hero {
    background: linear-gradient(135deg, #1a2332 0%, #2c3e50 100%);
    color: #fff;
    padding: 40px 20px;
    border-radius: 12px;
    margin-bottom: 28px;
    text-align: center;
}
.cc-page-hero h1 {
    color: #fff;
    font-size: 2rem;
    margin-bottom: 8px;
}
.cc-page-hero p {
    color: rgba(255,255,255,0.8);
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Responsive table shadow hint */
@media (max-width: 768px) {
    .cc-table-wrap {
        position: relative;
    }
    .cc-table-wrap::after {
        content: '';
        position: absolute;
        right: 0;
        top: 0;
        bottom: 0;
        width: 30px;
        background: linear-gradient(90deg, transparent, rgba(0,0,0,0.05));
        pointer-events: none;
    }
}


/* ====== Hero Section CTA Buttons ====== */
#btnButton-4,
#btnButton-5 {
    text-align: center;
    margin: 8px 0;
}
#btnButton-4 .btnButton,
#btnButton-5 .btnButton {
    font-weight: 700;
    font-size: 17px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 36px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    letter-spacing: 0.3px;
    position: relative;
    overflow: hidden;
}
#btnButton-4 .btnButton::before,
#btnButton-5 .btnButton::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}
#btnButton-4 .btnButton:hover::before,
#btnButton-5 .btnButton:hover::before {
    left: 100%;
}

/* APK Download Button - Vibrant Orange */
#btnButton-4 .btnButton {
    color: #fff;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 50%, #ff4757 100%);
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}
#btnButton-4 .btnButton:hover {
    color: #fff;
    background: linear-gradient(135deg, #ff4757 0%, #ff6b35 50%, #f7931e 100%);
    box-shadow: 0 6px 20px rgba(255,107,53,0.5);
    transform: translateY(-2px);
}
#btnButton-4 .btnButton:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(255,107,53,0.4);
}

/* Fantasy Link Button - Fresh Green */
#btnButton-5 .btnButton {
    color: #fff;
    background: linear-gradient(135deg, #4caf50 0%, #2ecc71 50%, #27ae60 100%);
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}
#btnButton-5 .btnButton:hover {
    color: #fff;
    background: linear-gradient(135deg, #27ae60 0%, #4caf50 50%, #2ecc71 100%);
    box-shadow: 0 6px 20px rgba(46,204,113,0.5);
    transform: translateY(-2px);
}
#btnButton-5 .btnButton:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(46,204,113,0.4);
}

/* Button icon styling */
#btnButton-4 .btnButton .btnIcon,
#btnButton-5 .btnButton .btnIcon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
}

/* Responsive adjustments */
@media only screen and (max-width: 768px) {
    #btnButton-4 .btnButton,
    #btnButton-5 .btnButton {
        font-size: 15px;
        padding: 12px 28px;
    }
}
@media only screen and (max-width: 576px) {
    #btnButton-4 .btnButton,
    #btnButton-5 .btnButton {
        font-size: 14px;
        padding: 11px 24px;
    }
}

/* Hero button row layout */
.cc-page-hero #btnButton-4,
.cc-page-hero #btnButton-5 {
    display: inline-block;
    margin: 6px 10px;
}

