:root {
    --primary: #ff006e;
    --secondary: #8338ec;
    --accent: #3a86ff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
		user-select: none;
}

body {
    overflow: hidden;
    background: #0a0e27;
}

.wallpaper {
    width: 100vw;
    height: 100vh;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    position: relative;
    overflow: hidden;
}

.grid-overlay {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(58, 134, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(58, 134, 255, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    animation: gridScroll 15s linear infinite;
}

@keyframes gridScroll {
    0% { transform: translate(0, 0); }
    100% { transform: translate(40px, 40px); }
}

.video-frames {
    position: absolute;
    inset: 0;
}

.frame-container {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.video-frame 
{
	  --color-background: rgba( 0,0,0, 0.3 ); /* rgba( 10, 14, 39, 0.6 ); */
	  --color-border: rgba( 0,0,0, 0.3 ); /* rgba( 58,134,255, 0.6); */
    
		position: absolute;
    width: 60px;
    height: 1600px;
     
    background: var( --color-background );
    border-left: 3px solid var( --color-border );
    border-right: 3px solid var( --color-border );
    animation: frameFloat linear infinite;
    opacity: 0;
    box-shadow: 0 0 20px rgba( 58, 134, 255, 0.3 );
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    padding: 8px 0;
}

.video-frame::before,
.video-frame::after 
{
	  
	  --color-background: rgba( 0,0,0, 1 ); /* rgba( 58,134,255, 0.8 ); */
     
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 8px;
    background: repeating-linear-gradient( 90deg, var( --color-background ) 0px, var( --color-background ) 8px, transparent 8px, transparent 16px );
}

.video-frame::before {
    top: 0;
}

.video-frame::after {
    bottom: 0;
}

.film-cell {
    width: 100%;
    height: 50px;
    border-top: 1px solid rgba(58, 134, 255, 0.3);
    border-bottom: 1px solid rgba(58, 134, 255, 0.3);
    position: relative;
    overflow: hidden;
}
 

.film-perforation {
    position: absolute;
    width: 6px;
    height: 6px;
     
    background: rgba( 0,0,0, 1 ); /* rgba( 58,134,255, 0.4 ); */
     
    border-radius: 1px;
}

.film-perforation:nth-child(1) { left: -1px; top: 2px; }
.film-perforation:nth-child(3) { right: -1px; top: 2px; }
.film-perforation:nth-child(2) { left: -1px; top: 11px; }
.film-perforation:nth-child(4) { right: -1px; top: 11px; }

.film-perforation:nth-child(5) { left: -1px; top: 20px; }
.film-perforation:nth-child(7) { right: -1px; top: 20px; }
.film-perforation:nth-child(6) { left: -1px; top: 29px; }
.film-perforation:nth-child(8) { right: -1px; top: 29px; }

.film-perforation:nth-child(9) { left: -1px; top: 38px; }
.film-perforation:nth-child(10) { right: -1px; top: 38px; }
.film-perforation:nth-child(11) { left: -1px; top: 38px; }
.film-perforation:nth-child(12) { right: -1px; top: 38px; }

.person-silhouette {
    position: absolute;
    bottom: 5%;
    display: flex;
    flex-direction: column;
    align-items: center;
    transform-origin: bottom center;
}

.silhouette-head {
    width: 8px;
    height: 8px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    margin-bottom: 1px;
}

.silhouette-body {
    width: 12px;
    height: 18px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 6px 6px 2px 2px;
}

.frame-label {
    position: absolute;
    background: rgba(10, 14, 39, 0.8);
    backdrop-filter: blur(8px);
    padding: 6px 10px;
    border-radius: 6px;
    font-family: 'SF Mono', 'Monaco', 'Courier New', monospace;
    font-size: 9px;
    color: rgba(255, 255, 255, 0.9);
    white-space: nowrap;
    margin-top: 55px;
    border: 1px solid rgba(58, 134, 255, 0.3);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    z-index: 10;
}

.frame-label.visible {
    opacity: 1;
}

.frame-label .label-row {
    display: flex;
    gap: 8px;
    margin: 1px 0;
}

.frame-label .label-key {
    color: rgba(58, 134, 255, 0.9);
    font-weight: 600;
}

.frame-label .label-value {
    color: rgba(255, 255, 255, 0.85);
}

@keyframes frameFloat {
    0% { transform: translateY(-450px); opacity: 0; }
    5% { opacity: 0.8; }
    95% { opacity: 0.8; }
    100% { transform: translateY(calc(100vh + 450px)); opacity: 0; }
}

@keyframes frameFloatUp {
    0% { transform: translateY(calc(100vh + 450px)); opacity: 0; }
    5% { opacity: 0.8; }
    95% { opacity: 0.8; }
    100% { transform: translateY(-450px); opacity: 0; }
}

.media-nodes {
    position: absolute;
    inset: 0;
}

.node {
    position: absolute;
    width: 14px;
    height: 14px;
    background: rgba(58, 134, 255, 0.4);
    border: 2px solid rgba(58, 134, 255, 0.8);
    border-radius: 50%;
    animation: nodePulse 3s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(58, 134, 255, 0.5);
}

@keyframes nodePulse {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.8); opacity: 1; }
}

.connection-line {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(58, 134, 255, 0.4), transparent);
    transform-origin: left center;
    animation: connectionFlow 4s ease-in-out infinite;
}

