* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: none !important;
}

body {
    font-family: 'Courier New', monospace;
    line-height: 1.6;
    color: #fff;
    background: #000 url('background.png') center/cover fixed;
    overflow-x: hidden;
    cursor: none !important;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    z-index: 0;
}

a, button, .section-header {
    cursor: none !important;
}

.cursor {
    width: 20px;
    height: 20px;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: all 0.05s ease-out;
}

.cursor::before,
.cursor::after {
    content: '';
    position: absolute;
    background: #fff;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.cursor::before {
    width: 1px;
    height: 10px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.cursor::after {
    width: 10px;
    height: 1px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.cursor-follower {
    display: none;
}

#snow {
    display: none;
}

header {
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #333;
    position: sticky;
    top: 0;
    z-index: 100;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    padding: 1.5rem;
}

nav ul li {
    margin: 0 2rem;
}

nav ul li a {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s;
    position: relative;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: #fff;
    transition: width 0.3s;
}

nav ul li a:hover::after {
    width: 100%;
}

#hero {
    background: transparent;
    color: white;
    padding: 6rem 2rem;
    text-align: left;
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 98%;
    margin: 0;
    width: 100%;
    padding: 0 1rem;
}

.editor-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    transition: grid-template-columns 0.5s ease;
}

.editor-container.split {
    grid-template-columns: 1fr 1fr;
}

@media (max-width: 1024px) {
    .editor-container {
        grid-template-columns: 1fr;
    }
    
    .editor-container.split {
        grid-template-columns: 1fr;
    }
}

.vscode-window {
    background: #1e1e1e;
    border: 1px solid #333;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.5s ease-in, transform 0.5s ease-in;
    display: none;
    width: 100%;
}

.vscode-window.visible {
    opacity: 1;
    transform: translateX(0);
    display: block;
}

.vscode-header {
    background: #252526;
    border-bottom: 1px solid #333;
    display: flex;
    align-items: center;
    padding-left: 0.8rem;
}

.vscode-tabs {
    display: flex;
    gap: 2px;
    flex: 1;
}

.vscode-tab {
    padding: 0.8rem 1.5rem;
    background: #2d2d30;
    color: #969696;
    cursor: pointer;
    font-size: 0.85rem;
    transition: all 0.3s;
    border-right: 1px solid #1e1e1e;
}

.vscode-tab.active {
    background: #1e1e1e;
    color: #fff;
}

.vscode-tab:hover {
    background: #1e1e1e;
}

.vscode-body {
    padding: 1rem;
    font-family: 'Courier New', monospace;
    font-size: 0.85rem;
    min-height: 400px;
    max-height: 500px;
    overflow-y: auto;
    display: flex;
    gap: 1rem;
    background: #1e1e1e;
}

.vscode-body::-webkit-scrollbar {
    width: 10px;
}

.vscode-body::-webkit-scrollbar-track {
    background: #1e1e1e;
}

.vscode-body::-webkit-scrollbar-thumb {
    background: #424242;
    border-radius: 4px;
}

.line-numbers {
    color: #858585;
    text-align: right;
    user-select: none;
    padding-right: 1rem;
    border-right: 1px solid #333;
}

.code-content {
    flex: 1;
    color: #d4d4d4;
}

.code-line {
    white-space: pre;
    line-height: 1.6;
}

.terminal-window {
    background: rgba(10, 10, 10, 0.7);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    transition: all 0.5s ease;
    margin: 0;
    max-width: 1200px;
}

.terminal-window.shifted {
    margin: 0;
    max-width: none;
    width: 100%;
}

.terminal-title {
    color: #888;
    font-size: 0.85rem;
    margin-left: auto;
    padding-right: 1rem;
}

.terminal-header {
    background: rgba(26, 26, 26, 0.8);
    padding: 0.8rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.terminal-button {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-right: 6px;
}

.terminal-button.red {
    background: #ff5f56;
}

.terminal-button.yellow {
    background: #ffbd2e;
}

.terminal-button.green {
    background: #27c93f;
}

.terminal-body {
    padding: 1.5rem;
    font-family: 'Courier New', monospace;
    font-size: 0.85rem;
    min-height: 400px;
    max-height: 500px;
    overflow-y: auto;
    scroll-behavior: auto;
    background: transparent;
}

.neofetch {
    display: flex;
    gap: 2rem;
    margin: 1rem 0;
    align-items: flex-start;
}

.ascii-art {
    color: #00ff00;
    font-size: 0.6rem;
    line-height: 1.2;
    margin: 0;
    font-family: monospace;
}

.ascii-art-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.ascii-image {
    max-width: 250px;
    height: auto;
    image-rendering: pixelated;
    filter: brightness(1.1);
}

.system-info {
    flex: 1;
}

.system-info p {
    margin: 0.4rem 0;
    color: #fff;
    font-family: 'Courier New', monospace;
    display: flex;
    gap: 0.5rem;
}

.info-label {
    color: #00ff00;
    font-weight: bold;
    text-align: right;
    min-width: 90px;
}

.info-label::after {
    content: ':';
    margin-left: 0.2rem;
}

.system-info a {
    color: #00a8ff;
    text-decoration: none;
}

.system-info a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .neofetch {
        flex-direction: column;
        gap: 1rem;
    }
    
    .ascii-image {
        max-width: 200px;
    }
}

.terminal-body::-webkit-scrollbar {
    width: 8px;
}

