/* Reset dan Dasar */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap');

:root {
    /* Warna tema Midoriya Izuku */
    --one-for-all-green: #00FF88;
    --one-for-all-teal: #00CED1;
    --one-for-all-blue: #00BFFF;
    --black-hair: #212121;
    --white-bg: #0a0a14;
    --light-text: #ffffff;
    --gray-text: #b0b0b0;
    --light-gray: #2a2a2a;
    --shadow-green: 0 0 25px rgba(0, 255, 136, 0.6);
    --shadow-teal: 0 0 20px rgba(0, 206, 209, 0.5);
    --shadow-blue: 0 0 15px rgba(0, 191, 255, 0.4);
}

body {
    background-color: var(--white-bg);
    color: var(--light-text);
    line-height: 1.6;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(0, 255, 136, 0.15) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(0, 206, 209, 0.15) 0%, transparent 20%),
        radial-gradient(circle at 50% 50%, rgba(0, 191, 255, 0.1) 0%, transparent 30%),
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 2px,
            rgba(0, 255, 136, 0.03) 2px,
            rgba(0, 255, 136, 0.03) 4px
        );
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

/* Efek One For All di latar belakang */
body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 255, 136, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(0, 206, 209, 0.05) 0%, transparent 40%);
    pointer-events: none;
    z-index: -1;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

section {
    padding: 80px 0;
    position: relative;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.section-title h2 {
    font-size: 2.8rem;
    color: var(--one-for-all-green);
    margin-bottom: 15px;
    letter-spacing: 2px;
    font-weight: 700;
    text-shadow: var(--shadow-green);
    position: relative;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
}

.section-title h2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--one-for-all-green), transparent);
    background-size: 300% 100%;
    animation: one-for-all-glow 2s infinite alternate;
    opacity: 0.3;
    z-index: -1;
}

@keyframes one-for-all-glow {
    0% { background-position: 0% 50%; }
    100% { background-position: 100% 50%; }
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, var(--one-for-all-green), var(--one-for-all-teal), var(--one-for-all-blue));
    border-radius: 2px;
    box-shadow: var(--shadow-green);
}

/* Header dan Navigasi */
header {
    background: rgba(10, 10, 20, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 0 25px rgba(0, 255, 136, 0.4);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 0 15px;
    border-bottom: 2px solid var(--one-for-all-green);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    font-size: 2rem;
    font-weight: 700;
    color: var(--one-for-all-teal);
    text-decoration: none;
    text-shadow: var(--shadow-teal);
    letter-spacing: 2px;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
}

.logo span {
    color: var(--one-for-all-green);
    text-shadow: var(--shadow-green);
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 25px;
}

.nav-links a {
    text-decoration: none;
    color: var(--light-text);
    font-weight: 500;
    transition: all 0.3s;
    position: relative;
    letter-spacing: 1px;
    font-size: 0.9rem;
    font-family: 'Montserrat', sans-serif;
    padding: 8px 12px;
    border-radius: 4px;
}

.nav-links a:hover {
    color: var(--one-for-all-green);
    text-shadow: var(--shadow-green);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--one-for-all-green), var(--one-for-all-teal));
    transition: width 0.3s;
    box-shadow: var(--shadow-green);
}

.nav-links a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    cursor: pointer;
    color: var(--light-text);
    font-size: 1.5rem;
    text-shadow: var(--shadow-green);
}

/* Hero Section */
#home {
    height: 100vh;
    display: flex;
    align-items: center;
    background: 
        linear-gradient(135deg, rgba(10, 10, 20, 0.95) 0%, rgba(20, 20, 30, 0.95) 100%),
        url('image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="200" height="200" viewBox="0 0 200 200"><defs><radialGradient id="oneforall" cx="50%" cy="50%" r="50%" fx="50%" fy="50%"><stop offset="0%" style="stop-color:rgb(0,255,136);stop-opacity:0.3"/><stop offset="100%" style="stop-color:rgb(0,255,136);stop-opacity:0"/></radialGradient></defs><rect width="200" height="200" fill="url(%23oneforall)"/></svg>');
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: var(--light-text);
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: 1px;
    text-shadow: 0 0 15px rgb(255, 255, 255);
    font-family: 'Montserrat', sans-serif;
}

.hero-text h1 span {
    color: var(--one-for-all-green);
    text-shadow: var(--shadow-green);
    position: relative;
}

.hero-text h1 span::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--one-for-all-green);
    border-radius: 2px;
    box-shadow: var(--shadow-green);
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--gray-text);
    max-width: 600px;
    line-height: 1.8;
    font-weight: 400;
    font-family: 'Montserrat', sans-serif;
}

