/* =====================================================
   notjakoba — Giveaways
   Estética: Dark Neon Dopaminérgico
   ===================================================== */

:root {
    --bg-base: #0a0612;
    --bg-deep: #060410;
    --ink: #ffffff;
    --ink-soft: rgba(255, 255, 255, 0.72);
    --ink-faint: rgba(255, 255, 255, 0.42);

    --magenta: #ff2d87;
    --cyan: #00e6ff;
    --gold: #ffd166;
    --lime: #b6ff3c;
    --violet: #8b5cf6;

    --grad-money: linear-gradient(135deg, #ffd166 0%, #ff8e3c 50%, #ff2d87 100%);
    --grad-electric: linear-gradient(135deg, #00e6ff 0%, #8b5cf6 100%);
    --grad-hot: linear-gradient(135deg, #ff2d87 0%, #ff6b35 100%);

    --shadow-glow-pink: 0 0 60px rgba(255, 45, 135, 0.45);
    --shadow-glow-cyan: 0 0 60px rgba(0, 230, 255, 0.4);
    --shadow-glow-gold: 0 0 80px rgba(255, 209, 102, 0.55);

    --r-sm: 14px;
    --r-md: 22px;
    --r-lg: 32px;
    --r-pill: 999px;

    --font-display: 'Bricolage Grotesque', system-ui, sans-serif;
    --font-serif: 'Instrument Serif', Georgia, serif;
    --font-body: 'Inter', system-ui, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html, body {
    background: var(--bg-base);
    color: var(--ink);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.5;
    overflow-x: hidden;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
}

/* Background ambiente: blobs de gradiente + grão */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background:
        radial-gradient(circle at 15% 10%, rgba(255, 45, 135, 0.35), transparent 45%),
        radial-gradient(circle at 85% 85%, rgba(0, 230, 255, 0.28), transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 209, 102, 0.12), transparent 60%);
    z-index: -2;
    animation: pulse-bg 12s ease-in-out infinite;
}

body::after {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.4 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    opacity: 0.08;
    z-index: -1;
    pointer-events: none;
    mix-blend-mode: overlay;
}

@keyframes pulse-bg {
    0%, 100% { transform: scale(1) rotate(0deg); opacity: 1; }
    50% { transform: scale(1.15) rotate(8deg); opacity: 0.75; }
}

/* ===== Header ===== */
.topbar {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(18px) saturate(160%);
    -webkit-backdrop-filter: blur(18px) saturate(160%);
    background: rgba(10, 6, 18, 0.55);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: 14px 22px;
}

.topbar-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 14px;
}

.logo-circle {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid transparent;
    background:
        linear-gradient(var(--bg-base), var(--bg-base)) padding-box,
        var(--grad-money) border-box;
    box-shadow: var(--shadow-glow-gold);
}

.handle {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 19px;
    letter-spacing: -0.01em;
    display: flex;
    align-items: center;
    gap: 8px;
}

.handle .at {
    color: var(--magenta);
    font-style: italic;
    font-family: var(--font-serif);
    font-weight: 400;
}

.verified {
    width: 18px;
    height: 18px;
    background: var(--cyan);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-base);
    font-size: 11px;
    font-weight: 900;
}

.topbar-right {
    margin-left: auto;
    font-size: 12px;
    color: var(--ink-soft);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-family: var(--font-display);
}

/* ===== Container ===== */
.wrap {
    max-width: 720px;
    margin: 0 auto;
    padding: 32px 22px 80px;
}

.wrap-wide {
    max-width: 1100px;
}

/* ===== Tipografia ===== */
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    padding: 8px 14px;
    border-radius: var(--r-pill);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--ink-soft);
}

.eyebrow .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--lime);
    box-shadow: 0 0 12px var(--lime);
    animation: blink 1.4s ease-in-out infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.8); }
}

h1.bigtitle {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(2.4rem, 6vw, 4rem);
    line-height: 0.95;
    letter-spacing: -0.035em;
    margin: 22px 0 16px;
}

