/* ═══════════════════════════════════════════════════
   DEMO PAGE — PREMIUM UI v2.0
   Compact, interactive, best-in-class 3D buttons
   ═══════════════════════════════════════════════════ */

/* ── Background ── */
.demo-a2z .background-effects {
    background: linear-gradient(180deg, #08080f 0%, #030306 100%) !important;
}

.demo-a2z .aurora,
.demo-a2z .mesh-gradient,
.demo-a2z .bg-spotlight,
.demo-a2z .noise-overlay {
    display: none !important;
}

/* ── Floating Particle Overlay ── */
.demo-a2z .background-effects::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(2px 2px at 20% 30%, rgba(168,85,247,0.4) 0%, transparent 100%),
        radial-gradient(2px 2px at 40% 70%, rgba(99,102,241,0.3) 0%, transparent 100%),
        radial-gradient(2px 2px at 60% 20%, rgba(244,114,182,0.35) 0%, transparent 100%),
        radial-gradient(2px 2px at 80% 50%, rgba(34,211,165,0.3) 0%, transparent 100%),
        radial-gradient(1.5px 1.5px at 10% 80%, rgba(168,85,247,0.2) 0%, transparent 100%),
        radial-gradient(1.5px 1.5px at 90% 10%, rgba(99,102,241,0.2) 0%, transparent 100%);
    animation: particleFloat 20s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

@keyframes particleFloat {
    0%, 100% { transform: translateY(0) scale(1); opacity: 0.6; }
    50% { transform: translateY(-20px) scale(1.04); opacity: 1; }
}

/* ── Scroll Progress ── */
.demo-a2z .scroll-progress {
    background: linear-gradient(90deg, #e879f9 0%, #a855f7 40%, #6366f1 70%, #22d3a5 100%);
    height: 3px;
    box-shadow: 0 0 8px rgba(168,85,247,0.5);
}

/* ── Main Title ── */
.demo-a2z .main-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.7rem, 5vw, 3rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.04em;
    color: #fff;
    text-align: center;
    text-shadow: 0 2px 20px rgba(168,85,247,0.15);
}

.demo-a2z .gradient-text {
    background: linear-gradient(135deg, #e879f9 0%, #c084fc 25%, #818cf8 50%, #f472b6 75%, #fbbf24 100%);
    background-size: 300% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 4s linear infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% center; }
    100% { background-position: 300% center; }
}

/* ── Sub Title ── */
.demo-a2z .sub-title {
    font-size: clamp(0.9rem, 2.2vw, 1.1rem);
    color: rgba(255,255,255,0.65);
    font-weight: 500;
    text-align: center;
}

/* ── Hero Load Animation ── */
.demo-a2z .hero-load {
    opacity: 0;
    transform: translateY(24px);
    animation: heroLoadIn 0.7s cubic-bezier(0.22,1,0.36,1) forwards;
}
.demo-a2z .hero-load:nth-child(1) { animation-delay: 0.08s; }
.demo-a2z .hero-load:nth-child(2) { animation-delay: 0.18s; }
.demo-a2z .hero-load:nth-child(3) { animation-delay: 0.28s; }
.demo-a2z .hero-load:nth-child(4) { animation-delay: 0.38s; }

@keyframes heroLoadIn {
    to { opacity: 1; transform: translateY(0); }
}

/* ── Reveal ── */
.demo-a2z .reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.6s cubic-bezier(0.22,1,0.36,1), transform 0.6s cubic-bezier(0.22,1,0.36,1);
}
.demo-a2z .reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── Video Shell ── */
.demo-a2z .a2z-demo-video {
    width: 100%;
    max-width: 680px;
    margin: 0 auto;
}

.demo-a2z .a2z-video-shell {
    margin-top: 28px !important;
    border: 2px dashed var(--a2z-magenta) !important;
    border-radius: 18px;
    overflow: hidden;
    box-shadow:
        0 16px 50px rgba(0,0,0,0.5),
        0 0 60px rgba(168,85,247,0.08);
    transition: box-shadow 0.4s ease, transform 0.4s ease;
}

