@import url('https://fonts.googleapis.com/css2?family=VT323&family=Orbitron:wght@400;700;900&family=JetBrains+Mono:wght@400;700&display=swap');

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

html {
    scroll-behavior: smooth;
}

:root {
    --neon-pink: #ff00ff;
    --neon-cyan: #00ffff;
    --neon-purple: #b347ff;
    --neon-blue: #0066ff;
    --dark-bg: #0a0a0f;
    --dark-surface: rgba(15, 15, 25, 0.8);
    --glass-bg: rgba(255, 255, 255, 0.05);
    --text-primary: #ffffff;
    --text-glow: rgba(255, 255, 255, 0.8);
}

body {
    font-family: 'JetBrains Mono', 'VT323', monospace;
    background: var(--dark-bg);
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255, 0, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 255, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(179, 71, 255, 0.1) 0%, transparent 60%),
        linear-gradient(180deg, #0a0a0f 0%, #0f0f1a 100%);
    color: var(--text-primary);
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
}

/* Animated gradient background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 0% 0%, rgba(255, 0, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 100% 100%, rgba(0, 255, 255, 0.1) 0%, transparent 50%);
    animation: bg-shift 20s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes bg-shift {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.1); }
}

/* Hero Section */
.hero-section {
    max-width: 1400px;
    margin: 40px auto 60px;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.hero-image-container {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.6),
        0 0 80px rgba(255, 0, 255, 0.3),
        0 0 120px rgba(0, 255, 255, 0.2);
    background: var(--dark-surface);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    animation: hero-float 6s ease-in-out infinite;
}

.hero-image-container:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 25px 70px rgba(0, 0, 0, 0.7),
        0 0 100px rgba(255, 0, 255, 0.4),
        0 0 150px rgba(0, 255, 255, 0.3);
}

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

.hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    transition: transform 0.3s;
}

.hero-image-container:hover .hero-image {
    transform: scale(1.02);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0) 70%,
        rgba(10, 10, 15, 0.3) 100%
    );
    pointer-events: none;
    z-index: 1;
}

.hero-image-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent, 
        var(--neon-pink), 
        var(--neon-cyan), 
        var(--neon-purple),
        transparent
    );
    opacity: 0.8;
    z-index: 2;
    animation: top-glow 3s ease-in-out infinite;
}

.hero-image-container::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent, 
        var(--neon-cyan), 
        var(--neon-pink), 
        var(--neon-purple),
        transparent
    );
    opacity: 0.8;
    z-index: 2;
    animation: top-glow 3s ease-in-out infinite 1.5s;
}

/* Terminal Window - Glassmorphism */
.terminal-container {
    padding: 30px 20px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.terminal-window {
    background: var(--dark-surface);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    overflow: hidden;
    position: relative;
}

.terminal-window::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent, 
        var(--neon-pink), 
        var(--neon-cyan), 
        transparent
    );
    opacity: 0.6;
    animation: top-glow 3s ease-in-out infinite;
}

@keyframes top-glow {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.8; }
}

.terminal-header {
    background: rgba(0, 0, 0, 0.3);
    padding: 15px 20px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.terminal-buttons {
    display: flex;
    gap: 8px;
    margin-right: 15px;
}

.btn {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
    transition: transform 0.2s;
}

.btn:hover {
    transform: scale(1.2);
}

.btn.close {
    background: #ff5f56;
    box-shadow: 0 0 10px rgba(255, 95, 86, 0.5);
}

.btn.minimize {
    background: #ffbd2e;
    box-shadow: 0 0 10px rgba(255, 189, 46, 0.5);
}

.btn.maximize {
    background: #27c93f;
    box-shadow: 0 0 10px rgba(39, 201, 63, 0.5);
}

.terminal-title {
    font-size: 13px;
    color: var(--text-primary);
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
    letter-spacing: 3px;
    font-weight: 600;
    font-family: 'Orbitron', sans-serif;
}

.terminal-body {
    padding: 30px;
    min-height: 400px;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.terminal-body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(255, 255, 255, 0.01) 2px,
            rgba(255, 255, 255, 0.01) 4px
        );
    pointer-events: none;
    z-index: 1;
    opacity: 0.3;
}

.terminal-content {
    font-size: 16px;
    line-height: 1.8;
    position: relative;
    z-index: 2;
    font-family: 'JetBrains Mono', monospace;
}

.command-line {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    animation: fadeInUp 0.4s ease-out;
}

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

.prompt {
    color: var(--neon-cyan);
    margin-right: 12px;
    text-shadow: 0 0 10px var(--neon-cyan);
    font-weight: 600;
}

