* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #1a202c;
    color: #ffffff;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
.header {
    padding: 16px 0;
    border-bottom: 1px solid #2d3748;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 20px;
    font-weight: bold;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.search-icon {
    color: #ffffff;
    cursor: pointer;
}

.btn-primary {
    background-color: #7c3aed;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #6d28d9;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 80px 0;
}

.hero-title {
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #a0aec0;
}

/* Portfolio Section */
.portfolio {
    padding: 64px 0;
}

.section-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 48px;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-bottom: 32px;
}

.portfolio-card {
    background-color: #2d3748;
    border-radius: 8px;
    padding: 16px;
    border: 1px solid #4a5568;
}

.portfolio-image {
    aspect-ratio: 4/5;
    background-color: #4a5568;
    border-radius: 8px;
    margin-bottom: 16px;
    overflow: hidden;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.portfolio-title {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 8px;
}

.portfolio-description {
    font-size: 12px;
    color: #a0aec0;
    margin-bottom: 16px;
    line-height: 1.5;
}

.btn-portfolio {
    background-color: #7c3aed;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s ease;
}

.btn-portfolio:hover {
    background-color: #6d28d9;
}

/* Portfolio Dots */
.portfolio-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #4a5568;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active {
    background-color: #7c3aed;
}

/* About & Services Section */
.about-services {
    padding: 64px 0;
}

.about-services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.about-name {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.about-buttons {
    margin-bottom: 32px;
}

.about-description {
    font-size: 14px;
    color: #a0aec0;
    line-height: 1.6;
    margin-bottom: 24px;
}

/* Services */
.services {
    margin-bottom: 32px;
}

.services-list {
    list-style: none;
    margin-bottom: 24px;
}

.services-list li {
    font-size: 18px;
    margin-bottom: 12px;
}

/* Profile */
.profile-content {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.profile-image {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    overflow: hidden;
    background-color: #4a5568;
    flex-shrink: 0;
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-name {
    font-weight: bold;
    margin-bottom: 4px;
}

.profile-role {
    font-size: 12px;
    color: #a0aec0;
    margin-bottom: 8px;
}

.profile-description,
.profile-experience {
    font-size: 12px;
    color: #a0aec0;
    line-height: 1.5;
    margin-bottom: 8px;
}

/* AI Badge */
.ai-badge {
    position: fixed;
    bottom: 16px;
    right: 16px;
    background-color: #4a5568;
    color: white;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: bold;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .portfolio-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 16px;
    }
    
    .about-services-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .profile-content {
        flex-direction: column;
        text-align: center;
    }
    
    .container {
        padding: 0 16px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .header .container {
        flex-direction: column;
        gap: 16px;
    }
}