.demo-a2z .a2z-video-shell:hover {
    box-shadow:
        0 24px 70px rgba(0,0,0,0.6),
        0 0 80px rgba(168,85,247,0.12);
    transform: translateY(-3px);
}

.demo-a2z .a2z-video-wrap {
    border: none !important;
}

/* ══════════════════════════════════════════════════════
   ★ PREMIUM 3D BUTTONS — COMPACT & INTERACTIVE
   ══════════════════════════════════════════════════════ */

/* Base CTA wrapper */
.demo-a2z .demo-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 8px 0;
}

/* ── PRIMARY BUY BUTTON ── */
.demo-a2z .btn-primary.btn-demo-buy {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 24px; /* compact padding */
    border-radius: 14px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.94rem; /* clean size */
    font-weight: 800;
    letter-spacing: 0.3px;
    color: #000 !important;
    text-decoration: none;
    border: none;
    outline: none;
    cursor: pointer;
    overflow: hidden;
    user-select: none;
    -webkit-tap-highlight-color: transparent;

    /* Premium gradient */
    background: linear-gradient(135deg, #fde68a 0%, #fbbf24 30%, #f97316 70%, #ea580c 100%);
    background-size: 200% 200%;
    animation: btnGradientPulse 3s ease infinite;

    /* 3D depth (sleeker 4px) */
    box-shadow:
        0 4px 0 0 #9a3412,
        0 8px 20px rgba(249,115,22,0.3),
        0 0 30px rgba(249,115,22,0.12),
        inset 0 1px 0 rgba(255,255,255,0.35);

    transform: translateY(0);
    transition:
        transform 0.1s cubic-bezier(0.34,1.56,0.64,1),
        box-shadow 0.1s ease,
        filter 0.2s ease;

    /* Text shadow for depth */
    text-shadow: 0 1px 0 rgba(255,255,255,0.4);
}

@keyframes btnGradientPulse {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Shimmer sweep */
.demo-a2z .btn-primary.btn-demo-buy::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.28), transparent);
    transform: skewX(-20deg);
    animation: btnShimmerSweep 2.8s ease-in-out infinite;
    pointer-events: none;
}

@keyframes btnShimmerSweep {
    0% { left: -100%; }
    50%, 100% { left: 160%; }
}

/* Hover — lift */
.demo-a2z .btn-primary.btn-demo-buy:hover {
    transform: translateY(-2px);
    box-shadow:
        0 6px 0 0 #9a3412,
        0 12px 28px rgba(249,115,22,0.4),
        0 0 50px rgba(249,115,22,0.18),
        inset 0 1px 0 rgba(255,255,255,0.4);
    filter: brightness(1.06);
}

/* Active — press down */
.demo-a2z .btn-primary.btn-demo-buy:active {
    transform: translateY(3px);
    box-shadow:
        0 1px 0 0 #9a3412,
        0 3px 10px rgba(249,115,22,0.18),
        inset 0 2px 4px rgba(0,0,0,0.12);
    filter: brightness(0.96);
    transition: transform 0.06s ease, box-shadow 0.06s ease;
}

/* Ripple on click */
.demo-a2z .btn-primary.btn-demo-buy::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(circle at center, rgba(255,255,255,0.22) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}
.demo-a2z .btn-primary.btn-demo-buy:active::after {
    opacity: 1;
    transition: opacity 0.1s ease;
}

/* Strikethrough price */
.demo-a2z .btn-demo-off {
    font-size: 0.8rem;
    font-weight: 600;
    opacity: 0.75;
    margin-left: 2px;
}
.demo-a2z .btn-demo-off s {
    text-decoration-thickness: 1.5px;
}

