/* ===== CSS Variables & Design Tokens ===== */
:root {
    --bgprimary: #050505;
    --bgsecondary: #0a0a0a;
    --bgcard: rgba(255, 255, 255, 0.02);
    --bgcardhover: rgba(255, 255, 255, 0.05);
    --bgglass: rgba(10, 10, 10, 0.6);
    --bgfeatured: linear-gradient(135deg, rgba(212, 175, 55, 0.08), rgba(184, 134, 11, 0.05));
    --bgfeaturedhover: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(184, 134, 11, 0.1));
    --bordercolor: rgba(255, 255, 255, 0.04);
    --borderhover: rgba(212, 175, 55, 0.2);
    --borderfeatured: rgba(212, 175, 55, 0.25);
    --textprimary: #ffffff;
    --textsecondary: #d1d1d1;
    --textsubtle: #8a8a8a;
    --accentgold: #d4af37;
    --accentwarm: #f1d592;
    --accentamber: #b8860b;
    --accentgreen: #10b981;
    --accentred: #ff4d4d;
    --gradientmain: linear-gradient(135deg, #d4af37, #f1d592, #b8860b);
    --gradientglow: linear-gradient(135deg, rgba(212, 175, 55, 0.3), rgba(241, 213, 146, 0.15));
    --gradientfire: linear-gradient(135deg, #f59e0b, #ef4444);
    --shadowsm: 0 2px 8px rgba(0, 0, 0, 0.4);
    --shadowmd: 0 8px 32px rgba(0, 0, 0, 0.5);
    --shadowlg: 0 16px 48px rgba(0, 0, 0, 0.6);
    --shadowgold: 0 0 30px rgba(212, 175, 55, 0.08);
    --radiussm: 10px;
    --radiusmd: 18px;
    --radiuslg: 32px;
    --radiusfull: 9999px;
    --fontheading: 'Space Grotesk', sans-serif;
    --fontbody: 'Plus Jakarta Sans', sans-serif;
    --transitionfast: 0.2s cubic-bezier(0.25, 0.1, 0.25, 1);
    --transitionsmooth: 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
    --transitionbounce: 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* ===== Reset & Base ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--fontbody);
    background: var(--bgprimary);
    color: var(--textprimary);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    overflow-x: hidden;
    position: relative;
}

/* ===== Background Elements ===== */
#particlescanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}



@keyframes ambientFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -20px) scale(1.05); }
    66% { transform: translate(-20px, 15px) scale(0.95); }
}

/* ===== Container ===== */
.container {
    width: 100%;
    max-width: 480px;
    padding: 20px 20px 60px;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* ===== Live Bar ===== */
.livebar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: var(--radiusfull);
    font-size: 12px;
    font-weight: 600;
    color: #34d399;
    margin-bottom: 24px;
    animation: fadeInDown 0.5s ease-out forwards;
}

.livedot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    animation: livePulse 1.5s ease-in-out infinite;
}

@keyframes livePulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.5); }
    50% { opacity: 0.6; box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-15px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ===== Profile Section ===== */
.profile {
    text-align: center;
    margin-bottom: 28px;
    opacity: 0;
    animation: fadeInUp 0.6s ease-out 0.2s forwards;
}

.avatarring {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    padding: 3px;
    background: var(--gradientmain);
    margin: 0 auto 20px;
    position: relative;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.15);
}

.avatar {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--bgsecondary);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 3px solid var(--bgprimary);
    transition: transform 0.4s var(--transitionbounce);
}

.avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profilename {
    font-family: var(--fontheading);
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -0.5px;
    margin-bottom: 8px;
    background: var(--gradientmain);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.profilebio {
    font-size: 14px;
    color: var(--textsecondary);
    font-weight: 500;
    min-height: 20px;
}

.cursorblink {
    color: var(--accentgold);
    animation: blink 0.8s step-end infinite;
}

@keyframes blink { 50% { opacity: 0; } }

/* ===== Header Socials ===== */
.socialheader {
    margin-bottom: 32px;
    opacity: 0;
    animation: fadeInUp 0.5s ease-out 0.3s forwards;
}

.socialcta {
    text-align: center;
    font-size: 13px;
    color: var(--textsubtle);
    font-weight: 600;
    margin-bottom: 14px;
    letter-spacing: 0.5px;
}

.socialicons {
    display: flex;
    justify-content: center;
    gap: 14px;
}

.socialicon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--textsecondary);
    font-size: 18px;
    text-decoration: none;
    transition: all 0.4s ease;
}

.socialicon:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--borderhover);
    color: var(--accentgold);
    transform: translateY(-5px) scale(1.1);
}

