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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #0f0f0f;
    color: #e0e0e0;
    overflow-x: hidden;
}

/* Navbar - Same as homepage */
nav {
    background: rgba(20, 20, 20, 0.98);
    padding: 1.2rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    border-bottom: 2px solid rgba(100, 100, 255, 0.2);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

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

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    background: linear-gradient(135deg, #6366f1 0%, #a855f7 50%, #ec4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    cursor: pointer;
    transition: all 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

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

.nav-links li {
    position: relative;
}

.nav-links a {
    color: #b0b0b0;
    text-decoration: none;
    padding: 0.8rem 1.5rem;
    display: block;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.nav-links a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #6366f1, #a855f7);
    transition: all 0.4s ease;
    transform: translateX(-50%);
}

.nav-links a:hover {
    color: #ffffff;
    transform: translateY(-2px);
}

.nav-links a:hover::before {
    width: 80%;
}

.nav-links a::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.5s ease;
}

.nav-links a:hover::after {
    width: 200px;
    height: 200px;
}

/* Cursor Glow Effect */
.cursor-glow {
    position: fixed;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
    z-index: 0;
    mix-blend-mode: screen;
}

/* About Section */
.about-section {
    padding: 120px 20px 80px;
    min-height: 100vh;
}

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

/* Profile Section */
.profile-container {
    display: flex;
    gap: 4rem;
    align-items: center;
    margin-bottom: 6rem;
    animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.profile-image-wrapper {
    position: relative;
    flex-shrink: 0;
}

.profile-image {
    width: 350px;
    height: 350px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid rgba(99, 102, 241, 0.3);
    box-shadow: 0 20px 60px rgba(99, 102, 241, 0.3);
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.profile-image:hover {
    transform: scale(1.05);
    border-color: rgba(99, 102, 241, 0.6);
    box-shadow: 0 25px 70px rgba(99, 102, 241, 0.5);
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-border {
    position: absolute;
    width: 370px;
    height: 370px;
    border-radius: 50%;
    border: 2px solid #6366f1;
    top: -10px;
    left: -10px;
    z-index: 1;
    animation: rotateBorder 10s linear infinite;
}

@keyframes rotateBorder {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.profile-description {
    flex: 1;
}

.section-title {
    font-size: 1.2rem;
    color: #6366f1;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.name {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #6366f1 0%, #a855f7 50%, #ec4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.role {
    font-size: 1.5rem;
    color: #b0b0b0;
    margin-bottom: 2rem;
}

.description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #a0a0a0;
    margin-bottom: 1.5rem;
}

.stats {
    display: flex;
    gap: 3rem;
    margin-top: 2.5rem;
}

.stat-item {
    text-align: center;
}

.stat-item h3 {
    font-size: 2.5rem;
    background: linear-gradient(135deg, #6366f1 0%, #a855f7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: #808080;
    font-size: 0.9rem;
}

/* Hobbies Section */
.hobbies-section {
    animation: fadeInUp 1s ease 0.3s both;
}

.hobbies-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #6366f1 0%, #a855f7 50%, #ec4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hobbies-subtitle {
    text-align: center;
    color: #808080;
    font-size: 1.1rem;
    margin-bottom: 4rem;
}

.hobbies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.hobby-card {
    background: rgba(30, 30, 30, 0.5);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    cursor: pointer;
}

.hobby-card:hover {
    transform: translateY(-10px);
    border-color: rgba(99, 102, 241, 0.5);
    box-shadow: 0 20px 50px rgba(99, 102, 241, 0.3);
}

.hobby-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.hobby-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.hobby-card:hover .hobby-image img {
    transform: scale(1.1);
}

.hobby-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(15, 15, 15, 0.9), transparent);
}

.hobby-content {
    padding: 1.5rem;
}

.hobby-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: inline-block;
    transition: all 0.3s ease;
}

.hobby-card:hover .hobby-icon {
    transform: scale(1.2) rotate(10deg);
}

.hobby-content h3 {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 0.8rem;
}

.hobby-content p {
    color: #a0a0a0;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 968px) {
    .profile-container {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
    }

    .profile-image,
    .image-border {
        width: 300px;
        height: 300px;
    }

    .image-border {
        width: 320px;
        height: 320px;
    }

    .stats {
        justify-content: center;
    }

    .name {
        font-size: 2.5rem;
    }

    .role {
        font-size: 1.3rem;
    }

    .hobbies-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0 20px;
    }

    .nav-links a {
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
    }

    .about-section {
        padding: 100px 20px 60px;
    }

    .profile-image,
    .image-border {
        width: 250px;
        height: 250px;
    }

    .image-border {
        width: 270px;
        height: 270px;
    }

    .name {
        font-size: 2rem;
    }

    .stats {
        gap: 2rem;
    }

    .stat-item h3 {
        font-size: 2rem;
    }

    .hobbies-title {
        font-size: 2rem;
    }
}