.terminal-body::-webkit-scrollbar-track {
    background: #0a0a0a;
}

.terminal-body::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 4px;
}

.terminal-body::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.terminal-line {
    margin-bottom: 0.5rem;
}

.prompt {
    color: #00ff00;
}

.terminal-output {
    color: #fff;
    margin-left: 1rem;
    margin-bottom: 1rem;
}

.cursor-blink {
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.terminal-text {
    font-family: 'Courier New', monospace;
    line-height: 1.8;
}

.neofetch-output {
    display: flex;
    gap: 2rem;
    margin: 1rem 0;
    align-items: flex-start;
}

.ascii-art {
    color: #00ff00;
    font-size: 0.7rem;
    line-height: 1.2;
    margin: 0;
}

.neofetch-info {
    flex: 1;
}

.neofetch-info p {
    margin: 0.3rem 0;
    font-size: 0.9rem;
}

.info-label {
    color: #00ff00;
    font-weight: bold;
}

.neofetch-info a {
    color: #4a9eff;
    text-decoration: none;
}

.neofetch-info a:hover {
    text-decoration: underline;
}

.about-separator {
    margin: 0.8rem 0 0.5rem 0 !important;
    color: #333;
}

.about-text {
    color: #aaa;
    font-size: 0.85rem !important;
    line-height: 1.6;
    margin-top: 0.5rem !important;
    max-width: 600px;
    word-wrap: break-word;
}

.code-block {
    background: #0a0a0a;
    border: 1px solid #333;
    padding: 1.5rem;
    font-family: 'Courier New', monospace;
    line-height: 1.8;
    color: #ccc;
}

.code-block a {
    color: #4a9eff;
    text-decoration: none;
}

.code-block a:hover {
    text-decoration: underline;
}

section {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 2rem;
    position: relative;
    z-index: 2;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    margin-bottom: 2rem;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
    transition: all 0.3s;
}

.section-header:hover {
    opacity: 0.7;
}

.toggle-icon {
    font-family: 'Courier New', monospace;
    font-size: 1.5rem;
    color: #fff;
    filter: none !important;
    text-shadow: none !important;
    -webkit-filter: none !important;
    -webkit-text-stroke: 0 !important;
}

.section-content {
    max-height: 2000px;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.4s ease;
    opacity: 1;
}

.section-content.collapsed {
    max-height: 0;
    opacity: 0;
}

h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #fff;
    letter-spacing: 2px;
    position: relative;
    font-family: 'Courier New', monospace;
    filter: none !important;
    text-shadow: none !important;
}

.code-block {
    background: #1a1a1a;
    border-left: 3px solid #333;
    padding: 1rem 1.5rem;
    font-family: 'Courier New', monospace;
    color: #ccc;
    line-height: 1.8;
    margin-top: 1rem;
}

.code-block a {
    color: #00a8ff;
    text-decoration: none;
    transition: all 0.3s;
}

.code-block a:hover {
    text-decoration: underline;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.contact-link {
    background: transparent;
    border: none;
    border-bottom: 1px solid #333;
    padding: 1rem 0.5rem;
    text-decoration: none;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s;
    font-family: 'Courier New', monospace;
}

.contact-link:hover {
    border-bottom-color: #fff;
    padding-left: 1rem;
}

.contact-link .icon {
    font-size: 1.2rem;
}

.contact-link i {
    font-size: 1.2rem;
}

.fa-discord {
    color: #5865F2;
}

.fa-github {
    color: #fff;
}

.languages-output {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin: 1rem 0 1.5rem 0;
}

.skills-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 2rem;
}

.skill-badge {
    background: #0a0a0a;
    border: 1px solid #333;
    padding: 0.6rem 1.2rem;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    transition: all 0.3s;
    border-radius: 20px;
}

.skill-badge:hover {
    border-color: #fff;
    transform: translateY(-2px);
}

.skill-icon {
    font-size: 1.2rem;
}

.fa-python {
    color: #3776ab;
}

.fa-js {
    color: #f7df1e;
}

.fa-java {
    color: #007396;
}

.skill-badge:nth-child(4) .fa-code {
    color: #00599c;
}

.skill-badge:nth-child(5) .fa-code {
    color: #239120;
}

.skill-badge:nth-child(6) .fa-code {
    color: #ce422b;
}

.fa-moon {
    color: #000080;
}

.fa-golang {
    color: #00add8;
}

.skill-name {
    font-size: 0.95rem;
    font-weight: 500;
}

.skill-level {
    font-size: 0.75rem;
    color: #666;
    text-transform: capitalize;
    margin-left: 0.3rem;
}

.timeline {
    display: none;
}

.timeline-item {
    display: none;
}

.timeline-item:hover {
    display: none;
}

.timeline-item::before {
    display: none;
}

.timeline-item h3 {
    display: none;
}

.company {
    display: none;
}

#contact {
    text-align: left;
}

#contact p {
    display: none;
}

#contact a {
    color: #fff;
    text-decoration: none;
    transition: all 0.3s;
}

.social-links {
    display: none;
}

.social-links a {
    display: none;
}

footer {
    background: #000;
    color: #666;
    text-align: center;
    padding: 2rem;
    border-top: 1px solid #333;
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
        align-items: center;
    }
    
    nav ul li {
        margin: 0.5rem 0;
    }
    
    .glitch {
        font-size: 2.5rem;
    }
    
    .social-links a {
        display: block;
        margin: 1rem auto;
        max-width: 200px;
    }
}