/* ── STICKY BAR BUTTON ── */
.demo-a2z .sticky-buy-bar {
    background: rgba(3,3,6,0.96);
    backdrop-filter: blur(20px) saturate(1.5);
    -webkit-backdrop-filter: blur(20px) saturate(1.5);
    border-top: 1px solid rgba(168,85,247,0.2);
    box-shadow: 0 -6px 30px rgba(0,0,0,0.5), 0 -1px 12px rgba(168,85,247,0.06);
    padding: 10px 20px;
}

.demo-a2z .sticky-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 520px;
    margin: 0 auto;
    gap: 12px;
}

.demo-a2z .sticky-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.demo-a2z .sticky-info strong {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.02em;
}

.demo-a2z .sticky-info span {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.45);
    font-weight: 500;
}

/* Sticky buy button */
.demo-a2z .sticky-buy-bar .btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 22px;
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.87rem;
    font-weight: 800;
    color: #000 !important;
    text-decoration: none;
    border: none;
    cursor: pointer;
    overflow: hidden;
    user-select: none;
    flex-shrink: 0;
    -webkit-tap-highlight-color: transparent;

    background: linear-gradient(135deg, #fbbf24 0%, #f97316 100%);
    box-shadow:
        0 4px 0 0 #c2410c,
        0 6px 15px rgba(249,115,22,0.3),
        inset 0 1px 0 rgba(255,255,255,0.3);
    transform: translateY(0);
    transition: transform 0.1s ease, box-shadow 0.1s ease;
    text-shadow: 0 1px 0 rgba(255,255,255,0.3);
    letter-spacing: 0.2px;
}

.demo-a2z .sticky-buy-bar .btn::before {
    content: '';
    position: absolute;
    top: 0; left: -80%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.22), transparent);
    transform: skewX(-18deg);
    animation: btnShimmerSweep 2.5s 1.2s ease-in-out infinite;
    pointer-events: none;
}

.demo-a2z .sticky-buy-bar .btn:hover {
    transform: translateY(-2px);
    box-shadow:
        0 6px 0 0 #c2410c,
        0 10px 22px rgba(249,115,22,0.4),
        inset 0 1px 0 rgba(255,255,255,0.35);
}

.demo-a2z .sticky-buy-bar .btn:active {
    transform: translateY(3px);
    box-shadow:
        0 1px 0 0 #c2410c,
        0 3px 8px rgba(249,115,22,0.2);
    transition: transform 0.05s ease, box-shadow 0.05s ease;
}

/* ══════════════════════════════════════════════
   ★ ULTRA-PREMIUM COUNTDOWN TIMER
   ══════════════════════════════════════════════ */

