:root {
	--bg: #e6ebf2;
	--purple: #764ba2;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
 
body {
	overflow: hidden;
	background: #f8fafc;
}

.wallpaper { 
	width: 100vw;
	height: 100vh;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	position: relative;
	overflow: hidden;
}

.grid-overlay {
	position: absolute;
	inset: 0;
	background-image: 
		linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
	background-size: 50px 50px;
	animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
	0% { transform: translate(0, 0); }
	100% { transform: translate(50px, 50px); }
}

.data-streams {
	position: absolute;
	inset: 0;
}

.stream-container {
	position: absolute;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.stream {
	position: absolute;
	width: 2px;
	height: 100px;
	--xbackground: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.4), transparent);
	--color-blue: rgba(147, 197, 253, 0.9);
	background: linear-gradient(to bottom, transparent, rgba(147, 197, 253, 0.4), transparent);
	animation: streamFlow linear infinite;
	opacity: 0;
}

.stream-label {
	position: absolute;
	background: rgba(0, 0, 0, 0.4);
	backdrop-filter: blur(4px);
	padding: 4px 8px;
	border-radius: 4px;
	font-family: 'SF Mono', 'Monaco', 'Courier New', monospace;
	font-size: 9px;
	color: rgba(255, 255, 255, 0.9);
	white-space: nowrap;
	margin-top: 108px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
	opacity: 0;
	transition: opacity 1.5s ease-in-out;
	z-index: 10;
}

.stream-label.visible {
	opacity: 1;
}

.stream-label .label-row {
	display: flex;
	gap: 8px;
	margin: 1px 0;
}

.stream-label .label-key {
	color: rgba(147, 197, 253, 0.9);
	font-weight: 600;
}

.stream-label .label-value {
	color: rgba(255, 255, 255, 0.85);
}
 
@keyframes streamFlow {
	0% { transform: translateY(-150px); opacity: 0; }
	10% { opacity: 1; }
	90% { opacity: 1; }
	100% { transform: translateY(calc(100vh + 150px)); opacity: 0; }
}

@keyframes streamFlowUp {
	0% { transform: translateY(calc(100vh + 150px)); opacity: 0; }
	10% { opacity: 1; }
	90% { opacity: 1; }
	100% { transform: translateY(-150px); opacity: 0; }
}

.webhook-nodes {
	position: absolute;
	inset: 0;
}

.node {
	position: absolute;
	width: 12px;
	height: 12px;
	background: rgba(255, 255, 255, 0.3);
	border: 2px solid rgba(255, 255, 255, 0.6);
	border-radius: 50%;
	animation: nodePulse 3s ease-in-out infinite;
}

@keyframes nodePulse {
	0%, 100% { transform: scale(1); opacity: 0.6; }
	50% { transform: scale(1.5); opacity: 1; }
}

.connection-line {
	position: absolute;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
	transform-origin: left center;
	animation: connectionFlow 4s ease-in-out infinite;
}

@keyframes connectionFlow {
	0%, 100% { opacity: 0.2; }
	50% { opacity: 0.6; }
}

.center-content {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
	z-index: 10;
}
 
.domain-name {
	font-family: 'SF Mono', 'Monaco', 'Courier New', monospace;
	font-size: 120px;
	font-weight: 700;
	color: white;
	text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
	letter-spacing: -2px;
	margin-bottom: 20px;
	animation: fadeInUp 1s ease-out;
	overflow: hidden;
	white-space: nowrap;
	border-right: 4px solid white;
	width: 0;
	animation: typewriter 6s steps(17) 3s forwards, blink 1s step-end 0s infinite, fadeOutDown 3s ease-in 9s forwards;
}

@keyframes typewriter {
	from { 
		opacity: 1;
		width: 0; 
	}
	to { 
		opacity: 1;
		width: 100%; 
	}
}

@keyframes blink {
	0%, 100% { border-color: white; }
	50% { border-color: transparent; }
}

.tagline {
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	font-size: 36px;
	color: rgba(255, 255, 255, 0.9); 
	font-weight: 300;
	letter-spacing: 2px;
	text-transform: uppercase;
	animation: fadeInUp 1s ease-out 0.2s both, fadeOutUp 3s ease-in 12s forwards;
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes fadeOutUp {
	from {
		opacity: 1;
		transform: translateY(0);
	}
	to {
		opacity: 0;
		transform: translateY(-90px);
	}
}

@keyframes fadeOutDown {
	from {
		opacity: 1;
		transform: translateY(0);
	}
	to {
		opacity: 0;
		transform: translateY(30px);
	}
}

.webhook-icon {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 600px;
	height: 600px;
	opacity: 0.08;
	z-index: 1;
}

.glow-orb {
	position: absolute;
	border-radius: 50%;
	filter: blur(80px);
	animation: orbFloat 8s ease-in-out infinite;
}

.orb1 {
	width: 400px;
	height: 400px;
	background: rgba(102, 126, 234, 0.3);
	top: 20%;
	left: 15%;
	animation-delay: 0s;
}

.orb2 {
	width: 500px;
	height: 500px;
	background: rgba(118, 75, 162, 0.3);
	bottom: 15%;
	right: 10%;
	animation-delay: 2s;
}

@keyframes orbFloat {
	0%, 100% { transform: translate(0, 0) scale(1); }
	33% { transform: translate(50px, -30px) scale(1.1); }
	66% { transform: translate(-30px, 50px) scale(0.9); }
}

.corner-accent {
	position: absolute;
	font-family: 'SF Mono', monospace;
	font-size: 18px;
	color: rgba(255, 255, 255, 0.5);
	letter-spacing: 1px;
}

.top-left {
	top: 40px;
	left: 50px;
}

.bottom-right {
	bottom: 40px;
	right: 50px;
}

/* Responsive  */
@media screen and ( max-width: 1024px ) 
{
    .domain-name 
		{
        font-size: 34px;
        letter-spacing: -1px;
        border-right-width: 3px;
        margin-bottom: 15px;
    }
    
    .tagline 
		{
        font-size: 13px;
        letter-spacing: 1.5px;
    }
		
}