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

body {
    font-family: Consolas, monospace;
    background: black;
    color: #00ff9c;
    overflow-x: hidden;
}

/* Matrix background */
#matrix {
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
}

/* Cursor glow */
.cursor-glow {
    position: fixed;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(0,255,156,0.2), transparent 70%);
    pointer-events: none;
    transform: translate(-50%, -50%);
}

/* Header */
header {
    text-align: center;
    padding: 60px 20px;
}

.glow {
    font-size: 3rem;
    text-shadow: 0 0 15px #00ff9c;
}

.typing {
    color: #8b949e;
    margin-top: 10px;
}

/* Cards */
.card {
    background: rgba(0,0,0,0.7);
    border: 1px solid #00ff9c;
    margin: 20px auto;
    padding: 20px;
    width: 90%;
    max-width: 700px;
    border-radius: 10px;
    transition: 0.3s;
}

.card:hover {
    box-shadow: 0 0 20px #00ff9c;
    transform: scale(1.02);
}

/* Skills */
.skill {
    margin: 10px 0;
}

.bar {
    background: #111;
    height: 8px;
    border-radius: 5px;
}

.bar div {
    background: #00ff9c;
    height: 100%;
    border-radius: 5px;
}

/* Projects */
.projects {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.project {
    border: 1px solid #00ff9c;
    padding: 10px;
    flex: 1;
    min-width: 150px;
}

/* Links */
.links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.links a {
    background: #00ff9c;
    color: black;
    padding: 8px 12px;
    text-decoration: none;
    border-radius: 5px;
}

footer {
    text-align: center;
    padding: 20px;
    color: #8b949e;
}