.btn {
    display: inline-block;
    padding: 14px 35px;
    background: linear-gradient(135deg, var(--one-for-all-green) 0%, var(--one-for-all-teal) 100%);
    color: var(--black-hair);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    letter-spacing: 2px;
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-green);
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 35px rgba(0, 255, 136, 0.7);
}

.btn-outline {
    background: transparent;
    color: var(--one-for-all-green);
    margin-left: 15px;
    box-shadow: var(--shadow-green);
    border: 2px solid var(--one-for-all-green);
    text-shadow: var(--shadow-green);
}

.btn-outline:hover {
    background: linear-gradient(135deg, var(--one-for-all-green) 0%, var(--one-for-all-teal) 100%);
    color: var(--black-hair);
    box-shadow: 0 0 35px rgba(0, 255, 136, 0.7);
    text-shadow: none;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.profile-img {
    width: 380px;
    height: 380px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--one-for-all-green);
    box-shadow: 
        0 0 40px rgba(0, 255, 136, 0.6),
        inset 0 0 25px rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
    animation: pulse-one-for-all 1.5s infinite alternate;
}

@keyframes pulse-one-for-all {
    0% { box-shadow: 0 0 25px rgba(0, 255, 136, 0.4); }
    100% { box-shadow: 0 0 50px rgba(0, 255, 136, 0.8); }
}

/* Tentang Saya */
#about {
    background: rgba(20, 20, 30, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 255, 136, 0.2);
    box-shadow: var(--shadow-green);
    position: relative;
}

.about-content {
    display: flex;
    gap: 50px;
    align-items: center;
}

.about-text {
    flex: 1;
}

.about-text h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--one-for-all-teal);
    letter-spacing: 2px;
    font-weight: 700;
    text-shadow: var(--shadow-teal);
    font-family: 'Montserrat', sans-serif;
}

.about-text p {
    margin-bottom: 20px;
    color: var(--gray-text);
    line-height: 1.8;
    font-weight: 400;
    font-family: 'Montserrat', sans-serif;
}

.about-stats {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

.stat-item {
    text-align: center;
}

.stat-item h4 {
    font-size: 2.2rem;
    color: var(--one-for-all-green);
    margin-bottom: 5px;
    font-weight: 700;
    text-shadow: var(--shadow-green);
}

.stat-item p {
    color: var(--gray-text);
    margin: 0;
    letter-spacing: 1px;
    font-size: 0.9rem;
    font-family: 'Montserrat', sans-serif;
}

.about-image {
    flex: 1;
    text-align: center;
}

.about-image img {
    width: 320px;
    height: 320px;
    border-radius: 20px;
    object-fit: cover;
    border: 3px solid var(--one-for-all-teal);
    box-shadow: 0 0 25px rgba(0, 206, 209, 0.5);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

/* Skill */
#skills {
    background: rgba(15, 15, 25, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 255, 136, 0.2);
    position: relative;
}

.skills-container {
    max-width: 700px;
    margin: 0 auto;
}

.skill-item {
    margin-bottom: 25px;
    display: flex;
    align-items: flex-start;
    position: relative;
}

.skill-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    font-size: 1.8rem;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.4);
    border: 1px solid rgba(0, 255, 136, 0.4);
    background: rgba(0, 0, 0, 0.3);
}

