* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
    color: #ffffff;
    line-height: 1.6;
    min-height: 100vh;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(15, 12, 41, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 28px;
    font-weight: 700;
    color: #a78bfa;
    text-decoration: none;
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.nav-links a:hover {
    background: rgba(167, 139, 250, 0.2);
    color: #a78bfa;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 20px 60px;
}

.hero-content {
    max-width: 800px;
}

.greeting {
    font-size: 22px;
    color: #a78bfa;
    margin-bottom: 10px;
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.hero h1 {
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 15px;
    opacity: 0;
    animation: fadeInUp 0.6s ease 0.2s forwards;
}

.highlight {
    background: linear-gradient(90deg, #a78bfa, #60a5fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tagline {
    font-size: 24px;
    color: #94a3b8;
    margin-bottom: 30px;
    opacity: 0;
    animation: fadeInUp 0.6s ease 0.4s forwards;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    opacity: 0;
    animation: fadeInUp 0.6s ease 0.6s forwards;
}

.btn {
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: linear-gradient(90deg, #a78bfa, #60a5fa);
    color: #ffffff;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(167, 139, 250, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #a78bfa;
    border: 2px solid #a78bfa;
}

.btn-secondary:hover {
    background: rgba(167, 139, 250, 0.1);
    transform: translateY(-3px);
}

.section-title {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #a78bfa, #60a5fa);
    border-radius: 2px;
}

.about {
    padding: 80px 20px;
    background: rgba(255, 255, 255, 0.03);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-content p {
    font-size: 18px;
    color: #cbd5e1;
    margin-bottom: 20px;
}

.skills {
    padding: 80px 20px;
}

.skills-grid {
    max-width: 700px;
    margin: 0 auto;
}

.skill-item {
    margin-bottom: 25px;
}

.skill-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.skill-name {
    font-size: 18px;
    font-weight: 600;
}

.skill-percent {
    font-size: 16px;
    color: #a78bfa;
}

.skill-bar {
    width: 100%;
    height: 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    overflow: hidden;
}

.skill-progress {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, #a78bfa, #60a5fa);
    border-radius: 6px;
    transition: width 1.5s ease;
}

.contact {
    padding: 80px 20px;
    background: rgba(255, 255, 255, 0.03);
    text-align: center;
}

.contact-content p {
    font-size: 18px;
    color: #cbd5e1;
    margin-bottom: 25px;
}

.email-link {
    font-size: 22px;
    color: #a78bfa;
    text-decoration: none;
    font-weight: 600;
    padding: 15px 30px;
    border: 2px solid #a78bfa;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: inline-block;
}

.email-link:hover {
    background: rgba(167, 139, 250, 0.1);
    transform: translateY(-3px);
}

footer {
    text-align: center;
    padding: 30px 20px;
    background: rgba(0, 0, 0, 0.3);
    color: #94a3b8;
    font-size: 14px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        flex-direction: column;
        background: rgba(15, 12, 41, 0.98);
        padding: 20px;
        gap: 15px;
        transform: translateY(-150%);
        transition: transform 0.3s ease;
    }

    .nav-links.active {
        transform: translateY(0);
    }

    .hero h1 {
        font-size: 36px;
    }

    .tagline {
        font-size: 18px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .section-title {
        font-size: 28px;
    }
}