/* Outer wrapper — glowing fire border */
.demo-a2z .timer-container.timer-premium {
    position: relative;
    padding: 2px;
    border-radius: 22px;
    background: linear-gradient(135deg,
        #f472b6 0%, #a855f7 25%, #6366f1 50%, #a855f7 75%, #f472b6 100%);
    background-size: 300% 300%;
    animation: timerBorderFlow 3s linear infinite;
    box-shadow:
        0 0 30px rgba(244,114,182,0.25),
        0 0 60px rgba(168,85,247,0.15),
        0 20px 50px rgba(0,0,0,0.5);
    border: none !important;
}

@keyframes timerBorderFlow {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Inner glass card */
.demo-a2z .timer-container.timer-premium::before {
    content: '';
    position: absolute;
    inset: 2px;
    border-radius: 20px;
    background: linear-gradient(160deg, #0d0a1e 0%, #080510 60%, #0a0618 100%);
    z-index: 0;
}

/* Animated glow orbs inside */
.demo-a2z .timer-container.timer-premium::after {
    content: '';
    position: absolute;
    inset: 2px;
    border-radius: 20px;
    background:
        radial-gradient(ellipse 60% 40% at 20% 0%, rgba(168,85,247,0.12) 0%, transparent 60%),
        radial-gradient(ellipse 60% 40% at 80% 100%, rgba(244,114,182,0.10) 0%, transparent 60%);
    z-index: 0;
    pointer-events: none;
}

/* Inner content positioning */
.demo-a2z .timer-container.timer-premium > * {
    position: relative;
    z-index: 1;
}

/* Wrap the inner content in a real div to isolate z-index */
.demo-a2z .timer-inner-wrap {
    position: relative;
    z-index: 1;
    padding: 18px 24px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* ── Label row ── */
.demo-a2z .timer-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.65rem;
    font-weight: 900;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #f472b6;
    margin-bottom: 14px;
    animation: urgencyPulse 1.8s ease-in-out infinite;
}

@keyframes urgencyPulse {
    0%, 100% { opacity: 1; text-shadow: 0 0 10px rgba(244,114,182,0.5), 0 0 20px rgba(244,114,182,0.25); }
    50%       { opacity: 0.75; text-shadow: 0 0 6px rgba(244,114,182,0.3); }
}

/* ── Countdown flex row ── */
.demo-a2z .countdown {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

/* ── Individual time block ── */
.demo-a2z .time-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

/* The digit card — 3D inset glass */
.demo-a2z .time-box span:first-child {
    position: relative;
    min-width: 62px;
    padding: 13px 10px 11px;
    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-size: 1.75rem;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: -1px;
    font-variant-numeric: tabular-nums;

    /* Glass card */
    background: linear-gradient(180deg,
        rgba(255,255,255,0.08) 0%,
        rgba(255,255,255,0.03) 49%,
        rgba(0,0,0,0.2) 50%,
        rgba(0,0,0,0.35) 100%);
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.1);

    /* Layered shadows for depth */
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.12),
        inset 0 -1px 0 rgba(0,0,0,0.4),
        0 4px 0 rgba(0,0,0,0.5),
        0 8px 20px rgba(0,0,0,0.4),
        0 0 12px rgba(168,85,247,0.08);

    /* Flip animation on value change */
    transition:
        color 0.15s ease,
        transform 0.08s ease,
        box-shadow 0.15s ease;

    /* Separator line (flip clock style) */
    overflow: hidden;
}

/* Divider line in middle of digit card */
.demo-a2z .time-box span:first-child::after {
    content: '';
    position: absolute;
    left: 0; right: 0;
    top: 50%;
    height: 1px;
    background: rgba(0,0,0,0.55);
    pointer-events: none;
}

/* Highlight shine on top */
.demo-a2z .time-box span:first-child::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 45%;
    background: linear-gradient(180deg, rgba(255,255,255,0.08) 0%, transparent 100%);
    border-radius: 13px 13px 0 0;
    pointer-events: none;
}

/* Tick animation — purple glow on second change */
.demo-a2z .time-box span.tick {
    color: #e879f9;
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.15),
        inset 0 -1px 0 rgba(0,0,0,0.4),
        0 4px 0 rgba(0,0,0,0.5),
        0 8px 20px rgba(0,0,0,0.4),
        0 0 20px rgba(232,121,249,0.4),
        0 0 40px rgba(168,85,247,0.2);
    transform: scale(1.04);
    text-shadow: 0 0 14px rgba(232,121,249,0.7);
}

/* ── Label under digits ── */
.demo-a2z .time-box .label {
    font-family: 'Poppins', sans-serif;
    font-size: 0.52rem;
    font-weight: 800;
    color: rgba(255,255,255,0.3);
    letter-spacing: 2.5px;
    text-transform: uppercase;
}

/* ── Animated colon ── */
.demo-a2z .colon {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    font-weight: 900;
    color: rgba(168,85,247,0.6);
    padding-bottom: 22px;
    line-height: 1;
    text-shadow: 0 0 10px rgba(168,85,247,0.5);
    animation: colonBlink 1s step-end infinite;
    user-select: none;
}

@keyframes colonBlink {
    0%, 49% { opacity: 1; }
    50%, 100% { opacity: 0.2; }
}

