* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #202020;
    color: #ffffff;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: #6200b3;
}

.navbar {
    background: #1a1a1a;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.nav-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s;
}

.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 120px auto 0;
    padding: 80px 40px;
    align-items: center;
}

.hero-content {
    max-width: 600px;
}

.hero-title {
    font-size: 56px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 20px;
    color: #9e9e9e;
    margin-bottom: 32px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.primary-button {
    background: #6200b3;
    color: white;
    border: none;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s;
}

.primary-button:hover {
    background: #540099;
}

.primary-button.large {
    padding: 20px 48px;
    font-size: 18px;
}

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

.placeholder-graphic {
    width: 100%;
    max-width: 500px;
    height: 400px;
    background: linear-gradient(135deg, #4a275e, #682d77);
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(94, 39, 80, 0.3);
}

.stats-section {
    background: #272727;
    padding: 60px 40px;
}

.stats-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-item h3 {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
}

.stat-item p {
    font-size: 16px;
    color: #9e9e9e;
}

.section {
    padding: 100px 40px;
}

.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 48px;
    font-weight: 700;
    color: #111111;
    margin-bottom: 16px;
}

.section-description {
    font-size: 20px;
    color: #dadada;
}

.two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 40px;
}

.column h3 {
    font-size: 28px;
    color: #111111;
    margin-bottom: 16px;
}

.column p {
    font-size: 18px;
    color: #666666;
    line-height: 1.8;
}

.skill-list {
    list-style: none;
}

.skill-list li {
    font-size: 18px;
    color: #dedede;
    padding: 12px 0;
    border-bottom: 1px solid #e5e5e5;
}

.skill-list li:before {
    content: "✓ ";
    color: #6200b3;
    font-weight: 700;
    margin-right: 12px;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.project-card {
    background: #272727;
    padding: 40px;
    border-radius: 8px;
    transition: box-shadow 0.3s, transform 0.3s;
}

.project-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #5e2750, #772d63);
    border-radius: 8px;
    margin-bottom: 24px;
}

.project-card h3 {
    font-size: 24px;
    color: #111111;
    margin-bottom: 16px;
}

.project-card p {
    font-size: 16px;
    color: #666666;
    margin-bottom: 24px;
    line-height: 1.6;
}

.tech-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.tech-tag {
    background: #f7f7f7;
    color: #5e2750;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid #e5e5e5;
}

.footer {
    background: #111111;
    color: white;
    padding: 60px 40px 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 16px;
    color: white;
}

.footer-column p {
    color: #999999;
    line-height: 1.8;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: #999999;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: #5e2750;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid #333333;
    text-align: center;
}

.footer-bottom p {
    color: #666666;
    font-size: 14px;
}