@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&family=Rajdhani:wght@300;400;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Rajdhani', sans-serif;
    background: #0a0a0a;
    color: #39FF14;
    overflow-x: hidden;
    cursor: crosshair;
}

#canvas-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.scan-line {
    position: fixed;
    width: 100%;
    height: 2px;
    background: linear-gradient(to bottom, transparent, #39FF14, transparent);
    box-shadow: 0 0 20px #39FF14;
    animation: scan 4s linear infinite;
    z-index: 2;
    pointer-events: none;
}

@keyframes scan {
    0% {
        top: -2px;
    }

    100% {
        top: 100%;
    }
}

.glitch {
    position: relative;
    animation: glitch-text 3s infinite;
}

@keyframes glitch-text {

    0%,
    90%,
    100% {
        transform: translate(0);
    }

    92% {
        transform: translate(-2px, 2px);
    }

    94% {
        transform: translate(2px, -2px);
    }

    96% {
        transform: translate(-2px, -2px);
    }
}

header {
    text-align: center;
    padding: 100px 20px 50px;
    border-bottom: 2px solid #39FF14;
    box-shadow: 0 2px 20px rgba(57, 255, 20, 0.3);
    margin-bottom: 50px;
    background: rgba(10, 10, 10, 0.85);
    border: 1px solid #39FF14;
    position: relative;
}

header::before,
header::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 30px;
    border: 2px solid #00FFFF;
}

header::before {
    top: -2px;
    left: -2px;
    border-right: none;
    border-bottom: none;
}

header::after {
    bottom: -2px;
    right: -2px;
    border-left: none;
    border-top: none;
}

h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2rem, 8vw, 5rem);
    font-weight: 900;
    letter-spacing: 0.1em;
    text-shadow: 0 0 10px #39FF14, 0 0 1px #39FF14, 0 0 1px #39FF14;
    margin-bottom: 20px;
}

.subtitle {
    font-size: clamp(1rem, 3vw, 1.5rem);
    color: #00FFFF;
    text-shadow: 0 0 5px #00FFFF;
    letter-spacing: 0.2em;
}

.status {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    border: 1px solid #39FF14;
    animation: pulse-border 2s infinite;
}

@keyframes pulse-border {

    0%,
    100% {
        box-shadow: 0 0 5px #39FF14;
    }

    50% {
        box-shadow: 0 0 20px #39FF14, inset 0 0 10px rgba(57, 255, 20, 0.2);
    }
}

section {
    margin: 80px 0;
    padding: 40px;
    background: rgba(10, 10, 10, 0.85);
    border: 1px solid #39FF14;
    box-shadow: 0 0 20px rgba(57, 255, 20, 0.2);
    position: relative;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s, transform 0.8s;
}

section.visible {
    opacity: 1;
    transform: translateY(0);
}

section::before,
section::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 30px;
    border: 2px solid #00FFFF;
}

section::before {
    top: -2px;
    left: -2px;
    border-right: none;
    border-bottom: none;
}

section::after {
    bottom: -2px;
    right: -2px;
    border-left: none;
    border-top: none;
}

h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    margin-bottom: 30px;
    text-shadow: 0 0 10px #39FF14;
    letter-spacing: 0.1em;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 30px;
    align-items: center;
}

.profile-image {
    width: 205px;
    height: 200px;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    border: 3px solid #39FF14;
    box-shadow: 0 0 15px rgba(57, 255, 20, 0.5);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.skill-card {
    padding: 20px;
    border: 1px solid #39FF14;
    background: rgba(57, 255, 20, 0.05);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.skill-card:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(57, 255, 20, 0.5);
    background: rgba(57, 255, 20, 0.1);
}

.skill-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(57, 255, 20, 0.3), transparent);
    transition: left 0.5s;
}

.skill-card:hover::before {
    left: 100%;
}

.skill-name {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #00FFFF;
}

.skill-bar {
    width: 100%;
    height: 4px;
    background: rgba(57, 255, 20, 0.2);
    position: relative;
    overflow: hidden;
}

.skill-progress {
    height: 100%;
    background: linear-gradient(90deg, #39FF14, #00FFFF);
    box-shadow: 0 0 10px #39FF14;
    animation: fill-bar 2s ease-out;
}

@keyframes fill-bar {
    from {
        width: 0;
    }
}

.experience-item {
    padding: 30px;
    border-left: 3px solid #39FF14;
    margin: 30px 0;
    position: relative;
    padding-left: 40px;
}

.experience-item::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 35px;
    width: 13px;
    height: 13px;
    background: #39FF14;
    border: 2px solid #0a0a0a;
    border-radius: 50%;
    box-shadow: 0 0 15px #39FF14;
}

.experience-title {
    font-size: 1.5rem;
    color: #00FFFF;
    margin-bottom: 10px;
}

.experience-company {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.experience-date {
    color: #39FF14;
    opacity: 0.7;
    margin-bottom: 15px;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.contact-btn {
    padding: 20px;
    border: 2px solid #39FF14;
    background: transparent;
    color: #39FF14;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
}

.contact-btn:hover {
    color: #0a0a0a;
    box-shadow: 0 0 15px #39FF14;
}

.contact-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #39FF14;
    transition: left 0.3s;
    z-index: -1;
}

.contact-btn:hover::before {
    left: 0;
}

footer {
    text-align: center;
    padding: 40px;
    border-top: 1px solid #39FF14;
    margin-top: 100px;
    color: rgba(57, 255, 20, 0.7);
}

.warning {
    display: inline-block;
    padding: 10px 20px;
    border: 2px solid #ff3300;
    color: #ff3300;
    animation: blink 1s infinite;
    margin: 20px 0;
}

@keyframes blink {

    0%,
    49% {
        opacity: 1;
    }

    50%,
    100% {
        opacity: 0.3;
    }
}

@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .profile-image {
        margin: 0 auto;
    }

    section {
        padding: 20px;
        margin: 40px 0;
    }

    header {
        padding: 60px 20px 30px;
    }
}