/* ===== Urgency Banner ===== */
.urgencybanner {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 12px 24px;
    background: linear-gradient(90deg, transparent, rgba(255, 40, 40, 0.08), transparent);
    border: none;
    border-radius: 100px;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    pointer-events: none;
    user-select: none;
    opacity: 0;
    animation: fadeInUp 0.6s ease-out 0.4s forwards;
}

@keyframes borderPulseRed {
    0% { border-color: rgba(255, 50, 50, 0.3); box-shadow: 0 0 5px rgba(255, 50, 50, 0.1); }
    100% { border-color: rgba(255, 50, 50, 0.7); box-shadow: 0 0 15px rgba(255, 50, 50, 0.3); }
}

@keyframes bannerFadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.urgencyicon {
    font-size: 28px;
    filter: drop-shadow(0 0 10px #ff4d4d);
    animation: iconPulse 1.5s ease-in-out infinite;
}

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

.urgencycontent {
    display: flex;
    flex-direction: column;
    gap: 0;
    z-index: 2;
}

.urgencytitle {
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 3px;
    color: #ff3333;
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.7);
    text-transform: uppercase;
}

.urgencytimer {
    font-size: 14px;
    color: white;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 500;
}

.urgencytimer strong {
    font-size: 20px;
    display: inline;
    margin-left: 8px;
    font-weight: 800;
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.4);
}

/* ===== Link Cards ===== */
.linkssection {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
}

.linkcard {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radiusmd);
    text-decoration: none;
    color: var(--textprimary);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    opacity: 0;
    animation: fadeInUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.linkcard:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: var(--accentgold);
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), 0 0 15px rgba(212, 175, 55, 0.1);
}

.linkcard:active, .linkcard.clicked {
    transform: scale(0.96) translateY(0);
    transition: all 0.1s ease;
    border-color: #fff;
    box-shadow: 0 0 40px rgba(255, 255, 255, 0.2);
}

.linkcard.clicked::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5px;
    height: 5px;
    background: rgba(255, 255, 255, 0.4);
    opacity: 0;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: clickRipple 0.6s ease-out;
}

@keyframes clickRipple {
    0% { width: 0; height: 0; opacity: 1; }
    100% { width: 500px; height: 500px; opacity: 0; }
}

.linkglow {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(350px circle at var(--mousex) var(--mousey), rgba(212, 175, 55, 0.2), transparent 80%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.linkcard:hover .linkglow { opacity: 1; }

/* Featured Card: Produto do Dia */
.linkcard.featured {
    background: linear-gradient(90deg, rgba(245, 158, 11, 0.15), rgba(239, 68, 68, 0.15), rgba(245, 158, 11, 0.15));
    background-size: 200% 100%;
    border: 1px solid rgba(239, 68, 68, 0.3);
    animation: fadeInUp 0.7s forwards, featuredFlow 2s ease-in-out infinite;
    box-shadow: 0 0 20px rgba(239, 68, 68, 0.1);
}

@keyframes featuredFlow {
    0% { background-position: 0% 50%; border-color: rgba(245, 158, 11, 0.4); }
    50% { background-position: 100% 50%; border-color: rgba(239, 68, 68, 0.4); }
    100% { background-position: 0% 50%; border-color: rgba(245, 158, 11, 0.4); }
}

.linkcard.featured:hover {
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.6), 0 0 30px rgba(239, 68, 68, 0.2);
}

.linkcard.featured .linkglow {
    background: radial-gradient(350px circle at var(--mousex) var(--mousey), rgba(239, 68, 68, 0.15), transparent 80%);
}

.linkcard.featured .linkicon {
    color: #ff6a00;
    font-size: 22px;
    background: none;
    border: none;
    box-shadow: none;
    position: relative;
    animation: fireIconColor 1.5s ease-in-out infinite alternate, fireIconScale 0.8s ease-in-out infinite alternate;
    text-shadow:
        0 0 4px #ff6a00,
        0 0 10px #ff4500,
        0 0 20px #ff0000,
        0 0 40px #ff000088,
        0 -5px 15px #ff6a0088;
    filter: none;
}

@keyframes fireIconColor {
    0% { color: #ffcc00; text-shadow: 0 0 4px #ffcc00, 0 0 10px #ff9900, 0 0 20px #ff6600, 0 0 40px #ff330088, 0 -5px 15px #ff990088; }
    50% { color: #ff6a00; text-shadow: 0 0 4px #ff6a00, 0 0 10px #ff4500, 0 0 20px #ff0000, 0 0 40px #ff000088, 0 -5px 15px #ff6a0088; }
    100% { color: #ff4400; text-shadow: 0 0 4px #ff4400, 0 0 10px #cc0000, 0 0 20px #aa0000, 0 0 40px #88000088, 0 -5px 15px #ff220088; }
}

@keyframes fireIconScale {
    0% { transform: scale(1) translateY(0); }
    100% { transform: scale(1.1) translateY(-2px); }
}

.linkcard.featured:hover .linkicon {
    animation: fireIconColor 0.8s ease-in-out infinite alternate, fireIconScale 0.4s ease-in-out infinite alternate;
    text-shadow:
        0 0 6px #ffcc00,
        0 0 15px #ff6a00,
        0 0 30px #ff4500,
        0 0 50px #ff000088,
        0 -8px 20px #ff990088;
}

.linkcard.featured .featuredbadge {
    box-shadow: 0 0 15px rgba(239, 68, 68, 0.4);
    animation: badgePulse 1.5s infinite;
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); filter: brightness(1); }
    50% { transform: scale(1.1); filter: brightness(1.3); }
}


.linkicon, .linkimageContainer {
    width: 60px;
    height: 80px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--textsecondary);
    transition: all 0.3s ease;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3), inset 0 0 0 1px rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.linkicon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
}

