@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Poppins:wght@400;500;600;700;800&display=swap');

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

body, button, input, textarea {
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}

.btn, .nav-links, button:not(input), .skill-tag, .project-card-icon {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
    scrollbar-width: none !important;
    -ms-overflow-style: none !important;
    overflow-y: scroll;
    background-color: #000000;
}

html::-webkit-scrollbar {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
}

* {
    scrollbar-width: none !important;
    -ms-overflow-style: none !important;
}

*::-webkit-scrollbar {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
}

body {
    font-family: var(--font-primary);
    background: linear-gradient(135deg, #1a0633 0%, #0f0a1e 15%, #1e1040 30%, #0a0a2e 45%, #1a0633 60%, #0f0a1e 75%, #1e1040 90%, #0a0a2e 100%);
    background-size: 400% 400%;
    animation: gradientShift 25s ease-in-out infinite;
    color: var(--text-primary);
    overflow-x: hidden;
    position: relative;
    line-height: 1.6;
    transition: color 0.3s ease;
    width: 100%;
    max-width: 100vw;
}

body::before {
    content: '';
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.15) 0%, transparent 50%);
    animation: rotateGradient 30s linear infinite;
    pointer-events: none;
    z-index: 0;
}

body::after {
    content: '';
    position: fixed;
    bottom: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, transparent 50%);
    animation: rotateGradient 40s linear infinite reverse;
    pointer-events: none;
    z-index: 0;
}

* {
    max-width: 100%;
}

section {
    position: relative;
    z-index: 1;
}

img {
    max-width: 100%;
    height: auto;
}



a, button, .social-btn, .skill-tag {
    cursor: pointer;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 10;
    overflow-x: hidden;
}

section {
    overflow-x: hidden;
    width: 100%;
}

p, h1, h2, h3, h4, h5, h6, span {
    word-wrap: break-word;
    overflow-wrap: break-word;
}


