/* Tower Rush Pakistan — home page unique styles */

.pattern-bg {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    pointer-events: none;
    opacity: 0.18;
    background-image:
        linear-gradient(60deg, transparent 49%, rgba(255,255,255,0.4) 49%, rgba(255,255,255,0.4) 51%, transparent 51%),
        linear-gradient(-60deg, transparent 49%, rgba(255,255,255,0.3) 49%, rgba(255,255,255,0.3) 51%, transparent 51%),
        linear-gradient(0deg, transparent 49%, rgba(255,255,255,0.25) 49%, rgba(255,255,255,0.25) 51%, transparent 51%);
    background-size: 80px 140px;
    z-index: 0;
}

/* Hero */
.hero-section {
    position: relative;
    padding: 60px 0 90px;
    text-align: center;
    z-index: 1;
    min-height: 75vh;
    display: flex;
    align-items: center;
}
.hero-content { position: relative; z-index: 2; width: 100%; }
.hero-logo-wrap { display: flex; justify-content: center; margin-bottom: 24px; }
.hero-logo {
    width: 320px; max-width: 75vw;
    filter: drop-shadow(0 12px 0 rgba(0,0,0,0.18)) drop-shadow(0 20px 40px rgba(0,0,0,0.3));
    animation: bobble 4s ease-in-out infinite;
}
@keyframes bobble {
    0%, 100% { transform: translateY(0) rotate(-1deg); }
    50%      { transform: translateY(-10px) rotate(1deg); }
}
.hero-title {
    font-family: 'Lilita One', cursive;
    font-size: 56px;
    line-height: 1;
    margin-bottom: 22px;
    color: var(--white);
    letter-spacing: 1px;
    -webkit-text-stroke: 2px var(--ink);
    text-shadow: 0 6px 0 var(--ink), 0 12px 20px rgba(0,0,0,0.3);
}
.hero-title span { color: var(--yellow); display: block; }
.hero-subtitle {
    font-size: 18px;
    font-weight: 600;
    max-width: 580px;
    margin: 0 auto 36px;
    line-height: 1.6;
    color: var(--navy);
    background: rgba(255,244,224,0.85);
    border: 3px solid var(--ink);
    border-radius: 16px;
    padding: 16px 22px;
    box-shadow: 0 6px 0 var(--ink);
}
.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--yellow);
    color: var(--navy);
    padding: 20px 46px;
    border-radius: 18px;
    text-decoration: none;
    font-family: 'Lilita One', cursive;
    font-size: 22px;
    letter-spacing: 1.2px;
    border: 4px solid var(--ink);
    box-shadow: 0 8px 0 var(--ink), 0 14px 30px rgba(0,0,0,0.25);
    transition: all 0.15s;
    text-transform: uppercase;
}
.hero-cta:hover {
    transform: translateY(4px);
    box-shadow: 0 4px 0 var(--ink), 0 6px 14px rgba(0,0,0,0.2);
}
.hero-cta i { font-size: 28px; }

/* Floating symbol cards */
.floating-symbols {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: 1;
}
.float-card {
    position: absolute;
    width: 80px; height: 80px;
    background: var(--white);
    border: 4px solid var(--ink);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 0 var(--ink);
    animation: floatAnim 5s ease-in-out infinite;
}
.float-card img { width: 54px; height: 54px; }
.float-card:nth-child(1) { top: 10%;    left:  5%; animation-delay: 0s;   transform: rotate(-8deg); }
.float-card:nth-child(2) { top: 16%;    right: 6%; animation-delay: 0.6s; transform: rotate(7deg);  }
.float-card:nth-child(3) { bottom: 18%; left:  8%; animation-delay: 1.2s; transform: rotate(5deg);  }
.float-card:nth-child(4) { bottom: 14%; right: 7%; animation-delay: 1.8s; transform: rotate(-6deg); }
.float-card:nth-child(5) { top: 45%;    left:  2%; animation-delay: 2.4s; transform: rotate(10deg); }
@keyframes floatAnim {
    0%, 100% { transform: translateY(0) rotate(var(--rot, 0)); }
    50%      { transform: translateY(-18px) rotate(var(--rot, 0)); }
}

/* Section title */
.section-title {
    font-family: 'Lilita One', cursive;
    font-size: 48px;
    text-align: center;
    margin-bottom: 14px;
    color: var(--white);
    letter-spacing: 1px;
    -webkit-text-stroke: 2px var(--ink);
    text-shadow: 0 4px 0 var(--ink);
}
.section-subtitle {
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    max-width: 620px;
    margin: 0 auto 44px;
    line-height: 1.6;
    color: var(--navy);
}

