/* Core Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

:root {
    --primary-color: #46e551;
    --dark-bg: #0b2b07;
    --text-light: #f3f4f6;
    
}

body {
    line-height: 1.6;
    background-color: #000000;
    font-size:20px;
}

/* Navigation */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 10%;
    background: rgb(0, 0, 0);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    color:#22c55e;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #22c55e;
}

.logo span { color:#22c55e }

.nav-links {
    display: flex;
    list-style: none;
    font-size: 16px;
}

.nav-links li { margin-left: 2rem; }

.nav-links a {
    text-decoration: none;
    color: var(--dark-bg);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover { color: var(--primary-color); }

/* Hero Section & Animation */
.hero {
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), 
                url('https://images.unsplash.com/photo-1558494949-ef010cbdcc31?q=80&w=3134&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
    background-size: cover;
    color: white;
}

.hero-content {
    animation: fadeInUp 1s ease-out;
}

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

.hero h1 { font-size: 3.5rem; margin-bottom: 1rem; }
.hero h1 span { color: #818cf8; }


/* Features Grid */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 5rem 10%;
}

.card {
    background: rgb(255, 255, 255);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: translateY 0.3s;
}

.card:hover {
    transform: translateY(-10px);
}

/* Responsive Logic */
@media (max-width: 768px) {
    .nav-links { display: none; } /* Simplified for template */
    .hero h1 { font-size: 2.5rem; }
}

/* The Activity Light Container */
.status-light {
    width: 12px;
    height: 12px;
    border-radius: 2px; /* Slightly rounded for that hardware look */
    background-color: #22c55e; /* Classic Link Green */
    box-shadow: 0 0 8px rgba(34, 197, 94, 0.6);
    color: #22c55e;
    display: inline-block;
}

/* The Ethernet/HDD Animation */
.activity-blink {
    animation: data-transfer 1s infinite alternate-reverse;
    color:rgb(218, 218, 7);
}
.activity-blink-delay {
    animation: data-transfer 1s ;
    opacity: 1;
        animation-delay: 2s;
color:rgb(255, 225, 0);
}
.activity-blink-delay2 {
    animation: data-transfer 1s    infinite alternate;
        opacity: 1;
        animation-delay:4s;
color:rgb(255, 225, 0);
}
.activity-blink-delay3 {
    animation: data-transfer 2s   alternate;
        opacity: 1;
        animation-delay: 14s;
color:rgb(255, 225, 0);
}

@keyframes data-transfer {
    0%   { opacity: 0; }
    5%   { opacity: 0.3; }
    10%  { opacity: 1; }
    15%  { opacity: 0.3; }
    20%  { opacity: 1; }
    25%  { opacity: 1; } /* Brief pause 'on' */
    30%  { opacity: 0.2; }
    35%  { opacity: 1; }
    40%  { opacity: 0.2; }
    45%  { opacity: 0.2; } /* Brief pause 'off' */
    50%  { opacity: 1; }
    100% { opacity: 1; } /* Long pause to simulate idle/finish */

}

/* For a Hard Drive (Amber/Orange) */
.hdd-light {
    background-color: #f59e0b;
    box-shadow: 0 0 8px rgba(245, 158, 11, 0.7);
    animation: hdd-flicker 0.8s infinite;
}

@keyframes hdd-flicker {
    0%, 10%, 100% { opacity: 1; transform: scale(1); }
    5%, 15%       { opacity: 0.4; transform: scale(0.95); }
}

.cursor-follower {
  position: fixed;
  width: 20px;
  height: 20px;
  background-color: rgba(56, 248, 110, 0.5); /* Modern cyan glow */
  border-radius: 50%;
  pointer-events: none; /* Crucial: clicks go through it */
  z-index: 999;
  
  /* The "Trail" magic: 
     A slight delay and cubic-bezier make it feel fluid */
  transition: transform 0.15s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  
  /* Start hidden/centered */
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
}

.spotlight-text {
  font-size: 40px;
  font-family: 'Inter', sans-serif;
  font-weight: 90;
  text-transform: uppercase;
  letter-spacing: 5px;
  
  /* 1. Create the "Flashlight" beam */
  /* We use a radial gradient: green center, fading to transparent black */
  background: radial-gradient(
    circle 1000px at 0% 50%, 
    #00ff41 0%, 
    rgba(0, 255, 65, 0.5) 4000%, 
    transparent 70%
    
  );
  
  /* 2. Standard Masking properties */
  -webkit-background-clip: text;
  background-clip: text;
  
  /* 3. Make the base text invisible */
  -webkit-text-fill-color: white;
  
  /* 4. Set size larger than text to allow movement */
  background-size: 200% 100%;
  background-repeat: no-repeat;
  
  /* 5. The Motion */
  animation: spotlightScan 8s infinite ease-in-out;
}

.spotlight-text2 {
  font-size: 20px;
  font-family: 'Inter', sans-serif;
  font-weight: 90;
  text-transform: uppercase;
  letter-spacing: 5px;
  
  /* 1. Create the "Flashlight" beam */
  /* We use a radial gradient: green center, fading to transparent black */
  background: radial-gradient(
    circle 1000px at 0% 50%, 
    #00ff41 0%, 
    rgba(0, 255, 65, 0.5) 4000%, 
    transparent 70%
    
  );
  
  /* 2. Standard Masking properties */
  -webkit-background-clip: text;
  background-clip: text;
  
  /* 3. Make the base text invisible */
  -webkit-text-fill-color: transparent;
  
  /* 4. Set size larger than text to allow movement */
  background-size: 200% 100%;
  background-repeat: no-repeat;
  
  /* 5. The Motion */
  animation: spotlightScan 8s infinite ease-in-out;
}


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