:root {
    --neon-green: rgb(6, 235, 6);
    --dark-bg: #121212;
    --darker-bg: #0a0a0a;
    --card-bg: #1e1e1e;
    --text-light: #e0e0e0;
    --text-muted: #aaa;
    --border-color: #333;
}

/* ===== BASE STYLES ===== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

@font-face {
    font-family: 'Oswald';
    src: url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap');
}

body {
    font-family: 'Courier New', monospace;
    background: var(--dark-bg);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    display: flex;
    min-height: 100vh;
}

/* ===== SIDEBAR STYLES ===== */
.sidebar {
    width: 280px;
    background: var(--darker-bg);
    padding: 30px 20px;
    border-right: 1px solid rgba(6, 235, 6, 0.1);
    position: relative;
    z-index: 10;
    box-shadow: 3px 0 15px rgba(0, 0, 0, 0.3);
}

.header {
    font-family: "Oswald", sans-serif;
    font-weight: 700;
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: var(--neon-green);
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 25%;
    width: 50%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--neon-green), transparent);
}

.header span {
    display: inline-block;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

.header span:first-child:hover {
    transform: scale(1.1) rotate(-3deg);
    text-shadow: 0 0 10px rgba(6, 235, 6, 0.7);
}

/* Profile Section */
.profile-container {
    text-align: center;
    margin-bottom: 30px;
}

.profile-pic {
    width: 150px;
    height: 150px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--neon-green);
    box-shadow: 0 0 20px rgba(6, 235, 6, 0.3);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.profile-pic:hover {
    transform: rotate(5deg) scale(1.05);
    box-shadow: 0 0 30px rgba(6, 235, 6, 0.5);
}

.profile-pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(20%);
    transition: filter 0.5s ease;
}

.profile-pic:hover img {
    filter: grayscale(0%);
}

.tagline {
    color: var(--text-muted);
    font-family: "Oswald", sans-serif;
    margin: 10px 0 25px;
    font-size: 1.1rem;
    opacity: 0;
    animation: fadeIn 1s ease 0.3s forwards;
}

/* Skills Section */
.skills {
    margin: 40px 0;
}

.skills h4 {
    color: var(--neon-green);
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 10px;
    margin-bottom: 20px;
    font-family: "Oswald", sans-serif;
    font-size: 1.2rem;
    letter-spacing: 1px;
}

.skill-item {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    margin: 12px 0;
    border-radius: 6px;
    background: rgba(45, 45, 45, 0.7);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 3px solid transparent;
    opacity: 0;
    transform: translateX(-20px);
    animation: slideIn 0.5s ease forwards;
}

.skill-item:nth-child(1) { animation-delay: 0.4s; }
.skill-item:nth-child(2) { animation-delay: 0.6s; }
.skill-item:nth-child(3) { animation-delay: 0.8s; }

.skill-item:hover {
    background: #383838;
    transform: translateX(8px);
    border-left: 3px solid var(--neon-green);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.skill-item i {
    width: 25px;
    color: var(--neon-green);
    font-size: 1.3rem;
    margin-right: 15px;
    transition: transform 0.3s ease;
}

.skill-item:hover i {
    transform: scale(1.2);
    filter: drop-shadow(0 0 3px var(--neon-green));
}

/* Back Button */
.back-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    margin-top: 30px;
    background: rgba(6, 235, 6, 0.1);
    color: var(--neon-green);
    border: 1px solid var(--neon-green);
    border-radius: 6px;
    text-decoration: none;
    font-family: "Oswald", sans-serif;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    animation: fadeIn 1s ease 1s forwards;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.back-btn:hover {
    background: rgba(6, 235, 6, 0.2);
    box-shadow: 0 0 15px rgba(6, 235, 6, 0.3);
    transform: translateY(-3px);
    letter-spacing: 2px;
}

.back-btn i {
    margin-right: 10px;
    transition: transform 0.3s ease;
}

.back-btn:hover i {
    transform: translateX(-5px);
}

/* ===== MAIN CONTENT STYLES ===== */
main {
    flex: 1;
    padding: 40px;
    background: var(--dark-bg);
    position: relative;
    overflow-y: auto;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

/* About Sections */
.about-section {
    margin-bottom: 40px;
    background: var(--card-bg);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    border-left: 4px solid var(--neon-green);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
}

.about-section:nth-child(1) { animation-delay: 0.4s; }
.about-section:nth-child(2) { animation-delay: 0.6s; }
.about-section:nth-child(3) { animation-delay: 0.8s; }

.about-section h2 {
    color: var(--neon-green);
    font-family: "Oswald", sans-serif;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    letter-spacing: 1px;
}

.about-section h2 i {
    margin-right: 15px;
    font-size: 1.3rem;
    width: 30px;
    text-align: center;
}

.about-section p {
    margin-bottom: 20px;
    color: var(--text-light);
}

/* Timeline */
.timeline {
    margin: 30px 0;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--neon-green);
    box-shadow: 0 0 10px rgba(6, 235, 6, 0.3);
}

.timeline-item {
    display: flex;
    margin-bottom: 30px;
    position: relative;
    padding-left: 40px;
}

.timeline-year {
    background: var(--neon-green);
    color: #111;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: bold;
    font-family: "Oswald", sans-serif;
    position: absolute;
    left: 0;
    top: 0;
    box-shadow: 0 0 10px rgba(6, 235, 6, 0.5);
    font-size: 0.9rem;
    min-width: 60px;
    text-align: center;
}

.timeline-content {
    background: rgba(45, 45, 45, 0.7);
    padding: 15px 20px;
    border-radius: 6px;
    flex: 1;
    border-left: 3px solid var(--neon-green);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--text-light);
}