.linkimage {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.linkcard:hover .linkimage {
    transform: scale(1.1);
}

/* Iconic Colors */
.linkcard:nth-child(1) .linkicon { color: #f59e0b; filter: drop-shadow(0 0 8px rgba(245, 158, 11, 0.6)); } /* Fire/Gold */
.linkcard.featured .featuredbadge {
    box-shadow: 0 0 15px rgba(239, 68, 68, 0.4);
    animation: badgePulse 1.5s infinite;
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); filter: brightness(1); }
    50% { transform: scale(1.1); filter: brightness(1.3); }
}

.linkcard:nth-child(2) .linkicon { color: #10b981; filter: drop-shadow(0 0 8px rgba(16, 185, 129, 0.6)); } /* Green/Store */
.linkcard:nth-child(3) .linkicon { color: #3b82f6; filter: drop-shadow(0 0 8px rgba(59, 130, 246, 0.6)); } /* Blue/Ebook */
.linkcard.whatsappcard .linkicon { color: #25d366; filter: drop-shadow(0 0 8px rgba(37, 211, 102, 0.6)); } /* WhatsApp */

/* Vitrine Card — Estilo Loja Digital */
.linkcard.vitrinecard {
    border-color: rgba(56, 189, 248, 0.2);
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.05), rgba(0, 0, 0, 0.4), rgba(139, 92, 246, 0.04));
    background-size: 200% 200%;
    animation: fadeInUp 0.7s forwards, vitrineShift 6s ease infinite;
}

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

.linkcard.vitrinecard:hover {
    border-color: #38bdf8;
    box-shadow: 0 15px 40px rgba(56, 189, 248, 0.15), 0 0 20px rgba(56, 189, 248, 0.1);
}

.linkcard.vitrinecard .linkglow {
    background: radial-gradient(350px circle at var(--mousex) var(--mousey), rgba(56, 189, 248, 0.2), transparent 80%);
}

.linkcard.vitrinecard .linkicon {
    color: #38bdf8 !important;
    filter: drop-shadow(0 0 10px rgba(56, 189, 248, 0.7)) !important;
}

/* Badge de Desconto — Vitrine */
.vitrinebadge {
    position: absolute;
    top: -1px;
    right: 20px;
    background: linear-gradient(135deg, #38bdf8, #818cf8);
    color: #000;
    font-size: 11px;
    font-weight: 900;
    padding: 5px 12px 7px;
    border-radius: 0 0 10px 10px;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(56, 189, 248, 0.4);
    z-index: 2;
    animation: badgeSwing 3s ease-in-out infinite;
}

@keyframes badgeSwing {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(2deg); }
    75% { transform: rotate(-2deg); }
}

/* WhatsApp VIP Card — Exclusividade */
.linkcard.whatsappcard {
    border-color: rgba(37, 211, 102, 0.25);
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.08), rgba(0, 0, 0, 0.5), rgba(37, 211, 102, 0.04));
    background-size: 200% 200%;
    animation: fadeInUp 0.7s forwards, vipShift 5s ease infinite;
}

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

.linkcard.whatsappcard:hover {
    border-color: #25d366;
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.2), 0 0 25px rgba(37, 211, 102, 0.15);
}

.linkcard.whatsappcard .linkglow {
    background: radial-gradient(350px circle at var(--mousex) var(--mousey), rgba(37, 211, 102, 0.2), transparent 80%);
}

