Cashapp

Cash App $850 Reward Giveaway – Complete Steps to Qualify :root { --bg: #f6fbf8; --card: #ffffff; --text: #0f172a; --muted: #5b6475; --line: #e6ece8; --accent: #19c37d; --accent-dark: #119c63; --soft: #eafaf2; --shadow: 0 18px 50px rgba(15, 23, 42, 0.08); --radius: 24px; } * { box-sizing: border-box; } html { scroll-behavior: smooth; } body { margin: 0; font-family: Inter, Arial, Helvetica, sans-serif; color: var(--text); background: linear-gradient(180deg, #f2fbf6 0%, #ffffff 60%); } img { max-width: 100%; display: block; } a { text-decoration: none; } .container { width: min(1120px, calc(100% - 32px)); margin: 0 auto; } .topbar { background: #0f172a; color: #fff; text-align: center; padding: 10px 14px; font-size: 14px; letter-spacing: 0.01em; } header { padding: 18px 0; } .nav { display: flex; justify-content: space-between; align-items: center; gap: 16px; } .brand { display: flex; align-items: center; gap: 12px; font-weight: 800; color: var(--text); } .brand-badge { width: 42px; height: 42px; border-radius: 14px; background: linear-gradient(135deg, var(--accent), #68e3a9); display: grid; place-items: center; box-shadow: 0 12px 26px rgba(25, 195, 125, 0.25); color: #fff; font-size: 20px; } .nav-links { display: flex; gap: 18px; align-items: center; flex-wrap: wrap; } .nav-links a { color: var(--muted); font-weight: 600; font-size: 15px; } .btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 16px 24px; border-radius: 18px; font-weight: 900; transition: transform .2s ease, background .2s ease, color .2s ease, box-shadow .2s ease; border: 1px solid transparent; cursor: pointer; position: relative; overflow: hidden; } .btn::before { content: ""; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(255,255,255,.28), rgba(255,255,255,0) 45%, rgba(255,255,255,.16) 75%, rgba(255,255,255,0)); transform: translateX(-120%); transition: transform .6s ease; } .btn:hover::before { transform: translateX(120%); } .btn:hover { transform: translateY(-2px) scale(1.01); box-shadow: 0 18px 36px rgba(17, 156, 99, 0.28); } .btn-primary { background: linear-gradient(180deg, #33d690 0%, #19c37d 52%, #0fa765 100%); color: #fff; box-shadow: 0 14px 28px rgba(25, 195, 125, 0.24), inset 0 1px 0 rgba(255,255,255,.35); } .btn-primary:hover { background: linear-gradient(180deg, #3bde98 0%, #1cc980 52%, #109d61 100%); } .btn-secondary { background: #fff; color: var(--text); border-color: var(--line); } .hero { padding: 34px 0 28px; } .hero-grid { display: grid; grid-template-columns: 1.12fr 0.88fr; gap: 28px; align-items: center; } .pill { display: inline-flex; gap: 8px; align-items: center; padding: 10px 14px; border-radius: 999px; background: var(--soft); color: #16734c; font-size: 13px; font-weight: 800; margin-bottom: 16px; border: 1px solid #cdeedc; } h1 { margin: 0 0 16px; font-size: clamp(36px, 5vw, 60px); line-height: 1.04; letter-spacing: -0.03em; } .sub { color: var(--muted); font-size: 18px; line-height: 1.7; max-width: 680px; margin-bottom: 24px; } .cta-row { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 18px; } .mini { color: var(--muted); font-size: 14px; } .hero-card, .card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); } .hero-card { padding: 18px; overflow: hidden; position: relative; } .hero-art { border-radius: 22px; overflow: hidden; border: 1px solid var(--line); background: #edf9f3; aspect-ratio: 4 / 4.2; position: relative; isolation: isolate; } .hero-art::before, .hero-art::after { content: ""; position: absolute; border-radius: 999px; filter: blur(12px); opacity: .75; pointer-events: none; z-index: 2; animation: floatOrb 7s ease-in-out infinite; } .hero-art::before { width: 110px; height: 110px; background: rgba(25,195,125,.24); top: 12%; left: 6%; } .hero-art::after { width: 84px; height: 84px; background: rgba(255,255,255,.55); right: 8%; bottom: 12%; animation-delay: -3s; } .hero-art img{width:100%;height:100%;object-fit:cover;display:block;transform:scale(1.02);} .hero-art svg { width: 100%; height: 100%; display: block; } .float-card { position: absolute; right: 16px; bottom: 16px; background: rgba(255,255,255,.96); border: 1px solid var(--line); border-radius: 18px; padding: 14px; min-width: 210px; box-shadow: 0 18px 35px rgba(15, 23, 42, 0.12); backdrop-filter: blur(8px); } .float-amount { font-size: 32px; font-weight: 900; color: var(--accent-dark); line-height: 1; margin-bottom: 8px; } .float-label { color: var(--muted); font-size: 14px; } .trust-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 18px; } .trust-item { background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 16px; text-align: center; } .trust-item strong { display: block; font-size: 15px; margin-bottom: 6px; } .trust-item span { color: var(--muted); font-size: 13px; } section { padding: 34px 0; } .section-head { text-align: center; max-width: 760px; margin: 0 auto 24px; } .section-head h2 { margin: 0 0 10px; font-size: clamp(28px, 4vw, 42px); letter-spacing: -0.02em; } .section-head p { margin: 0; color: var(--muted); font-size: 17px; line-height: 1.7; } .grid-3, .grid-4 { display: grid; gap: 18px; } .grid-3 { grid-template-columns: repeat(3, 1fr); } .grid-4 { grid-template-columns: repeat(4, 1fr); } .card { padding: 22px; } .icon { width: 52px; height: 52px; display: grid; place-items: center; border-radius: 16px; background: var(--soft); margin-bottom: 14px; color: #16734c; font-size: 24px; font-weight: 900; } .card h3 { margin: 0 0 10px; font-size: 20px; } .card p, .card li { color: var(--muted); font-size: 15px; line-height: 1.7; } .step { position: relative; overflow: hidden; } .step-no { position: absolute; top: 16px; right: 18px; font-size: 42px; font-weight: 900; color: #dff5e8; line-height: 1; } .visual-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; } .visual { border-radius: 24px; overflow: hidden; border: 1px solid var(--line); background: #f0faf5; min-height: 280px; } .visual svg { width: 100%; height: 100%; display: block; } .faq { max-width: 900px; margin: 0 auto; display: grid; gap: 14px; } details { background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 18px 20px; box-shadow: var(--shadow); } summary { cursor: pointer; font-weight: 800; list-style: none; } summary::-webkit-details-marker { display: none; } details p { margin: 12px 0 0; color: var(--muted); line-height: 1.7; } .cta-box { padding: 28px; background: linear-gradient(180deg, #eefaf4 0%, #ffffff 100%); border: 1px solid #d8eee2; border-radius: 28px; box-shadow: var(--shadow); text-align: center; } .cta-box h2 { margin: 0 0 10px; font-size: clamp(28px, 4vw, 42px); } .cta-box p { color: var(--muted); max-width: 760px; margin: 0 auto 18px; line-height: 1.7; } footer { padding: 28px 0 46px; color: var(--muted); font-size: 13px; } .notice { margin-top: 16px; padding: 16px; background: #fff8e8; border: 1px solid #f4e3b2; color: #6e5b1c; border-radius: 18px; font-size: 14px; line-height: 1.7; } .cta-wrap { position: relative; display: inline-flex; flex-direction: column; align-items: center; gap: 10px; } .pulse-ring { position: absolute; inset: 50% auto auto 50%; width: 100%; height: 100%; min-width: 260px; min-height: 62px; transform: translate(-50%, -50%); border-radius: 22px; background: rgba(25, 195, 125, .18); animation: pulseRing 2.2s ease-out infinite; pointer-events: none; z-index: 0; } .btn-label { position: relative; z-index: 1; display: inline-flex; align-items: center; gap: 10px; } .btn-arrow { width: 28px; height: 28px; border-radius: 999px; background: rgba(255,255,255,.18); display: inline-grid; place-items: center; box-shadow: inset 0 1px 0 rgba(255,255,255,.22); transition: transform .2s ease, background .2s ease; font-size: 16px; } .btn:hover .btn-arrow { transform: translateX(2px); background: rgba(255,255,255,.24); } .live-chip { position: absolute; top: 14px; left: 14px; z-index: 3; display: inline-flex; align-items: center; gap: 8px; padding: 8px 12px; border-radius: 999px; background: rgba(15, 23, 42, .78); color: #fff; font-size: 12px; font-weight: 800; backdrop-filter: blur(10px); box-shadow: 0 10px 24px rgba(15, 23, 42, .18); } .live-dot { width: 10px; height: 10px; border-radius: 999px; background: #36df96; box-shadow: 0 0 0 0 rgba(54,223,150,.55); animation: liveDot 1.8s infinite; } .shine-card { position: absolute; right: 16px; bottom: 16px; z-index: 3; padding: 12px 14px; border-radius: 18px; background: rgba(255,255,255,.84); border: 1px solid rgba(255,255,255,.9); backdrop-filter: blur(12px); box-shadow: 0 14px 30px rgba(15, 23, 42, .14); text-align: left; max-width: 220px; animation: floatCard 5.5s ease-in-out infinite; } .shine-card strong { display: block; font-size: 14px; margin-bottom: 4px; color: var(--text); } .shine-card span { font-size: 12px; color: var(--muted); line-height: 1.5; } @keyframes pulseRing { 0% { opacity: .28; transform: translate(-50%, -50%) scale(.9); } 70% { opacity: 0; transform: translate(-50%, -50%) scale(1.18); } 100% { opacity: 0; transform: translate(-50%, -50%) scale(1.22); } } @keyframes liveDot { 0% { box-shadow: 0 0 0 0 rgba(54,223,150,.55); } 70% { box-shadow: 0 0 0 10px rgba(54,223,150,0); } 100% { box-shadow: 0 0 0 0 rgba(54,223,150,0); } } @keyframes floatOrb { 0%, 100% { transform: translateY(0px); } 50% { transform: translateY(-16px); } } @keyframes floatCard { 0%, 100% { transform: translateY(0px); } 50% { transform: translateY(-8px); } } @media (max-width: 960px) { .hero-grid, .grid-3, .grid-4, .visual-grid, .trust-row { grid-template-columns: 1fr; } .nav { flex-direction: column; align-items: flex-start; } .nav-links { width: 100%; justify-content: flex-start; } } Clear reward information • Eligibility details • Mobile-friendly design✓ Cash App $850 reward giveawayCash App $850 Reward GiveawayComplete a few required steps to check eligibility and see if you can qualify for the $850 Cash App reward opportunity.Live updateQuick eligibility checkSimple next step with a cleaner, more polished design. Complete Steps & Check Eligibility →Click the button above to continue and complete the required steps to check if you qualify for the $850 Cash App reward giveaway.© 2026 Cash Reward GiveawayThis template is designed for transparent promotional pages and informational reward flows.