/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #6366f1;
    --text-primary: #ffffff;
    --text-secondary: #a1a1aa;
    --background: #000000;
    --border-color: #27272a;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--background);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #000000 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.weening-logo {
    max-width: 400px;
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease, filter 0.3s ease;
    filter: drop-shadow(0 0 0 rgba(255, 255, 255, 0));
}

.weening-logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 8px 16px rgba(255, 255, 255, 0.3));
}

/* Responsive Design */
@media (max-width: 768px) {
    .weening-logo {
        max-width: 300px;
    }

    .hero-container {
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .weening-logo {
        max-width: 250px;
    }
}