:root{--bg:#0f1724;--card:#0b1220;--accent:#6ee7b7;--muted:#9ca3af;color-scheme:dark}
*{box-sizing:border-box}
html,body{height:100%;margin:0;font-family:Inter,system-ui,Segoe UI,Roboto,'Helvetica Neue',Arial}
body{background:linear-gradient(180deg,var(--bg),#071025);color:#e6eef8;display:flex;flex-direction:column;align-items:center;justify-content:flex-start}
.container{max-width:720px;padding:32px}
h1{margin:0 0 8px;font-size:2.2rem}
.lead{color:var(--muted);margin-top:0}
.card{background:rgba(255,255,255,0.03);padding:18px;border-radius:8px;margin-top:18px}
footer{margin-top:22px;color:var(--muted);font-size:0.9rem}

/* Bubbles animation styles */
#bubbles-container{position:fixed;inset:0;pointer-events:none;overflow:hidden;z-index:40}
.bubble{position:absolute;display:flex;align-items:center;justify-content:center;border-radius:999px;padding:6px 12px;color:#042;backdrop-filter:blur(6px);box-shadow:0 8px 20px rgba(2,6,23,0.6);font-weight:700;transform:translate3d(0,0,0);will-change:transform;user-select:none}
.bubble.small{font-size:12px}
.bubble.medium{font-size:14px}
.bubble.large{font-size:18px}

.bubble .inner{display:inline-block;padding:6px 12px;border-radius:999px;background:linear-gradient(135deg,rgba(255,255,255,0.85),rgba(255,255,255,0.6));color:var(--bg);font-weight:800}

/* GIF inside bubble */
.bubble img{width:100%;height:100%;object-fit:cover;border-radius:inherit;display:block}

/* Centralny ozdobny nagłówek */
.hero{min-height:100vh;display:flex;align-items:center;justify-content:center;padding:24px;z-index:20;position:relative;width:100%}
.badge{padding:28px 40px;border-radius:28px;background:linear-gradient(180deg,rgba(255,255,255,0.04),rgba(255,255,255,0.02));box-shadow:0 10px 40px rgba(2,6,23,0.6), inset 0 1px 0 rgba(255,255,255,0.02);border:1px solid rgba(255,255,255,0.06);backdrop-filter: blur(6px)}
.title{margin:0;font-weight:900;line-height:0.9;letter-spacing:-4px;font-size:clamp(48px,10vw,140px);background:linear-gradient(90deg,#6ee7b7 0%,#93c5fd 40%,#fca5a5 100%);-webkit-background-clip:text;background-clip:text;color:transparent;text-shadow:0 6px 30px rgba(18,24,40,0.6)}

/* Subtelna pulsacja badge */
.badge{animation:badgePulse 3.8s ease-in-out infinite}
@keyframes badgePulse{0%{transform:scale(1)}50%{transform:scale(1.02)}100%{transform:scale(1)}}

/* Animated diagonal gradient background */
body::before{
	content:"";
	position:fixed;inset:0;z-index:-1;pointer-events:none;
	background:linear-gradient(135deg,#071025 0%, #0b2a3a 20%, #05203a 40%, #06112a 60%, #09132a 100%);
	background-size:200% 200%;
	filter:contrast(1.02) saturate(1.05);
	animation:slideGradient 12s linear infinite;
}
@keyframes slideGradient{
	0%{background-position:0% 0%}
	50%{background-position:100% 100%}
	100%{background-position:0% 0%}
}

/* Responsive adjustments */
.hero{padding:clamp(12px,4vw,32px)}
.badge{padding:clamp(14px,3.5vw,28px);border-radius:calc(clamp(16px,2.5vw,28px))}
.title{letter-spacing: clamp(-6px,-1vw,-2px)}

/* Limit bubble max size on small screens */
.bubble{max-width:160px;max-height:160px}

@media (max-width:600px){
	.title{font-size:clamp(28px,14vw,64px);letter-spacing:-1px}
	.badge{padding:14px 18px;border-radius:18px}
	.bubble{max-width:110px;max-height:110px}
}

/* Footer styles */
.site-footer{position:relative;z-index:30;padding:20px 12px;text-align:center;color:var(--muted)}
.site-footer .footer-inner{max-width:900px;margin:0 auto}
.site-footer .contact{margin:0;font-weight:700}
.site-footer a{color:var(--accent);text-decoration:none}
.site-footer .silly{margin:6px 0 0;font-size:0.95rem;color:rgba(230,238,248,0.8)}

@media (max-width:480px){
	.site-footer{padding:14px 10px}
	.site-footer .silly{font-size:0.85rem}
}

/* spacer to push footer below fold */
.belowfold{height:20vh}
@media (max-width:1024px){.belowfold{height:18vh}}
@media (max-width:768px){.belowfold{height:14vh}}
@media (max-width:480px){.belowfold{height:10vh}}

/* make footer a solid black bar when visible (full-width) */
.site-footer{background:linear-gradient(180deg,#000000,#050505);color:#fff;width:100%;align-self:stretch}
.site-footer .contact{color:#fff}
.site-footer a{color:#9ae6b4}