/* ── GALLERY SECTION TAG ── */
.demo-a2z .section-tag {
    display: inline-block;
    background: rgba(168,85,247,0.1);
    border: 1px solid rgba(168,85,247,0.28);
    color: #c084fc;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 3px;
    padding: 6px 18px;
    border-radius: 999px;
    text-transform: uppercase;
    margin-bottom: 10px;
    box-shadow: 0 0 14px rgba(168,85,247,0.07);
}

.demo-a2z .section-title {
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.3rem, 4vw, 1.9rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

/* ── DEMO CARDS ── */
.demo-a2z .demo-card {
    position: relative;
    padding: 2.5px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(168,85,247,0.5) 0%, rgba(99,102,241,0.3) 40%, rgba(244,114,182,0.45) 100%);
    background-size: 200% 200%;
    animation: cardBorderGlow 4s ease infinite;
    transition: transform 0.4s cubic-bezier(0.22,1,0.36,1), box-shadow 0.4s ease;
}

@keyframes cardBorderGlow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.demo-a2z .demo-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow:
        0 20px 50px rgba(0,0,0,0.4),
        0 0 30px rgba(168,85,247,0.15);
}

.demo-a2z .demo-card-inner {
    background: rgba(12,12,22,0.95);
    border-radius: 16px;
    padding: 5px;
    backdrop-filter: blur(6px);
}

.demo-a2z .demo-tag {
    position: relative;
    z-index: 1;
    background: linear-gradient(135deg, #e879f9, #a855f7);
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 0.6rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    padding: 4px 12px;
    border-radius: 999px;
    text-transform: uppercase;
    box-shadow: 0 3px 12px rgba(168,85,247,0.45);
    border: 1px solid rgba(255,255,255,0.1);
}

.demo-a2z .demo-media-wrapper {
    border-radius: 12px;
    overflow: hidden;
}

.demo-a2z .demo-media-wrapper img {
    width: 100%;
    display: block;
    transition: transform 0.45s cubic-bezier(0.22,1,0.36,1);
}

.demo-a2z .demo-card:hover .demo-media-wrapper img {
    transform: scale(1.06);
}

/* ── BOTTOM CTA ── */
.demo-a2z .demo-cta-bottom {
    margin-top: 48px;
    margin-bottom: 0 !important;
}

.demo-a2z .demo-unlock-text {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    color: rgba(255,255,255,0.75);
    font-weight: 600;
    text-align: center;
    text-shadow: 0 1px 4px rgba(0,0,0,0.2);
}

.demo-a2z .demo-unlock-text strong {
    color: #fff;
    background: linear-gradient(135deg, #c084fc, #f472b6);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.demo-a2z .guarantee {
    font-family: 'Poppins', sans-serif;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.45);
    font-weight: 600;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.demo-a2z .guarantee i {
    color: #22d3a5;
    filter: drop-shadow(0 0 5px rgba(34,211,165,0.35));
}

.demo-a2z .demo-page {
    padding-top: 120px !important;
    padding-bottom: 0 !important;
}

/* ── FOOTER ── */
.demo-a2z footer {
    background: linear-gradient(180deg, rgba(6,6,14,0.3) 0%, rgba(3,3,7,0.96) 100%);
    border-top: 1px solid rgba(168,85,247,0.15);
    padding: 40px 0 110px; /* added extra padding bottom for the sticky bar */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    position: relative;
    z-index: 10;
}

.demo-a2z footer .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.demo-a2z .footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 0;
    transition: transform 0.3s ease;
}

.demo-a2z .footer-brand:hover {
    transform: translateY(-2px);
}

.demo-a2z .footer-brand img {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    object-fit: contain;
    border: 1px solid rgba(168,85,247,0.3);
    box-shadow: 0 0 20px rgba(168,85,247,0.25);
    transition: all 0.3s ease;
}

.demo-a2z .footer-brand:hover img {
    box-shadow: 0 0 25px rgba(168,85,247,0.45);
    border-color: rgba(168,85,247,0.5);
}

.demo-a2z .footer-brand .site-brand-wordmark {
    font-family: 'Poppins', sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    display: flex;
    align-items: center;
}

.demo-a2z .footer-brand .site-brand-name {
    color: #ffffff;
}

.demo-a2z .footer-brand .site-brand-accent {
    background: linear-gradient(135deg, #c084fc 0%, #f472b6 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-left: 4px;
}

.demo-a2z footer p {
    font-family: 'Poppins', sans-serif;
    color: rgba(255,255,255,0.45);
    font-size: 0.85rem;
    font-weight: 500;
    margin: 4px 0 0;
    letter-spacing: 0.01em;
}

.demo-a2z .footer-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 8px;
    flex-wrap: wrap;
}

.demo-a2z .footer-links a {
    color: rgba(255,255,255,0.45);
    font-size: 0.82rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s ease;
    padding: 6px 12px;
    border-radius: 20px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.04);
}

