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

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 25%, #e2e8f0 50%, #f8fafc 75%, #ffffff 100%);
    min-height: 100vh;
    color: #1f2937;
    position: relative;
}

.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: calc(100% - 40px);
    max-width: 1200px;
}

.nav-container {
    background: rgba(31, 41, 55, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 50px;
    padding: 16px 24px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-cube {
    width: 14px;
    height: 14px;
    perspective: 60px;
}

.cube {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transform: rotateX(-15deg) rotateY(25deg);
}

.cube-face {
    position: absolute;
    width: 14px;
    height: 14px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cube-top {
    background: rgba(147, 197, 253, 0.8);
    transform: rotateX(90deg) translateZ(7px);
}

.cube-front {
    background: rgba(59, 130, 246, 0.9);
    transform: translateZ(7px);
}

.cube-right {
    background: rgba(37, 99, 235, 0.7);
    transform: rotateY(90deg) translateZ(7px);
}

.logo-text {
    font-size: 20px;
    font-weight: 400;
    color: white;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
    justify-self: center;
}

.nav-menu a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: white;
}

.social-icons {
    display: flex;
    gap: 16px;
    align-items: center;
    justify-self: end;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.social-icon:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    transform: translateY(-1px);
}

.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
    text-align: center;
}

.hero-container {
    max-width: 900px;
    padding: 0 20px;
}

.welcome-text {
    font-size: 18px;
    color: #6b7280;
    margin-bottom: 24px;
    font-weight: 500;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 32px;
    color: #111827;
    letter-spacing: -0.02em;
}

.name-highlight {
    background: linear-gradient(135deg, #007aff, #0051d4, #003a9b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.profile-images {
    display: inline-flex;
    align-items: center;
    gap: -8px;
    margin: 0 8px;
    position: relative;
    top: -4px;
}

.profile-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 4px solid white;
    object-fit: cover;
    margin-left: -8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.profile-img:first-child {
    margin-left: 0;
}

.hero-description {
    font-size: 20px;
    color: #6b7280;
    margin-bottom: 48px;
    font-weight: 400;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    background: #111827;
    color: white;
    border: none;
    padding: 18px 36px;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(17, 24, 39, 0.3);
}

.cta-button:hover {
    background: #374151;
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(17, 24, 39, 0.4);
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .profile-img {
        width: 48px;
        height: 48px;
    }
    
    .hero-description {
        font-size: 18px;
    }
    
    .navbar {
        width: calc(100% - 20px);
    }
    
    .nav-container {
        padding: 12px 20px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .profile-img {
        width: 40px;
        height: 40px;
    }
}