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

body {
    font-family: 'Inter', sans-serif;
    background: #000000;
    min-height: 100vh;
    color: #ffffff;
    overflow-x: hidden;
    position: relative;
}

/* Stars Animation */
.stars {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background: transparent;
    z-index: 0;
}

.stars::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, #fff, transparent),
        radial-gradient(2px 2px at 40px 70px, #fff, transparent),
        radial-gradient(1px 1px at 90px 40px, #fff, transparent),
        radial-gradient(1px 1px at 130px 80px, #fff, transparent),
        radial-gradient(2px 2px at 160px 30px, #fff, transparent),
        radial-gradient(1px 1px at 200px 90px, #fff, transparent),
        radial-gradient(2px 2px at 260px 20px, #fff, transparent),
        radial-gradient(1px 1px at 300px 60px, #fff, transparent),
        radial-gradient(2px 2px at 350px 100px, #fff, transparent),
        radial-gradient(1px 1px at 400px 40px, #fff, transparent);
    background-repeat: repeat;
    background-size: 500px 200px;
    animation: sparkle 100s linear infinite;
    opacity: 0.6;
}

@keyframes sparkle {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-500px);
    }
}

/* Chrome Dino Animation Background */
.dino-container {
    position: fixed;
    bottom: 50px;
    left: -100px;
    width: 44px;
    height: 47px;
    z-index: 1;
    animation: dinoRun 10s linear infinite;
}

.dino {
    width: 88px;
    height: 94px;
    background-image: url('dino.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
    animation: dinoJump 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite;
}

.dino::before {
    display: none;
}

.dino::after {
    display: none;
}

@keyframes dinoJump {
    0% {
        transform: translateY(0);
    }
    30% {
        transform: translateY(-80px);
    }
    60% {
        transform: translateY(-80px);
    }
    100% {
        transform: translateY(0);
    }
}

.cloud {
    position: fixed;
    background: #535353;
    border-radius: 50px;
    opacity: 0.4;
    animation: cloudFloat 25s linear infinite;
    z-index: 1;
}

.cloud::before,
.cloud::after {
    content: '';
    position: absolute;
    background: #535353;
    border-radius: 50px;
}

.cloud1 {
    width: 50px;
    height: 20px;
    top: 20%;
    left: -60px;
    animation-delay: 0s;
}

.cloud1::before {
    width: 25px;
    height: 25px;
    top: -12px;
    left: 10px;
}

.cloud1::after {
    width: 30px;
    height: 20px;
    top: -8px;
    right: 10px;
}

.cloud2 {
    width: 60px;
    height: 25px;
    top: 15%;
    left: -80px;
    animation-delay: -10s;
}

.cloud2::before {
    width: 30px;
    height: 30px;
    top: -15px;
    left: 15px;
}

.cloud2::after {
    width: 35px;
    height: 25px;
    top: -10px;
    right: 15px;
}

.cloud3 {
    width: 45px;
    height: 18px;
    top: 25%;
    left: -70px;
    animation-delay: -5s;
}

.cloud3::before {
    width: 22px;
    height: 22px;
    top: -10px;
    left: 8px;
}

.cloud3::after {
    width: 28px;
    height: 18px;
    top: -6px;
    right: 8px;
}

.cloud4 {
    width: 55px;
    height: 22px;
    top: 30%;
    left: -75px;
    animation-delay: -15s;
}

.cloud4::before {
    width: 28px;
    height: 28px;
    top: -14px;
    left: 12px;
}

.cloud4::after {
    width: 32px;
    height: 22px;
    top: -8px;
    right: 12px;
}

.cloud5 {
    width: 40px;
    height: 16px;
    top: 35%;
    left: -55px;
    animation-delay: -20s;
}

.cloud5::before {
    width: 20px;
    height: 20px;
    top: -8px;
    left: 6px;
}

.cloud5::after {
    width: 24px;
    height: 16px;
    top: -4px;
    right: 6px;
}

@keyframes dinoRun {
    0% {
        left: -100px;
    }
    100% {
        left: calc(100vw + 100px);
    }
}

@keyframes cloudFloat {
    0% {
        left: -100px;
    }
    100% {
        left: calc(100vw + 100px);
    }
}

.custom-cursor {
    display: none !important;
}

.custom-cursor::before {
    display: none !important;
}

.custom-cursor.hover {
    display: none !important;
}

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

/* Hero Section */
.hero {
    padding: 60px 0 80px;
    text-align: center;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.name {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
    animation: fadeInUp 1s ease-out;
    letter-spacing: -1px;
    margin-bottom: 40px;
}

/* About Section */
.about-section {
    padding: 40px 0;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(20px);
    margin: 30px 0;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 700px;
    margin: 0 auto;
    padding: 0 40px;
}

.about-text h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffffff;
    text-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #e0e0e0;
    font-weight: 400;
}

/* Social Section */
.social-section {
    padding: 40px 0;
    text-align: center;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 30px;
    text-decoration: none;
    color: #e0e0e0;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link i {
    font-size: 1.1rem;
}

.social-link:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.social-link.linkedin:hover {
    background: linear-gradient(135deg, #0077b5, #00a0dc);
    color: white;
}

.social-link.github:hover {
    background: linear-gradient(135deg, #333, #555);
    color: white;
}

/* Content Section */
.content-section {
    padding: 60px 0;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(20px);
    margin: 30px 0;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.content-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 40px;
    color: #ffffff;
    text-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
    padding: 0 30px;
}

.repositories-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    padding: 0 30px;
}

.repository-card {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    padding: 35px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
}

.repository-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #a0a0a0, #707070);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.repository-card:hover::before {
    transform: scaleX(1);
}

.repository-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.repo-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.repo-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: #f0f0f0;
    text-decoration: none;
    flex: 1;
}

.repo-name:hover {
    color: #b0b0b0;
}

.repo-language {
    background: linear-gradient(135deg, #808080, #606060);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.repo-description {
    color: #c0c0c0;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.repo-stats {
    display: flex;
    gap: 20px;
    font-size: 0.9rem;
    color: #999;
}

.repo-stat {
    display: flex;
    align-items: center;
    gap: 5px;
}

.loading {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    padding: 40px;
}

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

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Enhanced Custom Cursor */
.modern-cursor {
    display: none !important;
}

.modern-cursor::before {
    display: none !important;
}

.modern-cursor.hover {
    display: none !important;
}

.modern-cursor.click {
    display: none !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-content {
        padding: 0 20px;
        gap: 30px;
    }
    
    .about-text h2 {
        font-size: 1.5rem;
    }
    
    .about-text p {
        font-size: 0.9rem;
    }
    
    .social-links {
        gap: 20px;
    }
    
    .social-link {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .repositories-grid {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }
    
    .content-section h2 {
        font-size: 1.7rem;
    }
}

@media (max-width: 480px) {
    .social-links {
        flex-direction: column;
        align-items: center;
    }
    
    .social-link {
        width: 200px;
        justify-content: center;
    }
}