.timeline-item:hover .timeline-content {
    background: #383838;
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Philosophy List */
.philosophy-list {
    list-style: none;
    margin: 20px 0;
}

.philosophy-list li {
    padding: 12px 0;
    border-bottom: 1px dashed var(--border-color);
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.philosophy-list li:last-child {
    border-bottom: none;
}

.philosophy-list li:hover {
    transform: translateX(5px);
}

.philosophy-list i {
    color: var(--neon-green);
    margin-right: 15px;
    font-size: 0.9rem;
    width: 20px;
    text-align: center;
}

/* Focus Cards */
.focus-items {
    display: flex;
    gap: 20px;
    margin-top: 25px;
    flex-wrap: wrap;
}

.focus-card {
    flex: 1;
    min-width: 200px;
    background: #2a2a2a;
    padding: 25px;
    border-radius: 8px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--border-color);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
}

.focus-card:nth-child(1) { animation-delay: 0.5s; }
.focus-card:nth-child(2) { animation-delay: 0.7s; }
.focus-card:nth-child(3) { animation-delay: 0.9s; }

.focus-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--neon-green);
    box-shadow: 0 10px 25px rgba(6, 235, 6, 0.2);
}

.focus-card i {
    font-size: 2.5rem;
    color: var(--neon-green);
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.focus-card:hover i {
    transform: scale(1.2);
    filter: drop-shadow(0 0 8px rgba(6, 235, 6, 0.7));
}

.focus-card h3 {
    font-family: "Oswald", sans-serif;
    margin: 15px 0 10px;
    color: var(--neon-green);
    letter-spacing: 1px;
}

.focus-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .container {
        flex-direction: column;
    }
    
    .sidebar {
        width: 100%;
        padding: 25px;
    }
    
    main {
        padding: 30px 25px;
    }
    
    .focus-items {
        flex-direction: column;
    }
    
    .focus-card {
        min-width: 100%;
    }
}

@media (max-width: 768px) {
    .profile-pic {
        width: 120px;
        height: 120px;
    }
    
    .timeline-item {
        flex-direction: column;
    }
    
    .timeline-year {
        position: relative;
        margin-bottom: 15px;
        align-self: flex-start;
    }
    
    .timeline::before {
        display: none;
    }
    
    .about-section {
        padding: 20px;
    }
    
    .back-btn {
        padding: 10px 15px;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .header {
        font-size: 1.5rem;
    }
    
    .about-section h2 {
        font-size: 1.3rem;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .about-section h2 i {
        margin-bottom: 10px;
        margin-right: 0;
    }
    
    .skill-item {
        padding: 10px;
    }
}
.Back {
    color: #ddd;
    font-family: "Oswald", sans-serif;
    font-weight: 300;
    text-decoration: none;
    transition: all 0.3s ease;
    flex-grow: 1;
}

.Back:hover {
    color: rgb(166, 205, 67);
    letter-spacing: 0.5px;
}