/* Hacker Glitched Vibe Styles */

body {
    font-family: 'Courier New', monospace;
    background: linear-gradient(135deg, #000 0%, #111 50%, #000 100%);
    color: #00ff00;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.header {
    text-align: center;
    margin-bottom: 50px;
}

.glitch {
    font-size: 4em;
    position: relative;
    animation: glitch 2s infinite;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch::before {
    animation: glitch-1 0.5s infinite;
    color: #ff0000;
    z-index: -1;
}

.glitch::after {
    animation: glitch-2 0.5s infinite;
    color: #0000ff;
    z-index: -2;
}

@keyframes glitch {
    0%, 100% { transform: translate(0); }
    20% { transform: translate(-2px, 2px); }
    40% { transform: translate(-2px, -2px); }
    60% { transform: translate(2px, 2px); }
    80% { transform: translate(2px, -2px); }
}

@keyframes glitch-1 {
    0%, 100% { transform: translate(0); }
    10% { transform: translate(-2px, -2px); }
    20% { transform: translate(-2px, 2px); }
    30% { transform: translate(2px, -2px); }
    40% { transform: translate(2px, 2px); }
}

@keyframes glitch-2 {
    0%, 100% { transform: translate(0); }
    15% { transform: translate(2px, 2px); }
    25% { transform: translate(2px, -2px); }
    35% { transform: translate(-2px, 2px); }
    45% { transform: translate(-2px, -2px); }
}

.profile-pic {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 3px solid #00ff00;
    margin-bottom: 20px;
    animation: fadeIn 3s ease-in;
}

.subtitle {
    font-size: 1.5em;
    margin-top: 10px;
    animation: fadeIn 3s ease-in;
}

.details {
    font-size: 1.2em;
    margin-top: 5px;
    animation: fadeIn 3s ease-in;
    color: #00ff00;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

section {
    margin-bottom: 50px;
    border: 1px solid #00ff00;
    padding: 20px;
    background: rgba(0, 255, 0, 0.1);
    box-shadow: 0 0 10px #00ff00;
}

h2 {
    color: #00ff00;
    text-align: center;
    margin-bottom: 20px;
    animation: slideIn 2s ease-out;
}

@keyframes slideIn {
    from { transform: translateX(-100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

.skill-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.skill {
    background: #333;
    color: #00ff00;
    padding: 10px 20px;
    margin: 10px;
    border: 1px solid #00ff00;
    animation: bounceIn 1s ease-out;
}

@keyframes bounceIn {
    0% { transform: scale(0.3); opacity: 0; }
    50% { transform: scale(1.05); }
    70% { transform: scale(0.9); }
    100% { transform: scale(1); opacity: 1; }
}

.social-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.social-link {
    color: #00ff00;
    text-decoration: none;
    padding: 10px 20px;
    margin: 10px;
    border: 1px solid #00ff00;
    transition: all 0.3s;
    animation: fadeInUp 2s ease-out;
}

.social-link:hover {
    background: #00ff00;
    color: #000;
    box-shadow: 0 0 20px #00ff00;
}

@keyframes fadeInUp {
    from { transform: translateY(30px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* Matrix Rain Effect */
.matrix-rain {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -3;
}

.matrix-rain canvas {
    display: block;
}