h1.bigtitle em {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
    background: var(--grad-money);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.lead {
    font-size: 17px;
    line-height: 1.55;
    color: var(--ink-soft);
    max-width: 560px;
}

/* ===== Card principal do prémio ===== */
.prize-card {
    position: relative;
    margin: 36px 0 28px;
    padding: 38px 32px 34px;
    border-radius: var(--r-lg);
    background:
        radial-gradient(circle at 80% 0%, rgba(255, 45, 135, 0.28), transparent 60%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    cursor: pointer;
    transition: transform 0.4s cubic-bezier(0.2, 0.9, 0.3, 1.4), box-shadow 0.4s ease;
}

.prize-card:hover {
    transform: translateY(-4px) scale(1.005);
    box-shadow: 0 40px 100px rgba(255, 45, 135, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.prize-card .week-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: rgba(0, 230, 255, 0.12);
    border: 1px solid rgba(0, 230, 255, 0.35);
    border-radius: var(--r-pill);
    color: var(--cyan);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.prize-card .amount {
    display: flex;
    align-items: flex-start;
    gap: 6px;
    margin: 22px 0 10px;
    font-family: var(--font-display);
    font-weight: 800;
    line-height: 0.85;
    letter-spacing: -0.05em;
}

.prize-card .amount .euro {
    font-size: clamp(2.2rem, 5vw, 3rem);
    color: var(--ink-soft);
    font-weight: 600;
    margin-top: 0.3em;
}

.prize-card .amount .num {
    font-size: clamp(5.5rem, 14vw, 9.5rem);
    background: var(--grad-money);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 8px 30px rgba(255, 209, 102, 0.4));
}

.prize-card .sub {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 22px;
    color: var(--ink);
    margin-bottom: 28px;
}

.prize-card .cta-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px dashed rgba(255, 255, 255, 0.12);
}

.prize-card .meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 13px;
    color: var(--ink-faint);
    font-family: var(--font-display);
}

.prize-card .meta strong {
    color: var(--ink);
    font-weight: 700;
    font-size: 16px;
    letter-spacing: -0.01em;
}

/* Confetti decorativos no card */
.confetti {
    position: absolute;
    pointer-events: none;
    opacity: 0.85;
}

.confetti.c1 { top: 18px; right: 22%; width: 14px; height: 14px; background: var(--lime); transform: rotate(28deg); }
.confetti.c2 { top: 60%; right: 8%; width: 10px; height: 10px; border-radius: 50%; background: var(--cyan); }
.confetti.c3 { top: 10%; right: 8%; width: 18px; height: 4px; background: var(--magenta); transform: rotate(-15deg); border-radius: 4px; }
.confetti.c4 { bottom: 18%; left: 8%; width: 12px; height: 12px; background: var(--gold); transform: rotate(45deg); }
.confetti.c5 { top: 40%; left: 4%; width: 6px; height: 14px; background: var(--violet); border-radius: 4px; transform: rotate(-25deg); }

.confetti.float { animation: float-confetti 4s ease-in-out infinite; }
.confetti.c2.float { animation-delay: 0.6s; }
.confetti.c3.float { animation-delay: 1.2s; }
.confetti.c4.float { animation-delay: 1.8s; }
.confetti.c5.float { animation-delay: 2.4s; }

@keyframes float-confetti {
    0%, 100% { transform: translateY(0) rotate(var(--r, 0deg)); }
    50% { transform: translateY(-10px) rotate(calc(var(--r, 0deg) + 20deg)); }
}

/* ===== Botões ===== */
.btn {
    appearance: none;
    border: 0;
    cursor: pointer;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 16px;
    letter-spacing: -0.01em;
    padding: 18px 26px;
    border-radius: var(--r-pill);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: transform 0.2s ease, box-shadow 0.3s ease, background 0.3s ease;
    text-decoration: none;
    color: inherit;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--grad-money);
    color: #1a0a00;
    box-shadow: 0 12px 40px rgba(255, 142, 60, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 20px 60px rgba(255, 142, 60, 0.7), inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.btn-primary:active { transform: translateY(0); }

.btn-electric {
    background: var(--grad-electric);
    color: var(--bg-base);
    box-shadow: 0 12px 40px rgba(0, 230, 255, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn-electric:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 60px rgba(0, 230, 255, 0.6);
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--ink);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.25);
}

.btn-whatsapp {
    background: #25D366;
    color: #062b14;
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn-whatsapp:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 20px 60px rgba(37, 211, 102, 0.6);
}

.btn-telegram {
    background: linear-gradient(135deg, #29b6f6, #0288d1);
    color: white;
    box-shadow: 0 12px 40px rgba(2, 136, 209, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn-telegram:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 20px 60px rgba(2, 136, 209, 0.7);
}

.btn[disabled],
.btn.is-locked {
    opacity: 0.45;
    cursor: not-allowed;
    filter: grayscale(0.4);
    transform: none !important;
    box-shadow: none !important;
}

.btn .arrow {
    transition: transform 0.3s ease;
}

.btn:hover .arrow {
    transform: translateX(4px);
}

/* Shimmer no botão primário */
.btn-primary::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    100% { left: 200%; }
}

/* ===== Step indicator ===== */
.steps {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    font-family: var(--font-display);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--ink-faint);
}

.steps .step-dot {
    width: 28px;
    height: 4px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.1);
    transition: background 0.3s ease;
}

.steps .step-dot.active {
    background: var(--grad-money);
    box-shadow: 0 0 12px rgba(255, 142, 60, 0.6);
}

.steps .step-dot.done {
    background: var(--lime);
}

/* ===== Rules card ===== */
.rule-block {
    margin: 28px 0;
    padding: 32px 26px;
    border-radius: var(--r-lg);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015));
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.rule-block .num {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: clamp(4rem, 12vw, 7rem);
    line-height: 0.9;
    background: var(--grad-money);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: -10px;
}

.rule-block h2 {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 4vw, 2.2rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.05;
    margin-bottom: 14px;
}

.rule-block .alert {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 12px;
    padding: 12px 16px;
    background: rgba(255, 209, 102, 0.08);
    border: 1px solid rgba(255, 209, 102, 0.3);
    border-radius: var(--r-md);
    font-size: 14px;
    color: var(--gold);
}

