/* ─── RESET ─── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}
body {
    background-color: oklch(0.12 0.02 20);
    color: oklch(0.97 0.01 90);
    font-family: "Inter", sans-serif;
    background-image:
        radial-gradient(ellipse at 15% 10%, oklch(0.55 0.18 20 / 0.22), transparent 55%),
        radial-gradient(ellipse at 85% 90%, oklch(0.82 0.14 82 / 0.14), transparent 55%),
        radial-gradient(ellipse at 50% 50%, oklch(0.45 0.14 10 / 0.12), transparent 70%);
    background-attachment: fixed;
    min-height: 100vh;
    line-height: 1.6;
    overflow-x: hidden;
}
h1,
h2,
h3,
h4 {
    font-family: "Cormorant Garamond", serif;
    letter-spacing: -0.01em;
}
img {
    max-width: 100%;
    display: block;
}
button {
    cursor: pointer;
    background: none;
    border: none;
    font: inherit;
    color: inherit;
}
a {
    color: inherit;
    text-decoration: none;
}
/* ─── UTILITIES ─── */
.font-script {
    font-family: "Great Vibes", cursive;
}
.font-urdu {
    font-family: "Noto Nastaliq Urdu", serif;
    direction: rtl;
}
.font-display {
    font-family: "Cormorant Garamond", serif;
}
.text-gold {
    background: linear-gradient(135deg, oklch(0.95 0.08 88), oklch(0.75 0.16 75), oklch(0.95 0.08 88));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.text-gold-soft {
    color: oklch(0.92 0.09 85);
}
.text-muted {
    color: oklch(0.75 0.03 80);
}
.border-gold {
    border-color: oklch(0.84 0.14 82);
}
.border-gold\/40 {
    border-color: oklch(0.84 0.14 82 / 0.4);
}
.border-gold\/60 {
    border-color: oklch(0.84 0.14 82 / 0.6);
}
.border-gold\/25 {
    border-color: oklch(0.84 0.14 82 / 0.25);
}
.border-gold\/20 {
    border-color: oklch(0.84 0.14 82 / 0.2);
}
.bg-gold\/5 {
    background-color: oklch(0.84 0.14 82 / 0.05);
}
.bg-gold\/10 {
    background-color: oklch(0.84 0.14 82 / 0.1);
}
.bg-gold\/15 {
    background-color: oklch(0.84 0.14 82 / 0.15);
}
.bg-card {
    background-color: oklch(0.17 0.025 20);
}
.bg-card\/60 {
    background-color: oklch(0.17 0.025 20 / 0.6);
}
.bg-card\/70 {
    background-color: oklch(0.17 0.025 20 / 0.7);
}
.bg-rose\/25 {
    background-color: oklch(0.30 0.08 15 / 0.25);
}
.bg-rose\/30 {
    background-color: oklch(0.30 0.08 15 / 0.3);
}
.border-border {
    border-color: oklch(0.35 0.04 40 / 45%);
}
.border-border\/50 {
    border-color: oklch(0.35 0.04 40 / 50%);
}
.shadow-luxe {
    box-shadow: 0 40px 120px -30px oklch(0 0 0 / 0.75), 0 0 60px -20px oklch(0.82 0.14 82 / 0.15);
}
.shadow-glow {
    box-shadow: 0 0 80px -10px oklch(0.82 0.14 82 / 0.35);
}
.backdrop-blur-md {
    backdrop-filter: blur(12px);
}
/* ─── ANIMATIONS ─── */
@keyframes float-up {
    0% {
        transform: translateY(100vh) scale(0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-10vh) scale(1) rotate(360deg);
        opacity: 0;
    }
}
@keyframes shimmer {
    0%,
    100% {
        opacity: 0.4;
    }
    50% {
        opacity: 1;
    }
}
@keyframes fade-up {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes fade-in {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
@keyframes glow-pulse {
    0%,
    100% {
        text-shadow: 0 0 20px oklch(0.82 0.14 82 / 0.3);
    }
    50% {
        text-shadow: 0 0 40px oklch(0.82 0.14 82 / 0.7), 0 0 80px oklch(0.82 0.14 82 / 0.3);
    }
}
@keyframes heart-beat {
    0%,
    100% {
        transform: scale(1);
    }
    25% {
        transform: scale(1.15);
    }
    50% {
        transform: scale(1);
    }
    75% {
        transform: scale(1.1);
    }
}
@keyframes rise {
    0% {
        transform: translateY(0) rotate(-4deg);
        opacity: 0;
    }
    8% {
        opacity: .85;
    }
    50% {
        transform: translateY(-55vh) rotate(5deg);
    }
    100% {
        transform: translateY(-125vh) rotate(-5deg);
        opacity: 0;
    }
}
.animate-fade-up {
    animation: fade-up 1.2s ease-out both;
}
.animate-fade-in {
    animation: fade-in 2s ease-out both;
}
.animate-shimmer {
    animation: shimmer 3s ease-in-out infinite;
}
.animate-glow {
    animation: glow-pulse 3s ease-in-out infinite;
}
.animate-heart {
    animation: heart-beat 1.5s ease-in-out infinite;
    display: inline-block;
}
/* ─── LAYOUT HELPERS ─── */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}
.section-padding {
    padding: 6rem 1.5rem;
}
.section-padding-lg {
    padding: 8rem 1.5rem;
}
.text-center {
    text-align: center;
}
.relative {
    position: relative;
}
.absolute {
    position: absolute;
}
.fixed {
    position: fixed;
}
.inset-0 {
    inset: 0;
}
.z-0 {
    z-index: 0;
}
.z-10 {
    z-index: 10;
}
.pointer-events-none {
    pointer-events: none;
}
.overflow-hidden {
    overflow: hidden;
}
.min-h-screen {
    min-height: 100vh;
}
.flex {
    display: flex;
}
.flex-col {
    flex-direction: column;
}
.items-center {
    align-items: center;
}
.justify-center {
    justify-content: center;
}
.grid {
    display: grid;
}
.gap-6 {
    gap: 1.5rem;
}
.gap-8 {
    gap: 2rem;
}
.gap-3 {
    gap: 0.75rem;
}
.mx-auto {
    margin-left: auto;
    margin-right: auto;
}
.my-10 {
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
}
.mt-2 {
    margin-top: 0.5rem;
}
.mt-4 {
    margin-top: 1rem;
}
.mt-6 {
    margin-top: 1.5rem;
}
.mt-8 {
    margin-top: 2rem;
}
.mt-10 {
    margin-top: 2.5rem;
}
.mt-14 {
    margin-top: 3.5rem;
}
.mb-2 {
    margin-bottom: 0.5rem;
}
.mb-4 {
    margin-bottom: 1rem;
}
.mb-6 {
    margin-bottom: 1.5rem;
}
.mb-8 {
    margin-bottom: 2rem;
}
.mb-16 {
    margin-bottom: 4rem;
}
.mb-14 {
    margin-bottom: 3.5rem;
}
.inline-flex {
    display: inline-flex;
}
.inline-block {
    display: inline-block;
}
.block {
    display: block;
}
.w-full {
    width: 100%;
}
.w-16 {
    width: 4rem;
}
.w-24 {
    width: 6rem;
}
.w-32 {
    width: 8rem;
}
.w-72 {
    width: 18rem;
}
.w-56 {
    width: 14rem;
}
.w-64 {
    width: 16rem;
}
.w-1 {
    width: 0.25rem;
}
.w-3 {
    width: 0.75rem;
}
.w-8 {
    width: 2rem;
}
.w-2 {
    width: 0.5rem;
}
.w-px {
    width: 1px;
}
.h-px {
    height: 1px;
}
.h-1 {
    height: 0.25rem;
}
.h-2 {
    height: 0.5rem;
}
.h-3 {
    height: 0.75rem;
}
.h-5 {
    height: 1.25rem;
}
.h-10 {
    height: 2.5rem;
}
.h-11 {
    height: 2.75rem;
}
.h-16 {
    height: 4rem;
}
.h-20 {
    height: 5rem;
}
.h-24 {
    height: 6rem;
}
.h-full {
    height: 100%;
}
.max-w-2xl {
    max-width: 42rem;
}
.max-w-3xl {
    max-width: 48rem;
}
.max-w-4xl {
    max-width: 56rem;
}
.max-w-6xl {
    max-width: 72rem;
}
.max-w-xl {
    max-width: 36rem;
}
.max-w-md {
    max-width: 28rem;
}
.rounded-full {
    border-radius: 9999px;
}
.rounded-2xl {
    border-radius: 1rem;
}
.rounded-3xl {
    border-radius: 1.5rem;
}
.rounded-lg {
    border-radius: 0.5rem;
}
.rounded-t-3xl {
    border-top-left-radius: 1.5rem;
    border-top-right-radius: 1.5rem;
}
.border {
    border-width: 1px;
}
.border-2 {
    border-width: 2px;
}
.border-t {
    border-top-width: 1px;
}
.p-4 {
    padding: 1rem;
}
.p-6 {
    padding: 1.5rem;
}
.p-10 {
    padding: 2.5rem;
}
.px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
}
.px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}
.px-10 {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
}
.py-4 {
    padding-top: 1rem;
    padding-bottom: 1rem;
}
.py-10 {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
}
.py-24 {
    padding-top: 6rem;
    padding-bottom: 6rem;
}
.py-28 {
    padding-top: 7rem;
    padding-bottom: 7rem;
}
.py-32 {
    padding-top: 8rem;
    padding-bottom: 8rem;
}
.py-40 {
    padding-top: 10rem;
    padding-bottom: 10rem;
}
.pl-14 {
    padding-left: 3.5rem;
}
.pr-4 {
    padding-right: 1rem;
}
.text-left {
    text-align: left;
}
.text-right {
    text-align: right;
}
.text-xs {
    font-size: 0.75rem;
    line-height: 1rem;
}
.text-sm {
    font-size: 0.875rem;
    line-height: 1.25rem;
}
.text-base {
    font-size: 1rem;
    line-height: 1.5rem;
}
.text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
}
.text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
}
.text-2xl {
    font-size: 1.5rem;
    line-height: 2rem;
}
.text-3xl {
    font-size: 1.875rem;
    line-height: 2.25rem;
}
.text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
}
.text-5xl {
    font-size: 3rem;
    line-height: 1;
}
.text-6xl {
    font-size: 3.75rem;
    line-height: 1;
}
.text-7xl {
    font-size: 4.5rem;
    line-height: 1;
}
.text-8xl {
    font-size: 6rem;
    line-height: 1;
}
.font-light {
    font-weight: 300;
}
.font-semibold {
    font-weight: 600;
}
.uppercase {
    text-transform: uppercase;
}
.italic {
    font-style: italic;
}
.leading-none {
    line-height: 1;
}
.leading-tight {
    line-height: 1.25;
}
.leading-relaxed {
    line-height: 1.625;
}
.leading-\[0\.9\] {
    line-height: 0.9;
}
.leading-\[2\] {
    line-height: 2;
}
.tracking-\[0\.3em\] {
    letter-spacing: 0.3em;
}
.tracking-\[0\.35em\] {
    letter-spacing: 0.35em;
}
.tracking-\[0\.4em\] {
    letter-spacing: 0.4em;
}
.tracking-\[0\.5em\] {
    letter-spacing: 0.5em;
}
.tracking-\[0\.6em\] {
    letter-spacing: 0.6em;
}
.whitespace-pre-line {
    white-space: pre-line;
}
.bg-gradient-to-r {
    background-image: linear-gradient(to right, var(--tw-gradient-stops));
}
.bg-gradient-to-b {
    background-image: linear-gradient(to bottom, var(--tw-gradient-stops));
}
.bg-gradient-to-t {
    background-image: linear-gradient(to top, var(--tw-gradient-stops));
}
.from-transparent {
    --tw-gradient-from: transparent;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.via-gold {
    --tw-gradient-via: oklch(0.84 0.14 82);
}
.via-gold\/50 {
    --tw-gradient-via: oklch(0.84 0.14 82 / 0.5);
}
.to-transparent {
    --tw-gradient-to: transparent;
}
.from-blush {
    --tw-gradient-from: oklch(0.45 0.14 10);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.to-rose {
    --tw-gradient-to: oklch(0.30 0.08 15);
}
.from-rose {
    --tw-gradient-from: oklch(0.30 0.08 15);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.to-blush {
    --tw-gradient-to: oklch(0.45 0.14 10);
}
.from-background\/95 {
    --tw-gradient-from: oklch(0.12 0.02 20 / 0.95);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.via-background\/60 {
    --tw-gradient-via: oklch(0.12 0.02 20 / 0.6);
}
.transition-all {
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 300ms;
}
.transition-opacity {
    transition-property: opacity;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 300ms;
}
.hover\:scale-105:hover {
    transform: scale(1.05);
}
.hover\:-translate-y-2:hover {
    transform: translateY(-0.5rem);
}
.hover\:border-gold:hover {
    border-color: oklch(0.84 0.14 82);
}
.hover\:border-gold\/60:hover {
    border-color: oklch(0.84 0.14 82 / 0.6);
}
.hover\:bg-gold\/10:hover {
    background-color: oklch(0.84 0.14 82 / 0.1);
}
.hover\:bg-gold\/15:hover {
    background-color: oklch(0.84 0.14 82 / 0.15);
}
.hover\:shadow-glow:hover {
    box-shadow: 0 0 80px -10px oklch(0.82 0.14 82 / 0.35);
}
.group-hover\:opacity-100 {
    opacity: 1;
}
.group-hover\:scale-105 {
    transform: scale(1.05);
}
.opacity-0 {
    opacity: 0;
}
.opacity-30 {
    opacity: 0.3;
}
.group {
    position: relative;
}
/* ─── RESPONSIVE ─── */
@media (min-width: 640px) {
    .sm\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
@media (min-width: 768px) {
    .md\:block {
        display: block;
    }
    .md\:text-3xl {
        font-size: 1.875rem;
        line-height: 2.25rem;
    }
    .md\:text-4xl {
        font-size: 2.25rem;
        line-height: 2.5rem;
    }
    .md\:text-6xl {
        font-size: 3.75rem;
        line-height: 1;
    }
    .md\:text-7xl {
        font-size: 4.5rem;
        line-height: 1;
    }
    .md\:text-8xl {
        font-size: 6rem;
        line-height: 1;
    }
    .md\:text-9xl {
        font-size: 8rem;
        line-height: 1;
    }
    .md\:text-\[10rem\] {
        font-size: 10rem;
        line-height: 1;
    }
    .md\:text-xl {
        font-size: 1.25rem;
        line-height: 1.75rem;
    }
    .md\:text-base {
        font-size: 1rem;
        line-height: 1.5rem;
    }
    .md\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .md\:p-16 {
        padding: 4rem;
    }
    .md\:pl-0 {
        padding-left: 0;
    }
    .md\:pl-12 {
        padding-left: 3rem;
    }
    .md\:pr-12 {
        padding-right: 3rem;
    }
    .md\:w-1\/2 {
        width: 50%;
    }
    .md\:ml-auto {
        margin-left: auto;
    }
    .md\:text-right {
        text-align: right;
    }
    .md\:left-1\/2 {
        left: 50%;
    }
    .md\:left-auto {
        left: auto;
    }
    .md\:left-\[-6px\] {
        left: -6px;
    }
    .md\:right-\[-6px\] {
        right: -6px;
    }
    .md\:px-8 {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}
@media (min-width: 1024px) {
    .lg\:grid-cols-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}
.hidden {
    display: none;
}
/* ─── WORD WRAP FIX ─── */
p,
.text-wrap {
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-word;
}
.font-urdu {
    word-break: break-word;
}
.whitespace-pre-line {
    white-space: pre-wrap;
}
/* ─── SECTION TITLE ─── */
.section-title .eyebrow {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5em;
    color: oklch(0.84 0.14 82);
    margin-bottom: 0.5rem;
}
.section-title .urdu {
    font-family: "Noto Nastaliq Urdu", serif;
    font-size: 1.25rem;
    color: oklch(0.92 0.09 85);
    margin-bottom: 0.75rem;
    direction: rtl;
}
.section-title h2 {
    font-size: 2.25rem;
    font-weight: 300;
    line-height: 1.2;
}
.section-title h2 span {
    color: oklch(0.84 0.14 82);
    background: linear-gradient(135deg, oklch(0.95 0.08 88), oklch(0.75 0.16 75), oklch(0.95 0.08 88));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.section-title .sub {
    margin-top: 0.5rem;
    font-size: 0.875rem;
    font-style: italic;
    color: oklch(0.75 0.03 80);
}
.section-title .divider {
    margin: 1.5rem auto 0;
    height: 1px;
    width: 4rem;
    background: linear-gradient(to right, transparent, oklch(0.84 0.14 82), transparent);
}
@media (min-width: 768px) {
    .section-title h2 {
        font-size: 3.75rem;
    }
}
/* ─── GALLERY IMAGE CONTAINER ─── */
.gallery-img-container {
    aspect-ratio: 3/4;
    width: 100%;
    overflow: hidden;
    border-radius: 1rem;
    border: 1px solid oklch(0.35 0.04 40 / 45%);
    background: oklch(0.17 0.025 20);
    transition: all 0.3s ease;
}
.gallery-img-container:hover {
    border-color: oklch(0.84 0.14 82 / 0.6);
    transform: translateY(-0.5rem);
    box-shadow: 0 40px 120px -30px oklch(0 0 0 / 0.75), 0 0 60px -20px oklch(0.82 0.14 82 / 0.15);
}
.gallery-img-container .placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    gap: 1rem;
    padding: 1.5rem;
    text-align: center;
}
.gallery-img-container .placeholder .icon {
    display: flex;
    height: 4rem;
    width: 4rem;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    border: 1px solid oklch(0.84 0.14 82 / 0.4);
    font-size: 1.5rem;
    color: oklch(0.84 0.14 82);
}
.gallery-img-container .placeholder span {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: oklch(0.75 0.03 80);
}
.gallery-img-container .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    background: linear-gradient(to top, oklch(0.12 0.02 20 / 0.95), oklch(0.12 0.02 20 / 0.6), transparent);
    text-align: left;
}
.gallery-img-container .overlay p {
    font-family: "Great Vibes", cursive;
    font-size: 1.5rem;
    color: oklch(0.84 0.14 82);
}
.gallery-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}
.gallery-img-container:hover img {
    transform: scale(1.05);
}
/* ─── FIXED VIDEO WRAPPER — hides all YouTube branding ─── */
.gallery-img-container .video-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    background: #000;
}
.gallery-img-container .video-wrapper iframe {
    position: absolute;
    top: -12%;
    left: -2%;
    width: 104%;
    height: 124%;
    border: 0;
    display: block;
    pointer-events: none;
    object-fit: cover;
}
/* Hide overlay text on video frame */
.gallery-img-container .overlay {
    display: none;
}
/* ─── SHAIRI BOX ─── */
.shairi-box {
    position: relative;
    border-radius: 1.5rem;
    border: 1px solid oklch(0.84 0.14 82 / 0.25);
    background: oklch(0.17 0.025 20 / 0.7);
    backdrop-filter: blur(12px);
    padding: 2.5rem;
    box-shadow: 0 40px 120px -30px oklch(0 0 0 / 0.75), 0 0 60px -20px oklch(0.82 0.14 82 / 0.15);
}
.shairi-box .quote-mark {
    font-family: "Great Vibes", cursive;
    font-size: 6rem;
    line-height: 1;
    color: oklch(0.84 0.14 82 / 0.25);
    position: absolute;
}
.shairi-box .quote-mark.left {
    left: 1.5rem;
    top: 0.5rem;
}
.shairi-box .quote-mark.right {
    right: 1.5rem;
    bottom: 0;
}
.shairi-box .theme-tag {
    text-align: center;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.4em;
    color: oklch(0.84 0.14 82);
    margin-bottom: 1.5rem;
}
.shairi-box blockquote {
    text-align: center;
}
.shairi-box blockquote .urdu {
    font-family: "Noto Nastaliq Urdu", serif;
    font-size: 1.5rem;
    line-height: 2;
    color: oklch(0.97 0.01 90);
    direction: rtl;
    white-space: pre-wrap;
    word-break: break-word;
}
.shairi-box blockquote .divider-gold {
    margin: 2rem auto;
    height: 1px;
    width: 4rem;
    background: oklch(0.84 0.14 82 / 0.4);
}
.shairi-box blockquote .roman {
    font-family: "Cormorant Garamond", serif;
    font-style: italic;
    font-size: 1.125rem;
    line-height: 1.75rem;
    color: oklch(0.92 0.09 85);
    white-space: pre-wrap;
    word-break: break-word;
}
.shairi-box blockquote .divider-small {
    margin: 1.5rem auto;
    height: 1px;
    width: 2rem;
    background: oklch(0.84 0.14 82 / 0.2);
}
.shairi-box blockquote .en {
    font-size: 0.875rem;
    line-height: 1.625;
    color: oklch(0.75 0.03 80);
    font-style: italic;
}
.shairi-box .nav-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}
.shairi-box .nav-dots button {
    height: 0.375rem;
    border-radius: 9999px;
    transition: all 0.3s ease;
}
.shairi-box .nav-dots button.active {
    width: 2rem;
    background: oklch(0.84 0.14 82);
}
.shairi-box .nav-dots button.inactive {
    width: 0.5rem;
    background: oklch(0.35 0.04 40 / 45%);
}
.shairi-box .nav-dots button.inactive:hover {
    background: oklch(0.84 0.14 82 / 0.5);
}
.shairi-box .nav-arrows {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2.5rem;
}
.shairi-box .nav-arrows button {
    display: flex;
    height: 2.75rem;
    width: 2.75rem;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    border: 1px solid oklch(0.84 0.14 82 / 0.4);
    color: oklch(0.84 0.14 82);
    transition: all 0.3s ease;
}
.shairi-box .nav-arrows button:hover {
    background: oklch(0.84 0.14 82 / 0.1);
}
.shairi-box .counter {
    margin-top: 1.5rem;
    text-align: center;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: oklch(0.75 0.03 80);
}
@media (min-width: 768px) {
    .shairi-box {
        padding: 4rem;
    }
    .shairi-box blockquote .urdu {
        font-size: 2.25rem;
        line-height: 2.5rem;
    }
    .shairi-box blockquote .roman {
        font-size: 1.25rem;
        line-height: 1.75rem;
    }
}
/* ─── CAKE ─── */
.cake-candle {
    position: relative;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
}
.cake-candle .flame {
    position: absolute;
    top: -1.2rem;
    left: 50%;
    transform: translateX(-50%);
    height: 1.4rem;
    width: 0.8rem;
    border-radius: 9999px;
    background: radial-gradient(circle at 50% 30%, oklch(0.95 0.15 85), oklch(0.65 0.2 40));
    box-shadow: 0 0 20px oklch(0.85 0.18 60), 0 0 40px oklch(0.75 0.2 40 / 0.6);
    transition: all 0.4s ease;
}
.cake-candle .flame.animate {
    animation: heart-beat 1.5s ease-in-out infinite;
}
.cake-candle .flame.hidden {
    opacity: 0;
    transform: translateX(-50%) scale(0.2);
    box-shadow: none;
}
.cake-candle .stick {
    height: 2.5rem;
    width: 0.25rem;
    background: linear-gradient(to bottom, oklch(0.84 0.14 82), oklch(0.92 0.09 85));
    border-radius: 9999px;
}
.cake-body {
    width: 14rem;
    height: 6rem;
    margin: 0 auto;
    border-top-left-radius: 1.5rem;
    border-top-right-radius: 1.5rem;
    background: linear-gradient(to bottom, oklch(0.45 0.14 10), oklch(0.30 0.08 15));
    border: 2px solid oklch(0.84 0.14 82 / 0.6);
    box-shadow: 0 40px 120px -30px oklch(0 0 0 / 0.75), 0 0 60px -20px oklch(0.82 0.14 82 / 0.15);
}
.cake-middle {
    width: 16rem;
    height: 5rem;
    margin: -0.25rem auto 0;
    border-radius: 0.5rem;
    background: linear-gradient(to bottom, oklch(0.30 0.08 15), oklch(0.45 0.14 10));
    border: 2px solid oklch(0.84 0.14 82 / 0.6);
}
.cake-base {
    width: 18rem;
    height: 0.5rem;
    margin: 0.5rem auto 0;
    border-radius: 9999px;
    background: oklch(0.84 0.14 82 / 0.4);
}
/* ─── TIMELINE ─── */
.timeline-line {
    position: absolute;
    left: 1rem;
    top: 0.5rem;
    bottom: 0.5rem;
    width: 1px;
    background: linear-gradient(to bottom, transparent, oklch(0.84 0.14 82 / 0.5), transparent);
}
.timeline-dot {
    position: absolute;
    top: 0.5rem;
    height: 0.75rem;
    width: 0.75rem;
    border-radius: 9999px;
    background: oklch(0.84 0.14 82);
    box-shadow: 0 0 24px oklch(0.84 0.14 82);
}
.timeline-item {
    position: relative;
    margin-bottom: 3.5rem;
    padding-left: 3.5rem;
}
.timeline-item .year {
    font-family: "Great Vibes", cursive;
    font-size: 1.875rem;
    color: oklch(0.84 0.14 82);
}
.timeline-item .desc {
    margin-top: 0.5rem;
    font-size: 0.875rem;
    line-height: 1.625;
    color: oklch(0.75 0.03 80);
}
@media (min-width: 768px) {
    .timeline-line {
        left: 50%;
    }
    .timeline-item {
        width: 50%;
        padding-left: 0;
    }
    .timeline-item:nth-child(odd) {
        padding-right: 3rem;
        text-align: right;
        margin-left: 0;
    }
    .timeline-item:nth-child(even) {
        padding-left: 3rem;
        text-align: left;
        margin-left: auto;
    }
    .timeline-item .timeline-dot {
        left: auto;
    }
    .timeline-item:nth-child(odd) .timeline-dot {
        right: -6px;
    }
    .timeline-item:nth-child(even) .timeline-dot {
        left: -6px;
    }
    .timeline-item .year {
        font-size: 1.875rem;
    }
    .timeline-item .desc {
        font-size: 1rem;
    }
}
/* ─── FOOTER ─── */
footer {
    border-top: 1px solid oklch(0.35 0.04 40 / 50%);
    padding: 2.5rem 1.5rem;
    text-align: center;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    color: oklch(0.75 0.03 80);
    line-height: 1.8;
}
footer .dev {
    font-weight: 300;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    color: oklch(0.7 0.03 80);
}
footer .hacker {
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.15em;
    color: oklch(0.92 0.09 85);
    text-shadow: 0 0 20px oklch(0.84 0.14 82 / 0.4);
}
/* ─── BACKGROUND YOUTUBE PLAYER (LOW QUALITY) ─── */
#bg-music {
    position: fixed;
    bottom: -9999px;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
    z-index: -1;
}
#bg-music iframe {
    width: 1px;
    height: 1px;
}
/* ─── BALLOONS ─── */
.balloons {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}
.balloon {
    position: absolute;
    bottom: -220px;
    width: 56px;
    height: 70px;
    border-radius: 50% 50% 48% 48%;
    filter: saturate(1.1);
    animation: rise linear infinite;
}
.balloon::before {
    content: '';
    position: absolute;
    top: 14%;
    left: 20%;
    width: 26%;
    height: 22%;
    border-radius: 50%;
    background: rgba(255, 255, 255, .45);
    filter: blur(2px);
}
.balloon::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    width: 1px;
    height: 120px;
    background: linear-gradient(180deg, rgba(255, 255, 255, .4), transparent);
}
/* ─── COUNTDOWN & BUTTONS ─── */
.count {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 38px
}
.unit {
    min-width: 82px;
    border: 1px solid oklch(0.35 0.04 40 / 45%);
    border-radius: 16px;
    padding: 14px 10px;
    background: linear-gradient(180deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .02))
}
.unit b {
    display: block;
    font: 600 26px/1 'Cormorant Garamond', serif;
    color: #fff
}
.unit span {
    display: block;
    margin-top: 6px;
    font-size: 10px;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: oklch(0.75 0.03 80)
}
.count-note {
    margin-top: 12px;
    font-size: 12px;
    color: oklch(0.75 0.03 80)
}
.row {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 28px
}
.cta-copy {
    border: 0;
    cursor: pointer;
    justify-self: center;
    padding: 15px 32px;
    border-radius: 999px;
    font: 500 15px/1 'Inter', sans-serif;
    color: #fff;
    background: linear-gradient(120deg, oklch(0.84 0.14 82), oklch(0.65 0.2 40));
    box-shadow: 0 18px 40px -16px oklch(0.65 0.2 40 / 0.7);
    transition: .2s
}
.cta-copy:hover {
    transform: translateY(-2px);
    box-shadow: 0 26px 52px -16px oklch(0.84 0.14 82 / 0.8)
}
.ghost-copy {
    border: 1px solid oklch(0.35 0.04 40 / 45%);
    background: transparent;
    color: oklch(0.97 0.01 90);
    cursor: pointer;
    padding: 14px 26px;
    border-radius: 999px;
    font: 400 14px/1 'Inter', sans-serif;
    transition: .2s
}
.ghost-copy:hover {
    border-color: oklch(0.84 0.14 82 / 0.6);
    color: oklch(0.92 0.09 85)
}
#confetti-canvas {
    position: fixed;
    inset: 0;
    z-index: 9999;
    pointer-events: none
}
.toast-copy {
    position: fixed;
    left: 50%;
    bottom: 28px;
    transform: translateX(-50%);
    z-index: 10000;
    background: rgba(0, 0, 0, .92);
    border: 1px solid oklch(0.84 0.14 82 / 0.5);
    color: #fff;
    padding: 13px 20px;
    border-radius: 999px;
    font-size: 13px;
    backdrop-filter: blur(8px);
    animation: popToast .35s ease
}
@keyframes popToast {
    from {
        opacity: 0;
        transform: translate(-50%, 12px)
    }
}
.toast-copy.hidden {
    display: none
}
/* ─── MUSIC TOGGLE BUTTON (FLOATING) ─── */
#musicToggle {
    position: fixed;
    bottom: 90px;
    right: 24px;
    z-index: 10001;
    width: 54px;
    height: 54px;
    border-radius: 9999px;
    border: 1px solid oklch(0.84 0.14 82 / 0.5);
    background: oklch(0.17 0.025 20 / 0.85);
    backdrop-filter: blur(10px);
    color: oklch(0.92 0.09 85);
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
    transition: all 0.15s ease;
    cursor: pointer;
    user-select: none;
}
#musicToggle:active {
    transform: scale(0.92);
}
#musicToggle .label {
    position: absolute;
    bottom: -28px;
    font-size: 9px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: oklch(0.6 0.03 80);
    white-space: nowrap;
}
@media (max-width: 640px) {
    #musicToggle {
        bottom: 80px;
        right: 16px;
        width: 48px;
        height: 48px;
        font-size: 18px;
    }
    #musicToggle .label {
        display: none;
    }
}
/* ─── FIREWORK OVERLAY ─── */
#fireworkOverlay {
    position: fixed;
    inset: 0;
    z-index: 99999;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 1.8s ease;
    background: radial-gradient(circle at center, rgba(255, 215, 0, 0.12), rgba(0, 0, 0, 0.65) 70%);
    backdrop-filter: blur(6px);
}
#fireworkOverlay.show {
    opacity: 1;
}
#fireworkImage {
    max-width: 75%;
    max-height: 65vh;
    border-radius: 24px;
    box-shadow: 0 0 80px rgba(255, 215, 0, 0.9), 0 0 160px rgba(255, 100, 0, 0.6), 0 0 300px rgba(255, 50, 0, 0.4);
    transform: scale(0.3) rotate(-6deg);
    transition: transform 2.2s cubic-bezier(0.2, 0.9, 0.4, 1.2), opacity 2s ease;
    opacity: 0;
    border: 2px solid rgba(255, 215, 0, 0.3);
}
#fireworkOverlay.show #fireworkImage {
    transform: scale(1) rotate(0deg);
    opacity: 1;
}
#fireworkOverlay.hide #fireworkImage {
    transform: scale(1.5) rotate(4deg);
    opacity: 0;
}
#fireworkOverlay.hide {
    opacity: 0;
    transition: opacity 1.8s ease 0.5s;
}
/* ─── FIREWORK TEXT ─── */
#fireworkText {
    margin-top: 20px;
    font-family: 'Great Vibes', cursive;
    font-size: 2.8rem;
    background: linear-gradient(135deg, #ffd700, #ff6b6b, #ff4d7a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
    opacity: 0;
    transition: opacity 1.5s ease 0.5s;
    line-height: 1.4;
}
#fireworkOverlay.show #fireworkText {
    opacity: 1;
}
#fireworkOverlay.hide #fireworkText {
    opacity: 0;
}
#fireworkText .sub {
    font-size: 1.2rem;
    font-family: 'Inter', sans-serif;
    -webkit-text-fill-color: rgba(255,255,255,0.7);
    background: none;
    margin-top: 8px;
    letter-spacing: 2px;
}
#fireworkText .by {
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    -webkit-text-fill-color: rgba(255,215,0,0.6);
    background: none;
    margin-top: 12px;
    letter-spacing: 3px;
}
/* ─── SPARKLES ─── */
.sparkle-bg {
    position: fixed;
    inset: 0;
    z-index: 99997;
    pointer-events: none;
    overflow: hidden;
}
.sparkle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #ffd700;
    border-radius: 50%;
    box-shadow: 0 0 14px #ffd700;
    animation: sparkleFloat 7s ease-in-out infinite;
}
@keyframes sparkleFloat {
    0%,
    100% {
        transform: translateY(0) scale(1);
        opacity: 0.15;
    }
    50% {
        transform: translateY(-50px) scale(2);
        opacity: 0.9;
    }
}