/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #00ff00;
    --secondary-color: #00cc00;
    --accent-color: #00ff88;
    --background-dark: #000000;
    --background-light: #0a0a0a;
    --text-primary: #ffffff;
    --text-secondary: #00ff00;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--background-dark);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Main Content */
.main-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    text-align: center;
    padding: 2rem 0;
}

.header-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.logo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-color);
}

.main-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
    text-transform: none;
}

.subtitle {
    font-size: 1.2rem;
    color: var(--text-primary);
    margin-bottom: 3rem;
    opacity: 0.8;
}

.video-container {
    width: 100%;
    max-width: 1200px;
    margin-bottom: 3rem;
}

.video-placeholder {
    width: 100%;
    aspect-ratio: 16/9;
    background: var(--background-light);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.video-text {
    color: var(--text-primary);
    font-size: 1.1rem;
    opacity: 0.7;
}

.info-section {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
}

.info-link {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1rem;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.info-link:hover {
    opacity: 1;
    color: var(--primary-color);
}

/* About Section */
.about {
    padding: 4rem 0;
    background: var(--background-light);
}

.about-title {
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 2rem;
    text-transform: lowercase;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-content p {
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    opacity: 0.9;
}

.about-content h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin: 2rem 0 1rem 0;
    text-transform: lowercase;
}

.about-content ul {
    margin: 1rem 0 2rem 2rem;
}

.about-content li {
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    opacity: 0.9;
}

/* Footer */
.footer {
    background: var(--background-dark);
    padding: 2rem 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer p {
    color: var(--text-primary);
    opacity: 0.6;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-section {
        flex-direction: column;
        gap: 1rem;
    }
    
    .logo {
        width: 60px;
        height: 60px;
    }
    
    .main-title {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .video-container {
        margin: 0 0.5rem 2rem 0.5rem;
        max-width: 100%;
    }
    
    .info-section {
        position: static;
        text-align: center;
        margin-top: 2rem;
    }
    
    .about {
        padding: 2rem 0;
    }
    
    .about-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .logo {
        width: 50px;
        height: 50px;
    }
    
    .main-title {
        font-size: 2rem;
    }
    
    .subtitle {
        font-size: 0.9rem;
    }
    
    .video-text {
        font-size: 1rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}