.rule-block .alert .ico {
    font-size: 18px;
    animation: ring 2s ease-in-out infinite;
}

@keyframes ring {
    0%, 100% { transform: rotate(0); }
    20%, 60% { transform: rotate(-15deg); }
    40%, 80% { transform: rotate(15deg); }
}

/* ===== Social buttons grid ===== */
.social-grid {
    display: grid;
    gap: 12px;
    margin: 26px 0;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 22px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--r-md);
    text-decoration: none;
    color: var(--ink);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.social-btn:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateX(4px);
}

.social-btn .ico-wrap {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.08);
}

.social-btn.tiktok .ico-wrap { background: linear-gradient(135deg, #ff0050, #00f2ea); }
.social-btn.insta .ico-wrap { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.social-btn.insta2 .ico-wrap { background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045); }

.social-btn .ico-wrap svg {
    width: 22px;
    height: 22px;
    fill: white;
}

.social-btn .info {
    flex: 1;
    min-width: 0;
}

.social-btn .info .label {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 2px;
}

.social-btn .info .handle-small {
    font-size: 13px;
    color: var(--ink-faint);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.social-btn .check {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.social-btn.checked .check {
    background: var(--lime);
    border-color: var(--lime);
    box-shadow: 0 0 18px rgba(182, 255, 60, 0.7);
}

.social-btn.checked .check::after {
    content: '✓';
    color: var(--bg-base);
    font-weight: 900;
    font-size: 16px;
}

.social-btn.checked {
    border-color: rgba(182, 255, 60, 0.4);
    background: rgba(182, 255, 60, 0.05);
}

/* ===== Form ===== */
.form-block {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin: 28px 0;
}

.field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.field label {
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ink-soft);
}

.field input {
    appearance: none;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--r-md);
    padding: 18px 20px;
    color: var(--ink);
    font-family: var(--font-body);
    font-size: 16px;
    outline: none;
    transition: all 0.25s ease;
}

.field input:focus {
    background: rgba(255, 255, 255, 0.07);
    border-color: var(--cyan);
    box-shadow: 0 0 0 4px rgba(0, 230, 255, 0.15);
}

.field input::placeholder {
    color: var(--ink-faint);
}

/* ===== Trading hype card ===== */
.hype-card {
    margin: 24px 0;
    padding: 30px 26px;
    border-radius: var(--r-lg);
    background:
        radial-gradient(circle at 100% 0%, rgba(0, 230, 255, 0.25), transparent 50%),
        radial-gradient(circle at 0% 100%, rgba(139, 92, 246, 0.25), transparent 50%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
    border: 1px solid rgba(0, 230, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.hype-card .stack-numbers {
    display: flex;
    gap: 24px;
    margin: 22px 0;
    flex-wrap: wrap;
}

.stat {
    flex: 1;
    min-width: 120px;
}

.stat .val {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(2rem, 6vw, 2.8rem);
    line-height: 1;
    letter-spacing: -0.03em;
    background: var(--grad-electric);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat .lbl {
    margin-top: 8px;
    font-family: var(--font-display);
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--ink-faint);
}

/* ===== Success page ===== */
.celebration {
    text-align: center;
    padding: 28px 0;
}

.celebration .checkmark {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: var(--grad-money);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    box-shadow: var(--shadow-glow-gold);
    animation: pop-in 0.7s cubic-bezier(0.2, 1.5, 0.3, 1);
}

.celebration .checkmark svg {
    width: 44px;
    height: 44px;
    fill: var(--bg-base);
}

@keyframes pop-in {
    0% { transform: scale(0) rotate(-90deg); opacity: 0; }
    100% { transform: scale(1) rotate(0); opacity: 1; }
}

/* ===== Footer ===== */
.footer {
    margin-top: 60px;
    padding: 30px 22px;
    text-align: center;
    color: var(--ink-faint);
    font-size: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-family: var(--font-display);
    letter-spacing: 0.05em;
}

.footer span {
    color: var(--magenta);
}

/* ===== Reveal animations ===== */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    animation: reveal-up 0.7s cubic-bezier(0.2, 0.9, 0.3, 1) forwards;
}

.reveal.d1 { animation-delay: 0.1s; }
.reveal.d2 { animation-delay: 0.2s; }
.reveal.d3 { animation-delay: 0.35s; }
.reveal.d4 { animation-delay: 0.5s; }
.reveal.d5 { animation-delay: 0.65s; }

@keyframes reveal-up {
    to { opacity: 1; transform: translateY(0); }
}

/* ===== Mobile tweaks ===== */
@media (max-width: 520px) {
    .topbar { padding: 12px 16px; }
    .wrap { padding: 24px 16px 60px; }
    .prize-card { padding: 28px 22px; }
    .rule-block { padding: 26px 22px; }
    .topbar-right { display: none; }
}

/* Erro mensagem */
.error-msg {
    padding: 14px 18px;
    background: rgba(255, 45, 135, 0.1);
    border: 1px solid rgba(255, 45, 135, 0.4);
    border-radius: var(--r-md);
    color: #ff7eb0;
    font-size: 14px;
    margin-bottom: 18px;
}
