@charset "utf-8";

/*
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
*/

.hero-container {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 25%, #334155 50%, #475569 75%, #64748b 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.background-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(34, 197, 94, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(59, 130, 246, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(168, 85, 247, 0.2) 0%, transparent 50%);
}

.terminal-window {
    position: absolute;
    top: 50px;
    left: 50px;
    width: 300px;
    height: 200px;
    background: rgba(15, 23, 42, 0.9);
    border-radius: 8px;
    border: 1px solid rgba(71, 85, 105, 0.3);
    backdrop-filter: blur(10px);
    animation: float 6s ease-in-out infinite;
}

.terminal-header {
    background: rgba(71, 85, 105, 0.5);
    height: 30px;
    border-radius: 8px 8px 0 0;
    display: flex;
    align-items: center;
    padding: 0 10px;
}

.terminal-dots {
    display: flex;
    gap: 6px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot.red { background: #ef4444; }
.dot.yellow { background: #eab308; }
.dot.green { background: #22c55e; }

.terminal-content {
    padding: 15px;
    color: #22c55e;
    font-family: 'Courier New', monospace;
    font-size: 12px;
    line-height: 1.4;
}

.command-line {
    opacity: 0;
    animation: typewriter 0.8s ease-out forwards;
}

.command-line:nth-child(1) { animation-delay: 1s; }
.command-line:nth-child(2) { animation-delay: 2s; }
.command-line:nth-child(3) { animation-delay: 3s; }
.command-line:nth-child(4) { animation-delay: 4s; }

.cursor {
    display: inline-block;
    background: #22c55e;
    animation: blink 1s infinite;
}

.server-rack {
    position: absolute;
    top: 100px;
    right: 80px;
    width: 60px;
    height: 180px;
    background: rgba(30, 41, 59, 0.8);
    border-radius: 4px;
    border: 2px solid rgba(71, 85, 105, 0.4);
    backdrop-filter: blur(5px);
    animation: float 8s ease-in-out infinite reverse;
}

.server-light {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin: 8px auto;
    animation: pulse 2s infinite;
}

.server-light:nth-child(1) { background: #22c55e; animation-delay: 0s; }
.server-light:nth-child(2) { background: #3b82f6; animation-delay: 0.5s; }
.server-light:nth-child(3) { background: #f59e0b; animation-delay: 1s; }
.server-light:nth-child(4) { background: #22c55e; animation-delay: 1.5s; }

.main-content {
    text-align: center;
    z-index: 10;
    position: relative;
}

.series-badge {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
    animation: glow 3s ease-in-out infinite alternate;
}

.main-title {
    font-size: 48px;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    background: linear-gradient(135deg, #ffffff, #e2e8f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.subtitle {
    font-size: 20px;
    color: #cbd5e1;
    font-weight: 300;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.tech-icons {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
}

.tech-icon {
    width: 50px;
    height: 50px;
    background: rgba(30, 41, 59, 0.7);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #22c55e;
    font-size: 24px;
    font-weight: bold;
    border: 1px solid rgba(71, 85, 105, 0.3);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    animation: float 4s ease-in-out infinite;
}

.tech-icon:nth-child(1) { animation-delay: 0s; }
.tech-icon:nth-child(2) { animation-delay: 0.5s; }
.tech-icon:nth-child(3) { animation-delay: 1s; }
.tech-icon:nth-child(4) { animation-delay: 1.5s; }

.tech-icon:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(34, 197, 94, 0.3);
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-element {
    position: absolute;
    color: rgba(34, 197, 94, 0.6);
    font-family: 'Courier New', monospace;
    font-size: 12px;
    animation: floatUp 15s linear infinite;
}

.floating-element:nth-child(1) { left: 10%; animation-delay: 0s; }
.floating-element:nth-child(2) { left: 30%; animation-delay: 3s; }
.floating-element:nth-child(3) { left: 50%; animation-delay: 6s; }
.floating-element:nth-child(4) { left: 70%; animation-delay: 9s; }
.floating-element:nth-child(5) { left: 90%; animation-delay: 12s; }

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

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

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

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

@keyframes glow {
    0% { box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3); }
    100% { box-shadow: 0 6px 25px rgba(34, 197, 94, 0.5); }
}

@keyframes floatUp {
    0% { transform: translateY(400px); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-100px); opacity: 0; }
}

@media (max-width: 768px) {
    .hero-container {
        height: 300px;
    }
    
    .main-title {
        font-size: 32px;
    }
    
    .subtitle {
        font-size: 16px;
    }
    
    .terminal-window {
        width: 250px;
        height: 150px;
        top: 20px;
        left: 20px;
    }
    
    .server-rack {
        width: 40px;
        height: 120px;
        top: 50px;
        right: 30px;
    }
    
    .tech-icons {
        gap: 20px;
    }
    
    .tech-icon {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
}