.demo-a2z .footer-links a:hover {
    color: #ffffff;
    background: rgba(168,85,247,0.15);
    border-color: rgba(168,85,247,0.35);
    text-shadow: 0 0 10px rgba(168,85,247,0.4);
}

/* ── Play Icon Premium Override ── */
.demo-a2z .a2z-play-icon {
    background: linear-gradient(135deg, #e879f9, #a855f7);
    border: 1px solid rgba(255,255,255,0.2) !important;
    box-shadow: 0 4px 18px rgba(168,85,247,0.45);
}

/* ── MOBILE ── */
@media (max-width: 600px) {
    .demo-a2z .main-title {
        font-size: clamp(1.3rem, 6vw, 1.75rem);
    }

    .demo-a2z .btn-primary.btn-demo-buy {
        padding: 12px 24px;
        font-size: 0.9rem;
        border-radius: 12px;
        box-shadow:
            0 4px 0 0 #9a3412,
            0 7px 18px rgba(249,115,22,0.32),
            inset 0 1px 0 rgba(255,255,255,0.3);
    }

    .demo-a2z .btn-primary.btn-demo-buy:active {
        transform: translateY(3px);
        box-shadow:
            0 1px 0 0 #9a3412,
            0 3px 10px rgba(249,115,22,0.18);
    }

    .demo-a2z .demo-card:hover {
        transform: none;
    }

    .demo-a2z .timer-container.timer-premium {
        padding: 12px 14px;
    }

    .demo-a2z .time-box span:first-child {
        font-size: 1.25rem;
        min-width: 46px;
        padding: 8px 6px;
    }

    .demo-a2z .sticky-buy-bar .btn {
        padding: 9px 18px;
        font-size: 0.82rem;
    }

    .demo-a2z .a2z-video-shell:hover {
        transform: none;
    }
}

@media (max-width: 400px) {
    .demo-a2z .main-title {
        font-size: 1.2rem;
    }
    .demo-a2z .sub-title {
        font-size: 0.82rem;
    }
}

/* 3D Animated Pointing Emoji */
.emoji-3d-point-right {
    font-size: 1.8rem;
    display: inline-block;
    animation: pointRightSmooth 1s ease-in-out infinite;
    text-shadow: 
        1px 1px 0px #d97706, 
        2px 2px 0px #b45309, 
        3px 3px 0px #78350f, 
        4px 4px 5px rgba(0,0,0,0.6);
    filter: drop-shadow(0px 2px 4px rgba(0,0,0,0.4));
    margin-right: 8px;
    margin-left: auto;
    user-select: none;
    pointer-events: none;
    flex-shrink: 0;
    line-height: 1;
}

@keyframes pointRightSmooth {
    0%, 100% {
        transform: translateX(0) scale(1);
    }
    50% {
        transform: translateX(6px) scale(1.1);
    }
}

@media (max-width: 480px) {
    .emoji-3d-point-right {
        font-size: 1.35rem;
        margin-right: 4px;
    }
    @keyframes pointRightSmooth {
        0%, 100% {
            transform: translateX(0) scale(1);
        }
        50% {
            transform: translateX(4px) scale(1.08);
        }
    }
}