.skill-html .skill-icon {
    background: linear-gradient(135deg, #e44d26, #f16529);
}

.skill-css .skill-icon {
    background: linear-gradient(135deg, #264de4, #2965f1);
}

.skill-js .skill-icon {
    background: linear-gradient(135deg, #f0db4f, #f7df1e);
    color: #323330;
}

.skill-php .skill-icon {
    background: linear-gradient(135deg, #6181b6, #8892be);
}

.skill-laravel .skill-icon {
    background: linear-gradient(135deg, #ff2d20, #fd3826);
}

.skill-header {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    width: 100%;
}

.skill-name {
    font-size: 1.2rem;
    font-weight: 600;
    margin-left: 10px;
    color: var(--light-text);
    font-family: 'Montserrat', sans-serif;
}

.skill-bar-container {
    display: flex;
    align-items: center;
    width: calc(100% - 70px);
    margin-left: 70px;
}

.skill-bar {
    flex: 1;
    height: 14px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 7px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.15);
    position: relative;
}

.skill-progress {
    height: 100%;
    background: linear-gradient(90deg, var(--one-for-all-green), var(--one-for-all-teal), var(--one-for-all-blue));
    border-radius: 7px;
    position: relative;
    width: 0;
    transition: width 1.5s ease-in-out;
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.5);
}

.skill-percentage {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--one-for-all-green);
    margin-left: 15px;
    min-width: 50px;
    text-align: right;
    letter-spacing: 1px;
    text-shadow: var(--shadow-green);
    font-family: 'Montserrat', sans-serif;
}

/* Project */
#projects {
    background: rgba(20, 20, 30, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 206, 209, 0.2);
    box-shadow: var(--shadow-teal);
    position: relative;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.project-card {
    background: rgba(30, 30, 45, 0.8);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    transition: all 0.3s;
    border: 2px solid rgba(0, 255, 136, 0.2);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.7);
    border-color: var(--one-for-all-green);
}

.project-img {
    height: 220px;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.project-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-card:hover .project-img img {
    transform: scale(1.15);
}

.project-info {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.project-info h3 {
    margin-bottom: 15px;
    color: var(--one-for-all-green);
    font-size: 1.5rem;
    letter-spacing: 2px;
    font-weight: 700;
    text-shadow: var(--shadow-green);
    font-family: 'Montserrat', sans-serif;
}

.project-info p {
    color: var(--gray-text);
    margin-bottom: 20px;
    flex: 1;
    line-height: 1.7;
    font-weight: 400;
    font-family: 'Montserrat', sans-serif;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: auto;
}

.tag {
    background: rgba(0, 255, 136, 0.1);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--one-for-all-green);
    border: 1px solid rgba(0, 255, 136, 0.3);
    transition: all 0.3s;
    letter-spacing: 1px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
}

.tag:hover {
    background: var(--one-for-all-green);
    color: var(--black-hair);
    border-color: var(--one-for-all-green);
    box-shadow: var(--shadow-green);
}

/* Pengalaman */
#experience {
    background: rgba(15, 15, 25, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 191, 255, 0.2);
    position: relative;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 4px;
    background: linear-gradient(to bottom, var(--one-for-all-green), var(--one-for-all-teal), var(--one-for-all-blue));
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
    box-shadow: var(--shadow-green);
}

.timeline-item {
    padding: 20px 40px;
    position: relative;
    width: 50%;
    box-sizing: border-box;
}

.timeline-item:nth-child(odd) {
    left: 0;
}

.timeline-item:nth-child(even) {
    left: 50%;
}

.timeline-content {
    padding: 25px;
    background: rgba(30, 30, 45, 0.9);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(0, 191, 255, 0.2);
    position: relative;
}

.timeline-content h3 {
    color: var(--one-for-all-teal);
    margin-bottom: 12px;
    letter-spacing: 2px;
    font-weight: 700;
    text-shadow: var(--shadow-teal);
    font-family: 'Montserrat', sans-serif;
}

.timeline-content h4 {
    color: var(--one-for-all-green);
    margin-bottom: 15px;
    font-weight: 600;
    letter-spacing: 1px;
    text-shadow: var(--shadow-green);
    font-family: 'Montserrat', sans-serif;
}

.timeline-content .date {
    color: var(--one-for-all-blue);
    font-weight: 700;
    margin-bottom: 20px;
    display: block;
    letter-spacing: 1px;
    text-shadow: var(--shadow-blue);
    font-family: 'Montserrat', sans-serif;
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, var(--one-for-all-green), var(--one-for-all-teal), var(--one-for-all-blue));
    border: 4px solid var(--white-bg);
    top: 30px;
    border-radius: 50%;
    z-index: 1;
    box-shadow: var(--shadow-green);
}

.timeline-item:nth-child(odd)::after {
    right: -12px;
}

.timeline-item:nth-child(even)::after {
    left: -12px;
}

/* Kontak */
#contact {
    background: rgba(20, 20, 30, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 255, 136, 0.2);
    box-shadow: var(--shadow-green);
    position: relative;
}

.contact-container {
    display: flex;
    gap: 50px;
}

.contact-info {
    flex: 1;
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: var(--one-for-all-green);
    letter-spacing: 2px;
    font-weight: 700;
    text-shadow: var(--shadow-green);
    font-family: 'Montserrat', sans-serif;
}