@keyframes connectionFlow {
    0%, 100% { opacity: 0.2; }
    50% { opacity: 0.8; }
}

.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: 110px;
    font-weight: 700;
    color: white;
    text-shadow: 0 0 30px rgba(58, 134, 255, 0.8), 0 4px 20px rgba(0, 0, 0, 0.5);
    letter-spacing: -2px;
    margin-bottom: 20px;
    overflow: hidden;
    white-space: nowrap;
    border-right: 4px solid #3a86ff;
    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: #3a86ff; }
    50% { border-color: transparent; }
}

.tagline {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 32px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
    background: linear-gradient(90deg, #ff006e, #8338ec, #3a86ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    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);
    }
}

.video-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    opacity: 0.06;
    z-index: 1;
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    animation: orbFloat 10s ease-in-out infinite;
}

.orb1 {
    width: 500px;
    height: 500px;
    background: rgba(255, 0, 110, 0.2);
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

.orb2 {
    width: 450px;
    height: 450px;
    background: rgba(58, 134, 255, 0.2);
    bottom: 10%;
    right: 15%;
    animation-delay: 3s;
}

.orb3 {
    width: 400px;
    height: 400px;
    background: rgba(131, 56, 236, 0.2);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 6s;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(60px, -40px) scale(1.15); }
    66% { transform: translate(-40px, 60px) scale(0.85); }
}

.corner-accent {
    position: absolute;
    font-family: 'SF Mono', monospace;
    font-size: 16px;
    color: rgba(58, 134, 255, 0.7);
    letter-spacing: 2px;
}

.top-left {
    top: 40px;
    left: 50px;
}

.bottom-right {
    bottom: 40px;
    right: 50px;
}

.progress-bars {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    max-width: 600px;
    z-index: 5;
}

.progress-item {
    margin-bottom: 15px;
    opacity: 0;
    animation: fadeInProgress 1s ease-out forwards;
}

.progress-item:nth-child(1) { animation-delay: 15s; }
.progress-item:nth-child(2) { animation-delay: 15.5s; }
.progress-item:nth-child(3) { animation-delay: 16s; }

@keyframes fadeInProgress {
    to { opacity: 1; }
}

.progress-info 
{
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
    font-family: 'SF Mono', monospace;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.8);
}

.progress-info span.left::before 
{
  content: "\1F3A6"; /* cinema */
	margin-right: 1rem;
}

.progress-bar {
    width: 100%;
    height: 4px;
    background: rgba(58, 134, 255, 0.2);
    border-radius: 2px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #ff006e, #8338ec, #3a86ff);
    border-radius: 2px;
    animation: progressLoad 3s ease-out forwards;
    box-shadow: 0 0 10px rgba(58, 134, 255, 0.5);
}

@keyframes progressLoad {
    from { width: 0%; }
    to { width: 100%; }
}

/* 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;
    }
		
}


 