.command {
    color: var(--text-primary);
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

.cursor {
    color: var(--neon-pink);
    animation: blink 1s infinite;
    margin-left: 3px;
    text-shadow: 0 0 10px var(--neon-pink);
}

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

.output {
    margin-left: 25px;
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
    white-space: pre-wrap;
    line-height: 1.8;
    padding: 15px 0;
    padding-left: 20px;
    border-left: 2px solid transparent;
    background: linear-gradient(90deg, 
        rgba(255, 0, 255, 0.05) 0%, 
        transparent 100%
    );
    border-image: linear-gradient(180deg, 
        var(--neon-pink), 
        var(--neon-cyan)
    ) 1;
    animation: fadeIn 0.5s ease-out, slideIn 0.5s ease-out;
    position: relative;
}

.output::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, 
        var(--neon-pink), 
        var(--neon-cyan)
    );
    opacity: 0.6;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

/* Content Section */
.content-section {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* Video Section - Modern Glass Card */
.video-section {
    background: var(--dark-surface);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 50px 30px;
    margin: 60px auto 40px;
    text-align: center;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.video-section:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.5),
        0 0 60px rgba(255, 0, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.video-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, 
        rgba(255, 0, 255, 0.1) 0%, 
        rgba(0, 255, 255, 0.1) 50%,
        transparent 70%
    );
    animation: rotate 15s linear infinite;
    pointer-events: none;
    opacity: 0.5;
}

.video-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent, 
        var(--neon-cyan), 
        var(--neon-pink), 
        transparent
    );
    opacity: 0.6;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    max-width: 900px;
    margin: 0 auto 40px;
    border-radius: 16px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(255, 0, 255, 0.3);
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.video-container:hover {
    transform: scale(1.02);
    box-shadow: 
        0 25px 70px rgba(0, 0, 0, 0.6),
        0 0 60px rgba(0, 255, 255, 0.4);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 16px;
}

.video-info {
    position: relative;
    z-index: 2;
}

.video-info h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 32px;
    background: linear-gradient(135deg, var(--neon-pink), var(--neon-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    letter-spacing: 2px;
    font-weight: 700;
    text-shadow: 0 0 30px rgba(255, 0, 255, 0.5);
    animation: gradient-shift 3s ease-in-out infinite;
}

@keyframes gradient-shift {
    0%, 100% {
        filter: hue-rotate(0deg);
    }
    50% {
        filter: hue-rotate(20deg);
    }
}

.video-info p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin: 12px 0;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
    font-weight: 400;
}

/* Streaming Links */
.streaming-links {
    margin-top: 40px;
    position: relative;
    z-index: 2;
}

.streaming-links h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
    letter-spacing: 2px;
    font-weight: 400;
}

.streaming-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.stream-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.stream-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.stream-btn:hover::before {
    left: 100%;
}

.stream-btn.spotify {
    background: rgba(30, 215, 96, 0.1);
    color: #1DB954;
    border-color: rgba(30, 215, 96, 0.3);
}

.stream-btn.spotify:hover {
    background: rgba(30, 215, 96, 0.2);
    border-color: #1DB954;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(30, 215, 96, 0.4);
}

.stream-btn.apple {
    background: rgba(251, 59, 112, 0.1);
    color: #FB3B70;
    border-color: rgba(251, 59, 112, 0.3);
}

.stream-btn.apple:hover {
    background: rgba(251, 59, 112, 0.2);
    border-color: #FB3B70;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(251, 59, 112, 0.4);
}

.stream-btn.youtube {
    background: rgba(255, 0, 0, 0.1);
    color: #FF0000;
    border-color: rgba(255, 0, 0, 0.3);
}

.stream-btn.youtube:hover {
    background: rgba(255, 0, 0, 0.2);
    border-color: #FF0000;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 0, 0, 0.4);
}

/* Footer */
.terminal-footer {
    text-align: center;
    padding: 40px 20px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    position: relative;
    margin-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.social-links {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.social-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    position: relative;
}

.social-link::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, var(--neon-pink), var(--neon-cyan));
    transition: width 0.3s ease;
}

.social-link:hover {
    color: var(--text-primary);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.social-link:hover::after {
    width: 100%;
}

.separator {
    color: rgba(255, 255, 255, 0.3);
    font-size: 12px;
}

.scan-line {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 0, 255, 0.5), 
        rgba(0, 255, 255, 0.5), 
        transparent
    );
    animation: scan 4s linear infinite;
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.3);
}

@keyframes scan {
    0% { transform: translateY(0); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(100vh); opacity: 0; }
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section {
        margin: 20px auto 40px;
        padding: 0 15px;
    }
    
    .hero-image-container {
        border-radius: 16px;
    }
    
    .terminal-content {
        font-size: 14px;
    }
    
    .terminal-body {
        min-height: 300px;
        padding: 20px;
    }
    
    .video-info h3 {
        font-size: 24px;
    }
    
    .video-info p {
        font-size: 16px;
    }
    
    .video-section {
        padding: 30px 20px;
    }
    
    .streaming-buttons {
        gap: 10px;
    }
    
    .stream-btn {
        padding: 10px 18px;
        font-size: 12px;
    }
    
    .social-links {
        gap: 10px;
        font-size: 12px;
    }
}