/* Features */
.features-section { padding: 70px 0 50px; position: relative; z-index: 1; }
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}
.feature-card {
    background: var(--white);
    border: 4px solid var(--ink);
    border-radius: 22px;
    padding: 34px 26px;
    text-align: center;
    box-shadow: 0 8px 0 var(--ink);
    transition: all 0.2s;
    color: var(--navy);
}
.feature-card:hover { transform: translateY(-4px); box-shadow: 0 12px 0 var(--ink); }
.feature-icon {
    width: 78px; height: 78px;
    background: var(--yellow);
    color: var(--navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border: 4px solid var(--ink);
    box-shadow: 0 5px 0 var(--ink);
}
.feature-icon i { font-size: 36px; }
.feature-title {
    font-family: 'Lilita One', cursive;
    font-size: 26px;
    margin-bottom: 12px;
    color: var(--orange-deep);
    letter-spacing: 0.5px;
}
.feature-text { font-size: 15px; line-height: 1.65; color: var(--navy); opacity: 0.9; }

/* Symbols showcase */
.symbols-section {
    padding: 70px 0;
    position: relative;
    z-index: 1;
    background: var(--blue);
    border-top: 5px solid var(--ink);
    border-bottom: 5px solid var(--ink);
}
.symbols-section .section-title    { color: var(--yellow); }
.symbols-section .section-subtitle { color: var(--white); }
.symbols-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 22px;
    max-width: 960px;
    margin: 0 auto;
}
.symbol-card {
    background: var(--white);
    border: 4px solid var(--ink);
    border-radius: 18px;
    padding: 24px 14px;
    text-align: center;
    box-shadow: 0 6px 0 var(--ink);
    transition: all 0.2s;
}
.symbol-card:hover { transform: translateY(-5px) rotate(-2deg); box-shadow: 0 10px 0 var(--ink); }
.symbol-card img {
    width: 72px; height: 72px;
    margin-bottom: 12px;
    filter: drop-shadow(0 4px 0 rgba(0,0,0,0.2));
}
.symbol-name {
    font-family: 'Lilita One', cursive;
    font-size: 18px;
    color: var(--navy);
    letter-spacing: 0.5px;
}
.symbol-value {
    font-size: 12px;
    color: var(--blue-deep);
    font-weight: 700;
    margin-top: 3px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* How-to-play steps */
.how-to-section { padding: 70px 0; position: relative; z-index: 1; }
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    margin-top: 36px;
}
.step-card {
    text-align: center;
    padding: 28px 18px;
    background: var(--white);
    border: 4px solid var(--ink);
    border-radius: 20px;
    box-shadow: 0 7px 0 var(--ink);
    transition: all 0.2s;
}
.step-card:hover { transform: translateY(-4px); box-shadow: 0 11px 0 var(--ink); }
.step-number {
    width: 60px; height: 60px;
    background: var(--orange);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-family: 'Lilita One', cursive;
    font-size: 30px;
    border: 4px solid var(--ink);
    box-shadow: 0 4px 0 var(--ink);
    -webkit-text-stroke: 1px var(--ink);
}
.step-title {
    font-family: 'Lilita One', cursive;
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--navy);
    letter-spacing: 0.5px;
}
.step-text { font-size: 13.5px; color: var(--navy); opacity: 0.85; line-height: 1.6; }

/* Heritage */
.heritage-section { padding: 70px 0; position: relative; z-index: 1; }
.heritage-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 44px;
    align-items: center;
}
.heritage-img {
    width: 100%;
    border-radius: 22px;
    border: 5px solid var(--ink);
    box-shadow: 0 10px 0 var(--ink);
    aspect-ratio: 4/3;
    object-fit: cover;
    background: linear-gradient(135deg, var(--blue), var(--blue-deep));
}
.heritage-text {
    background: var(--white);
    padding: 36px;
    border: 4px solid var(--ink);
    border-radius: 22px;
    box-shadow: 0 8px 0 var(--ink);
}
.heritage-text h2 {
    font-family: 'Lilita One', cursive;
    font-size: 38px;
    color: var(--orange-deep);
    margin-bottom: 16px;
    line-height: 1.1;
}
.heritage-text p { font-size: 15px; line-height: 1.7; color: var(--navy); margin-bottom: 12px; }

/* CTA */
.cta-section { padding: 80px 0; text-align: center; position: relative; z-index: 1; }
.cta-box {
    max-width: 720px;
    margin: 0 auto;
    padding: 50px 40px;
    background: var(--yellow);
    border: 5px solid var(--ink);
    border-radius: 26px;
    box-shadow: 0 12px 0 var(--ink), 0 22px 50px rgba(0,0,0,0.25);
}
.cta-title {
    font-family: 'Lilita One', cursive;
    font-size: 42px;
    margin-bottom: 14px;
    color: var(--navy);
    letter-spacing: 1px;
    -webkit-text-stroke: 1px var(--ink);
}
.cta-text { font-size: 17px; font-weight: 600; margin-bottom: 28px; color: var(--navy); line-height: 1.6; }

/* Responsive overrides */
@media (max-width: 992px) {
    .features-grid  { grid-template-columns: repeat(2, 1fr); }
    .symbols-grid   { grid-template-columns: repeat(3, 1fr); }
    .steps-grid     { grid-template-columns: repeat(2, 1fr); }
    .hero-title     { font-size: 46px; }
    .heritage-grid  { grid-template-columns: 1fr; gap: 24px; }
    .section-title  { font-size: 38px; }
}
@media (max-width: 768px) {
    .hero-title     { font-size: 36px; }
    .section-title  { font-size: 32px; }
    .features-grid  { grid-template-columns: 1fr; }
    .symbols-grid   { grid-template-columns: repeat(2, 1fr); }
    .steps-grid     { grid-template-columns: 1fr; }
    .cta-box        { padding: 36px 22px; }
    .cta-title      { font-size: 30px; }
    .heritage-text  { padding: 26px; }
    .heritage-text h2 { font-size: 28px; }
    .float-card     { width: 60px; height: 60px; }
    .float-card img { width: 40px; height: 40px; }
}
@media (max-width: 576px) {
    .hero-logo      { width: 250px; }
    .hero-title     { font-size: 28px; -webkit-text-stroke: 1.5px var(--ink); }
    .hero-subtitle  { font-size: 14px; padding: 14px 18px; }
    .hero-cta       { padding: 16px 30px; font-size: 18px; }
    .symbols-grid   { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .symbol-card    { padding: 18px 8px; }
    .symbol-card img { width: 54px; height: 54px; }
    .float-card     { display: none; }
}
