/* Shared chrome for Tower Rush Pakistan secondary pages */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --orange: #FF8A1E;
    --orange-deep: #E66A00;
    --orange-light: #FFAB47;
    --yellow: #FFCC2E;
    --yellow-light: #FFE066;
    --blue: #3DC4F0;
    --blue-deep: #1B7FA3;
    --navy: #1B2A4E;
    --navy-light: #2D4373;
    --cream: #FFF4E0;
    --white: #FFFFFF;
    --ink: #1a1a1a;
}

html, body { max-width: 100vw; overflow-x: hidden; }

body {
    font-family: 'Montserrat', sans-serif;
    background:
        radial-gradient(ellipse 90% 60% at 50% -10%, var(--yellow-light) 0%, transparent 70%),
        linear-gradient(180deg, var(--orange-light) 0%, var(--orange) 45%, var(--orange-deep) 100%);
    min-height: 100vh;
    color: var(--navy);
}

img { max-width: 100%; height: auto; }

/* Navigation */
.site-navbar {
    background: var(--navy);
    padding: 12px 0;
    position: sticky; top: 0; z-index: 1000;
    border-bottom: 5px solid var(--ink);
    box-shadow: 0 6px 0 var(--ink), 0 14px 30px rgba(0,0,0,0.25);
}
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.row { display: flex; align-items: center; justify-content: space-between; }
.site-logo { display: flex; align-items: center; gap: 14px; text-decoration: none; }
.site-logo img {
    width: 56px; height: 56px; border-radius: 50%;
    border: 3px solid var(--ink); box-shadow: 0 3px 0 var(--ink); background: var(--orange);
}
.site-logo-text {
    font-family: 'Lilita One', cursive; font-size: 26px;
    color: var(--yellow); letter-spacing: 1px; line-height: 1;
    -webkit-text-stroke: 1.5px var(--ink); text-shadow: 0 3px 0 var(--ink);
}
.site-menu { display: flex; list-style: none; gap: 14px; }
.site-menu a {
    display: inline-block; color: var(--white); text-decoration: none;
    font-family: 'Lilita One', cursive; font-size: 16px;
    padding: 10px 18px; border-radius: 12px; letter-spacing: 0.5px;
    transition: all 0.2s; border: 3px solid transparent;
}
.site-menu a:hover, .site-menu li.active a {
    background: var(--yellow); color: var(--navy);
    border-color: var(--ink); box-shadow: 0 3px 0 var(--ink);
}
.site-menu-toggle {
    display: none; width: 50px; height: 50px; background: var(--yellow);
    border-radius: 12px; border: 3px solid var(--ink);
    box-shadow: 0 4px 0 var(--ink); cursor: pointer;
    align-items: center; justify-content: center;
}
.site-menu-toggle i { color: var(--navy); font-size: 26px; }

/* Page Hero */
.page-hero {
    padding: 60px 0 30px;
    text-align: center;
    position: relative;
    z-index: 1;
}
.page-hero h1 {
    font-family: 'Lilita One', cursive;
    font-size: 60px;
    color: var(--white);
    margin-bottom: 14px;
    line-height: 1.05;
    -webkit-text-stroke: 2px var(--ink);
    text-shadow: 0 6px 0 var(--ink), 0 10px 18px rgba(0,0,0,0.25);
    letter-spacing: 1px;
}
.page-hero p {
    font-size: 16px; font-weight: 600;
    max-width: 620px; margin: 0 auto;
    color: var(--navy);
    background: rgba(255,244,224,0.85);
    border: 3px solid var(--ink);
    border-radius: 16px;
    padding: 14px 22px;
    box-shadow: 0 5px 0 var(--ink);
}
.last-updated {
    display: inline-block;
    background: var(--yellow);
    color: var(--navy);
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    margin-top: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid var(--ink);
    box-shadow: 0 3px 0 var(--ink);
    font-family: 'Lilita One', cursive;
}

/* Content / Legal Card */
.content-section, .legal-section { padding: 40px 0 80px; position: relative; z-index: 1; }
.container.narrow { max-width: 980px; }
.content-card, .legal-card {
    background: var(--white);
    border: 4px solid var(--ink);
    border-radius: 22px;
    padding: 40px;
    margin-bottom: 28px;
    box-shadow: 0 8px 0 var(--ink);
    color: var(--navy);
}
.content-card h2, .legal-card h2 {
    font-family: 'Lilita One', cursive;
    font-size: 32px;
    color: var(--orange-deep);
    margin: 30px 0 14px;
    display: flex;
    align-items: center;
    gap: 14px;
    letter-spacing: 0.5px;
}
.content-card h2:first-child, .legal-card h2:first-child { margin-top: 0; }
.content-card h2 i { color: var(--orange-deep); font-size: 32px; }
.content-card h3, .legal-card h3 {
    font-family: 'Lilita One', cursive;
    font-size: 22px;
    color: var(--blue-deep);
    margin: 22px 0 10px;
}
.content-card p, .legal-card p {
    font-size: 15.5px;
    line-height: 1.75;
    margin-bottom: 14px;
    color: var(--navy);
}
.content-card ul, .content-card ol,
.legal-card ul, .legal-card ol {
    padding-left: 24px;
    margin-bottom: 14px;
}
.content-card li, .legal-card li {
    font-size: 15px;
    line-height: 1.75;
    margin-bottom: 8px;
}
.content-card strong, .legal-card strong { color: var(--orange-deep); }
.legal-card a { color: var(--blue-deep); font-weight: 700; }
.legal-card code {
    background: var(--yellow-light);
    padding: 2px 8px;
    border-radius: 6px;
    font-family: monospace;
    color: var(--navy);
    font-size: 14px;
    border: 1px solid var(--ink);
}

