:root {
    --primary-color: #6c63ff;
    --primary-dark: #5651c9;
    --accent-color: #8a85ff;
    --dark-color: #1a1a1a;
    --dark-secondary: #2d2d2d;
    --dark-tertiary: #3d3d3d;
    --light-color: #f5f5f5;
    --light-secondary: #e0e0e0;
    --success-color: #4caf50;
    --danger-color: #f44336;
    --warning-color: #ff9800;
    --info-color: #2196f3;
    --text-primary: #f5f5f5;
    --text-secondary: #b3b3b3;
    --border-color: #404040;
    --card-bg: #2d2d2d;
    --input-bg: #3d3d3d;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--dark-color);
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    text-align: center;
    padding: 3rem 0 2rem;
}

.logo {
    font-size: 5.0rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 1px 1px 3px rgba(171, 163, 163, 0.3);
}

.logo .accent {
    -webkit-text-fill-color: var(--light-color);
    font-weight: 900;
}

header p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    font-weight: 300;
}

.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    padding: 2rem 0 4rem;
}

.hero-content {
    flex: 1;
    margin-top: -44px;
}

.hero-content h2 {
    font-size: 3.0rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    letter-spacing: -1px;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.code-snippet {
    background-color: var(--dark-secondary);
    border-radius: 12px;
    overflow: hidden;
    width: 100%;
    max-width: 450px;
    border: 1px solid var(--border-color);
}

.code-header {
    background-color: var(--dark-tertiary);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
}

.code-header span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-right: 8px;
}

.red-dot {
    background-color: var(--danger-color);
}

.yellow-dot {
    background-color: var(--warning-color);
}

.green-dot {
    background-color: var(--success-color);
}

.file-name {
    margin-left: auto;
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-family: 'JetBrains Mono', monospace;
}

.code-snippet pre {
    padding: 24px;
    overflow-x: auto;
    margin: 0;
}

.code-snippet code {
    color: var(--light-secondary);
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.65rem;
    line-height: 1.5;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-secondary {
    background: #f5f5f5;
    color: var(--primary-color);
    
}

.btn-secondary:hover {
    background: #e0e0e0;

}

.features {
    padding: 4rem 0;
    background: var(--dark-secondary);
    border-radius: 16px;
    margin: 2rem 0;
}

.features h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-primary);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature {
    text-align: center;
    padding: 2rem;
    border-radius: 12px;
    background: var(--card-bg);
    transition: transform 0.2s ease;
    border: 1px solid var(--border-color);
}

.feature:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.feature h3 {
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-size: 1.4rem;
    font-weight: 600;
}

.feature p {
    color: var(--text-secondary);
    line-height: 1.6;
}

@media (max-width: 968px) {
    .hero {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-content h2 {
        font-size: 2.4rem;
    }
    
    .cta-buttons {
        justify-content: center;
    }
}

@media (max-width: 640px) {
    .logo {
        font-size: 2.7rem;
        font-weight: 900;
        letter-spacing: -1px;
        text-shadow: 1px 1px 3px rgba(171, 163, 163, 0.3);
    }
    
    .hero-content h2 {
        font-size: 2rem;
        font-weight: 900;
        margin-top: -20px;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
    }
    
    .btn {
        width: 40%;
        border-radius: 20px;
    }
}
.hii {
    color: var(--accent-color);
    font-size: 20px;
    font-weight: 900;
}
.hi {
    font-size: 30px;
    color: var(--accent-color);
}
.ii {
    font-size: 60px;
}
