/* =========================================================
   CRICKET STATION — PRIVACY POLICY PAGE STYLES
   Prefix: pp- (Privacy Policy) to avoid conflicts
========================================================= */

/* ---------- GLOBAL ---------- */
.pp-label {
    font-family: 'Cinzel', serif;
    color: #C9A15A;
    letter-spacing: 0.4em;
    font-size: 0.75rem;
    margin-bottom: 1rem;
}

/* ---------- SECTION 1: HERO ---------- */
.pp-hero {
    position: relative;
    height: 50vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.pp-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}
.pp-hero-bg img {
    width: 100%; height: 100%;
    object-fit: cover;
    transform: scale(1.1);
    filter: grayscale(0.3);
}
.pp-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(13,27,23,0.75) 0%, rgba(13,27,23,0.95) 100%);
    z-index: 2;
}
.pp-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 800px;
    padding: 0 1.5rem;
}
.pp-breadcrumb {
    font-family: 'Cinzel', serif;
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    color: #D1D5DB;
    margin-bottom: 1.5rem;
}
.pp-breadcrumb a { color: #D1D5DB; transition: color 0.3s; }
.pp-breadcrumb a:hover { color: #C9A15A; }
.pp-breadcrumb span { color: #C9A15A; }
.pp-hero-title {
    font-family: 'Cinzel', serif;
    color: #F5F1E8;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    line-height: 1.1;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}
.pp-hero-title span { color: #C9A15A; font-style: italic; }
.pp-hero-desc {
    color: #D1D5DB;
    font-size: 1rem;
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto 1.5rem;
}
.pp-updated {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: rgba(26,43,36,0.8);
    border: 1px solid rgba(201,161,90,0.3);
    border-radius: 2px;
    color: #C9A15A;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    backdrop-filter: blur(10px);
}

/* ---------- MOBILE QUICK JUMP ---------- */
.pp-mobile-toc {
    display: none;
    position: sticky;
    top: 75px;
    z-index: 40;
    background: rgba(13,27,23,0.95);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(143,106,53,0.2);
    padding: 0.75rem 0;
}
.pp-mobile-toc-track {
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
    padding: 0 1.5rem;
    scrollbar-width: none;
}
.pp-mobile-toc-track::-webkit-scrollbar { display: none; }
.pp-mobile-toc-link {
    flex-shrink: 0;
    padding: 0.5rem 1rem;
    background: transparent;
    border: 1px solid rgba(143,106,53,0.3);
    border-radius: 2px;
    color: #D1D5DB;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-decoration: none;
    transition: all 0.3s;
    white-space: nowrap;
}
.pp-mobile-toc-link.active,
.pp-mobile-toc-link:hover {
    background: #C9A15A;
    color: #0D1B17;
    border-color: #C9A15A;
}

/* ---------- SECTION 2: MAIN LAYOUT ---------- */
.pp-main { padding: 5rem 0 8rem; }
.pp-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 4rem;
    align-items: start;
}

/* Sidebar */
.pp-sidebar {
    position: sticky;
    top: 100px;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(201,161,90,0.3) transparent;
}
.pp-sidebar::-webkit-scrollbar { width: 4px; }
.pp-sidebar::-webkit-scrollbar-thumb { background: rgba(201,161,90,0.3); border-radius: 2px; }

.pp-toc {
    background: #1A2B24;
    border: 1px solid rgba(143,106,53,0.2);
    border-radius: 6px;
    padding: 2rem 1.5rem;
}
.pp-toc-title {
    font-family: 'Cinzel', serif;
    color: #C9A15A;
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(143,106,53,0.2);
}
.pp-toc-nav {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}
.pp-toc-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 0.75rem;
    color: #D1D5DB;
    text-decoration: none;
    font-size: 0.85rem;
    border-radius: 2px;
    transition: all 0.3s;
    border-left: 2px solid transparent;
}
.pp-toc-link span {
    font-family: 'Cinzel', serif;
    color: rgba(201,161,90,0.4);
    font-size: 0.7rem;
    font-weight: 600;
    min-width: 20px;
}
.pp-toc-link:hover {
    color: #F5F1E8;
    background: rgba(201,161,90,0.05);
}
.pp-toc-link.active {
    color: #C9A15A;
    background: rgba(201,161,90,0.08);
    border-left-color: #C9A15A;
}
.pp-toc-link.active span { color: #C9A15A; }

/* Content */
.pp-content {
    max-width: 800px;
}
.pp-section {
    margin-bottom: 5rem;
    position: relative;
    padding-left: 4rem;
}
.pp-section-num {
    position: absolute;
    left: 0;
    top: 0;
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: rgba(201,161,90,0.15);
    line-height: 1;
}
.pp-section-title {
    font-family: 'Cinzel', serif;
    color: #F5F1E8;
    font-size: 1.75rem;
    letter-spacing: 0.03em;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(143,106,53,0.2);
}
.pp-section p {
    color: #D1D5DB;
    line-height: 1.8;
    margin-bottom: 1.25rem;
    font-size: 0.95rem;
}
.pp-subtitle {
    font-family: 'Cinzel', serif;
    color: #F5F1E8;
    font-size: 1.1rem;
    letter-spacing: 0.05em;
    margin-top: 2rem;
    margin-bottom: 1rem;
}
.pp-list {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}
.pp-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    color: #D1D5DB;
    line-height: 1.7;
    font-size: 0.95rem;
}
.pp-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6rem;
    width: 6px;
    height: 6px;
    background: #C9A15A;
    border-radius: 50%;
}
.pp-list li strong {
    color: #F5F1E8;
}

/* Callout Box */
.pp-callout {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(201,161,90,0.05);
    border-left: 3px solid #C9A15A;
    border-radius: 0 4px 4px 0;
    margin-bottom: 1.5rem;
}
.pp-callout i {
    color: #C9A15A;
    font-size: 1.25rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}
.pp-callout p {
    margin: 0;
    font-size: 0.9rem;
    color: #F5F1E8;
}

/* Contact Card */
.pp-contact-card {
    background: #1A2B24;
    border: 1px solid rgba(143,106,53,0.2);
    border-radius: 6px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 1.5rem;
}
.pp-contact-item {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}
.pp-contact-item i {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    background: rgba(201,161,90,0.1);
    border: 1px solid rgba(201,161,90,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #C9A15A;
    font-size: 1rem;
}
.pp-contact-item h4 {
    font-family: 'Cinzel', serif;
    color: #F5F1E8;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    margin-bottom: 0.3rem;
}
.pp-contact-item p, .pp-contact-item a {
    color: #D1D5DB;
    font-size: 0.9rem;
    line-height: 1.6;
    text-decoration: none;
    transition: color 0.3s;
}
.pp-contact-item a:hover { color: #C9A15A; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
    .pp-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .pp-sidebar { display: none; }
    .pp-mobile-toc { display: block; }
    .pp-section { padding-left: 3rem; }
    .pp-section-num { font-size: 2rem; }
}
@media (max-width: 768px) {
    .pp-hero { height: 40vh; min-height: 350px; }
    .pp-main { padding: 3rem 0 5rem; }
    .pp-section { padding-left: 0; margin-bottom: 3.5rem; }
    .pp-section-num {
        position: relative;
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
        color: rgba(201,161,90,0.4);
    }
    .pp-section-title { font-size: 1.4rem; }
    .pp-mobile-toc { top: 70px; }
}