/* Button */
.game-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--yellow);
    color: var(--navy);
    border: 4px solid var(--ink);
    padding: 16px 36px;
    border-radius: 16px;
    font-family: 'Lilita One', cursive;
    font-size: 18px;
    letter-spacing: 1px;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 6px 0 var(--ink);
    transition: all 0.15s;
    text-transform: uppercase;
}
.game-btn:hover {
    transform: translateY(3px);
    box-shadow: 0 3px 0 var(--ink);
}
.cta-inline { text-align: center; margin-top: 40px; }

/* Footer */
.footer_area {
    background: var(--navy);
    padding: 50px 0 30px;
    color: var(--white);
    border-top: 5px solid var(--ink);
    position: relative;
    z-index: 1;
}
.footer-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 36px;
    margin-bottom: 35px;
}
.footer-title {
    font-family: 'Lilita One', cursive;
    color: var(--yellow);
    margin-bottom: 18px;
    font-size: 20px;
    letter-spacing: 1px;
}
.footer-text { font-size: 14px; line-height: 1.7; opacity: 0.88; }
.footer-nav { list-style: none; }
.footer-nav li { margin-bottom: 10px; }
.footer-nav a {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: color 0.2s;
}
.footer-nav a:hover { color: var(--yellow); }
.family-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--yellow);
    color: var(--navy);
    padding: 8px 18px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 12px;
    margin-top: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid var(--ink);
    box-shadow: 0 3px 0 var(--ink);
}
.info-block {
    background: var(--yellow);
    border: 4px solid var(--ink);
    padding: 22px;
    border-radius: 16px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 30px;
    color: var(--navy);
    box-shadow: 0 5px 0 var(--ink);
}
.info-block i { color: var(--navy); font-size: 28px; flex-shrink: 0; }
.info-block-text { font-size: 14px; line-height: 1.6; font-weight: 600; }
.info-block-text strong { color: var(--orange-deep); }
.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 2px solid rgba(255,255,255,0.18);
    font-size: 13px;
    opacity: 0.75;
}

/* Mobile menu */
.mobile-menu {
    position: fixed;
    top: 0; right: -100%;
    width: 84%; max-width: 340px;
    height: 100%;
    background: var(--navy);
    border-left: 5px solid var(--ink);
    z-index: 9999;
    transition: right 0.3s ease;
    padding: 80px 28px 28px;
    box-shadow: -10px 0 30px rgba(0,0,0,0.5);
}
.mobile-menu.active { right: 0; }
.mobile-menu a {
    display: block;
    font-family: 'Lilita One', cursive;
    font-size: 22px;
    color: var(--white);
    padding: 14px 18px;
    margin-bottom: 8px;
    border-radius: 12px;
    text-decoration: none;
    letter-spacing: 1px;
    border: 3px solid transparent;
    transition: all 0.2s;
}
.mobile-menu a:hover {
    background: var(--yellow);
    color: var(--navy);
    border-color: var(--ink);
}
.menu-close {
    position: absolute;
    top: 18px; right: 18px;
    width: 46px; height: 46px;
    background: var(--yellow);
    color: var(--navy);
    border: 3px solid var(--ink);
    border-radius: 12px;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 0 var(--ink);
}
.menu-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 9998;
    display: none;
}
.menu-overlay.active { display: block; }

/* Responsive */
@media (max-width: 992px) {
    .footer-row { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .site-menu { display: none; }
    .site-menu-toggle { display: flex; }
    .site-logo img { width: 46px; height: 46px; }
    .site-logo-text { font-size: 22px; }
    .page-hero h1 { font-size: 42px; -webkit-text-stroke: 1.5px var(--ink); }
    .content-card, .legal-card { padding: 28px 22px; }
    .content-card h2, .legal-card h2 { font-size: 24px; }
    .content-card h2 i, .legal-card h2 i { font-size: 26px; }
}
@media (max-width: 576px) {
    .footer-row { grid-template-columns: 1fr; }
    .info-block { flex-direction: column; align-items: center; text-align: center; }
    .page-hero h1 { font-size: 32px; }
    .game-btn { padding: 14px 26px; font-size: 16px; }
}