.linkcard.whatsappcard .linkicon {
    color: #25d366 !important;
    filter: drop-shadow(0 0 10px rgba(37, 211, 102, 0.7)) !important;
}

/* Indicador de Atividade VIP */
.vippulse {
    display: inline-block;
    width: 7px;
    height: 7px;
    background: #25d366;
    border-radius: 50%;
    margin-right: 4px;
    vertical-align: middle;
    animation: vipDot 1.5s ease-in-out infinite;
    box-shadow: 0 0 6px #25d366;
}

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

.linkcard:hover .linkicon {
    transform: scale(1.2) rotate(-8deg);
}

.linkcontent {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.linktitle {
    font-weight: 800;
    font-size: 16px;
    letter-spacing: -0.2px;
}

.linksubtitle {
    font-size: 12.5px;
    color: var(--textsubtle);
    font-weight: 500;
}

.linkarrow {
    color: var(--textsubtle);
    font-size: 14px;
    transition: all 0.3s ease;
}

.linkcard:hover .linkarrow {
    transform: translateX(8px);
    color: white;
}

.cardshimmer {
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    animation: shimmerSweep 4s infinite;
}

@keyframes shimmerSweep {
    0% { left: -100%; }
    50% { left: 150%; }
    100% { left: 150%; }
}

/* Badges original hanging style */
.featuredbadge, .freebadge, .vipbadge {
    position: absolute;
    top: 12px;
    right: 20px;
    padding: 2px 10px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    border-radius: 4px;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 5;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.featuredbadge { 
    background: rgba(239, 68, 68, 0.2); 
    border-color: rgba(239, 68, 68, 0.5); 
    color: #ff4d4d;
}

.freebadge { 
    background: rgba(16, 185, 129, 0.2); 
    border-color: rgba(16, 185, 129, 0.5); 
    color: #10b981; 
}

.vipbadge { 
    background: rgba(212, 175, 55, 0.2); 
    border-color: rgba(212, 175, 55, 0.5); 
    color: var(--accentgold); 
}

.highlightdiscount { color: #f87171; font-weight: 800; }

/* ===== Social Proof ===== */
.socialproof {
    width: 100%;
    display: flex;
    justify-content: space-around;
    padding: 24px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--bordercolor);
    border-radius: var(--radiusmd);
    margin-bottom: 32px;
    opacity: 0;
    animation: fadeInUp 0.5s ease-out 0.8s forwards;
}

.proofitem {
    text-align: center;
    display: flex;
    flex-direction: column;
}

.proofnumber {
    font-size: 22px;
    font-weight: 800;
    color: var(--accentgold);
}

.prooflabel { font-size: 14px; color: var(--accentwarm); font-weight: 800;}

.prooftext {
    font-size: 10px;
    color: var(--textsubtle);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 4px;
}

.proofdivider {
    width: 1px;
    height: 40px;
    background: var(--bordercolor);
}

/* ===== Footer ===== */
.socialfooter {
    text-align: center;
    opacity: 0;
    animation: fadeInUp 0.5s ease-out 1s forwards;
}

.footertext {
    font-size: 12px;
    color: var(--textsubtle);
}

.heart { color: #ef4444; display: inline-block; animation: heartBeat 1.5s ease-in-out infinite; }

@keyframes heartBeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

/* ===== Animations ===== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ===== Toast ===== */
.toastcontainer {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1000;
    width: 90%;
    max-width: 360px;
}

.toast {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: rgba(15, 15, 15, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.03);
    position: relative;
    overflow: hidden;
    animation: toastIn 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.toast.toastout {
    animation: toastOut 0.4s ease-in forwards;
}

.toasticon {
    font-size: 20px;
    flex-shrink: 0;
    animation: toastIconBounce 0.6s ease-out 0.3s;
}

.toasttext {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.2px;
    line-height: 1.3;
}

.toastprogress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accentgold), #ff6a00);
    border-radius: 0 0 14px 14px;
    animation: toastProgress 3.5s linear forwards;
}

@keyframes toastIn {
    from { opacity: 0; transform: translateY(30px) scale(0.9); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes toastOut {
    from { opacity: 1; transform: translateY(0) scale(1); }
    to { opacity: 0; transform: translateY(20px) scale(0.9); }
}

@keyframes toastIconBounce {
    0% { transform: scale(1); }
    40% { transform: scale(1.3); }
    100% { transform: scale(1); }
}

@keyframes toastProgress {
    from { width: 100%; }
    to { width: 0%; }
}

/* Responsive */
@media (max-width: 480px) {
    .container { padding: 15px; }
    .profilename { font-size: 24px; }
    .socialproof { padding: 16px; gap: 10px; }
}
