* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

.Container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.NavBar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    z-index: 1000;
    transition: all 0.3s ease;
}

.NavContainer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.NavLogo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
}

.NavMenu {
    display: flex;
    gap: 30px;
}

.NavLink {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.NavLink:hover {
    color: #ffffff;
}

.NavLink::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #7289da, #5865f2);
    transition: width 0.3s ease;
}

.NavLink:hover::after {
    width: 100%;
}

.NavToggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.Bar {
    width: 25px;
    height: 3px;
    background: #ffffff;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.Hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 70px;
    overflow: hidden;
}

.HeroContainer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.HeroContent {
    max-width: 800px;
    margin: 0 auto;
}

.HeroTitle {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.GradientText {
    background: linear-gradient(135deg, #7289da, #5865f2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.HeroDescription {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    line-height: 1.6;
}

.HeroButtons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.Btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border: none;
}

.BtnPrimary {
    background: linear-gradient(135deg, #7289da, #5865f2);
    color: white;
    box-shadow: 0 4px 15px rgba(114, 137, 218, 0.3);
}

.BtnPrimary:hover {
    background: linear-gradient(135deg, #5865f2, #4752c4);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(114, 137, 218, 0.4);
}

.BtnSecondary {
    background: rgba(255, 255, 255, 0.08);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
}

.BtnSecondary:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.SectionHeader {
    text-align: center;
    margin-bottom: 60px;
}

.SectionTitle {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff, #e0e0e0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.SectionDescription {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.About {
    padding: 100px 0;
}

.AboutContent {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.AboutText h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: #ffffff;
}

.AboutText p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    line-height: 1.7;
}

.Projects {
    padding: 100px 0;
    background: rgba(255, 255, 255, 0.02);
}

.ProjectsGrid {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.ProjectCard {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.ProjectCard:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.12);
}

.ProjectCard h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #ffffff;
}

.ProjectCard p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 20px;
}

.ComingSoon {
    color: rgba(255, 255, 255, 0.4);
    font-style: italic;
    cursor: default;
    position: relative;
}

.ComingSoon::after {
    content: ' (Coming Soon)';
    font-size: 0.8em;
    color: rgba(255, 255, 255, 0.3);
    font-style: normal;
}

.Footer {
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 60px 0 20px;
}

.FooterContent {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.FooterLogo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
}

.FooterSection h4 {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
}

.FooterSection p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.FooterSection ul {
    list-style: none;
    padding: 0;
}

.FooterSection ul li {
    margin-bottom: 12px;
}

.FooterSection ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.FooterSection ul li a:hover {
    color: #7289da;
}

.SocialLinks {
    display: flex;
    gap: 16px;
}

.SocialLink {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

.SocialLink:hover {
    background: rgba(114, 137, 218, 0.2);
    border-color: rgba(114, 137, 218, 0.3);
    color: #7289da;
    transform: translateY(-2px);
}

.FooterBottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.FooterBottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

@media (max-width: 768px) {
    .NavMenu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(15, 15, 35, 0.95);
        backdrop-filter: blur(20px);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 20px 0;
    }

    .NavMenu.active {
        left: 0;
    }

    .NavToggle {
        display: flex;
    }

    .HeroTitle {
        font-size: 2.5rem;
    }

    .SectionTitle {
        font-size: 2.5rem;
    }

    .ProjectsGrid {
        grid-template-columns: 1fr;
    }

    .HeroButtons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .HeroTitle {
        font-size: 2rem;
    }

    .SectionTitle {
        font-size: 2rem;
    }

    .Btn {
        padding: 14px 24px;
        font-size: 14px;
    }

    .ProjectCard {
        padding: 30px 20px;
    }
}