.contact-detail {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.contact-icon {
    width: 55px;
    height: 55px;
    background: rgba(0, 255, 136, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    color: var(--one-for-all-green);
    font-size: 1.4rem;
    border: 2px solid rgba(0, 255, 136, 0.3);
    box-shadow: var(--shadow-green);
}

.contact-text h4 {
    margin-bottom: 8px;
    color: var(--light-text);
    letter-spacing: 1px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
}

.contact-text p {
    color: var(--gray-text);
    font-weight: 400;
    font-family: 'Montserrat', sans-serif;
}

.contact-form {
    flex: 1;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--light-text);
    letter-spacing: 1px;
    font-size: 0.9rem;
    font-family: 'Montserrat', sans-serif;
}

.form-control {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid rgba(0, 255, 136, 0.3);
    border-radius: 8px;
    font-size: 1rem;
    background: rgba(40, 40, 55, 0.8);
    color: var(--light-text);
    transition: all 0.3s;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
}

.form-control:focus {
    outline: none;
    border-color: var(--one-for-all-green);
    box-shadow: var(--shadow-green);
    background: rgba(50, 50, 65, 0.9);
}

textarea.form-control {
    min-height: 180px;
    resize: vertical;
}

/* Media Sosial */
#social {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.9) 0%, rgba(0, 206, 209, 0.9) 100%);
    color: var(--black-hair);
    text-align: center;
    padding: 70px 0;
    position: relative;
    border-top: 2px solid var(--one-for-all-blue);
    border-bottom: 2px solid var(--one-for-all-blue);
}

#social .section-title h2 {
    color: var(--black-hair);
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.7);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
}

.social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 130px;
    text-decoration: none;
    color: var(--black-hair);
    transition: all 0.3s;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.social-link:hover {
    transform: translateY(-10px);
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
}

.social-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    margin-bottom: 20px;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.3);
    border: 3px solid var(--one-for-all-blue);
}

.instagram .social-icon {
    background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D);
    border-color: #E1306C;
}

.tiktok .social-icon {
    background: linear-gradient(45deg, #69C9D0, #8A4FFF);
    border-color: #8A4FFF;
}

.x .social-icon {
    background: #000;
    border-color: var(--one-for-all-blue);
}

.x .social-icon svg {
    width: 36px;
    height: 36px;
    fill: var(--one-for-all-blue);
}

/* Footer */
footer {
    background: rgba(5, 5, 10, 0.95);
    color: var(--gray-text);
    text-align: center;
    padding: 30px 0;
    border-top: 1px solid rgba(0, 255, 136, 0.2);
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
}

/* Animasi Scroll */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in {
    animation: fadeIn 1s ease forwards;
}

/* Efek One For All */
.one-for-all-effect {
    position: relative;
    overflow: hidden;
}

.one-for-all-effect::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(0, 255, 136, 0.3),
        transparent
    );
    transform: rotate(30deg);
    transition: all 0.5s;
}

.one-for-all-effect:hover::before {
    transform: rotate(30deg) translate(20%, 20%);
}

/* Efek Bertarung - Garis Energi */
.fighting-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    opacity: 0.1;
}

.fighting-lines::before,
.fighting-lines::after {
    content: '';
    position: absolute;
    background: linear-gradient(90deg, transparent, var(--one-for-all-green), transparent);
    width: 100%;
    height: 2px;
    animation: fighting-line 3s infinite linear;
}

.fighting-lines::before {
    top: 20%;
    animation-delay: 0s;
}

.fighting-lines::after {
    top: 80%;
    animation-delay: 1.5s;
}

@keyframes fighting-line {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Responsive */
@media (max-width: 992px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-text p {
        margin: 0 auto 30px;
    }
    
    .btn-outline {
        margin-left: 0;
        margin-top: 15px;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .contact-container {
        flex-direction: column;
    }
    
    .timeline::after {
        left: 31px;
    }
    
    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }
    
    .timeline-item:nth-child(even) {
        left: 0;
    }
    
    .timeline-item::after {
        left: 21px;
    }
    
    .timeline-item:nth-child(even)::after {
        left: 21px;
    }
    
    .skill-item {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .skill-bar-container {
        margin-left: 0;
        width: 100%;
        margin-top: 15px;
    }
    
    .projects-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
    
    .hero-text h1 {
        font-size: 2.8rem;
    }
    
    .profile-img {
        width: 300px;
        height: 300px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        background: rgba(10, 10, 20, 0.95);
        width: 100%;
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        transition: 0.3s;
        box-shadow: 0 0 25px rgba(0, 255, 136, 0.4);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border-bottom: 2px solid var(--one-for-all-green);
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-links li {
        margin: 18px 0;
    }
    
    .hamburger {
        display: block;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    section {
        padding: 60px 0;
    }
    
    .section-title h2 {
        font-size: 2.2rem;
    }
}