* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: #0f172a; /* To'q ko'k-qora fon */
    color: #94a3b8;
    line-height: 1.6;
}

.container {
    display: flex;
    max-width: 1100px;
    margin: 0 auto;
    padding: 80px 20px;
}

/* Sidebar */
.sidebar {
    width: 40%;
    position: sticky;
    top: 80px;
    height: calc(100vh - 160px);
    display: flex;
    flex-direction: column;
}

h1 { color: #f8fafc; font-size: 2.5rem; margin-bottom: 10px; }
.title { color: #e2e8f0; font-size: 1.2rem; margin-bottom: 20px; }

.status {
    background: rgba(74, 222, 128, 0.1);
    color: #4ade80;
    padding: 6px 16px;
    border-radius: 20px;
    display: inline-block;
    font-size: 0.75rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.dot {
    height: 8px; width: 8px; background: #4ade80;
    border-radius: 50%; display: inline-block; margin-right: 5px;
}

.menu { margin-top: 60px; flex-grow: 1; }
.menu ul { list-style: none; }
.menu li { margin-bottom: 20px; }
.menu a {
    text-decoration: none;
    color: #64748b;
    font-size: 0.8rem;
    font-weight: bold;
    letter-spacing: 2px;
    transition: 0.3s;
}
.menu a:hover { color: #f8fafc; padding-left: 10px; }

.social-links { font-size: 1.5rem; display: flex; gap: 25px; }
.social-links a { color: #94a3b8; transition: 0.3s; }
.social-links a:hover { color: #f8fafc; }

/* Content */
.content { width: 60%; }
section { margin-bottom: 100px; }
h2 { color: #f8fafc; text-transform: uppercase; font-size: 1rem; margin-bottom: 30px; letter-spacing: 1px; }

.item { margin-bottom: 30px; }
.item h3 { color: #e2e8f0; margin-bottom: 5px; }
.sub-text { color: #94a3b8; font-weight: 500; }
.date { font-size: 0.85rem; color: #64748b; margin-bottom: 10px; }

.projects-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.project-card {
    background: rgba(30, 41, 59, 0.5);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid transparent;
    transition: 0.3s;
}
.project-card:hover {
    border-color: #334155;
    background: rgba(30, 41, 59, 0.8);
}
.project-card h3 { color: #f8fafc; font-size: 1rem; margin-bottom: 10px; }

.skills-list { display: flex; flex-wrap: wrap; gap: 10px; }
.skills-list span {
    background: #1e293b;
    color: #38bdf8;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.85rem;
}

@media (max-width: 768px) {
    .container { flex-direction: column; padding: 40px 20px; }
    .sidebar { width: 100%; position: relative; height: auto; margin-bottom: 60px; }
    .content { width: 100%; }
}