:root {
    --bg-main: #020617; /* Espace profond */
    --bg-card: rgba(15, 23, 42, 0.7);
    --border-color: rgba(56, 189, 248, 0.15); /* Bordure cyan */
    --accent-primary: #8b5cf6; /* Violet quantique */
    --accent-secondary: #0ea5e9; /* Cyan étoile */
    --accent-tertiary: #f472b6; /* Rose / énergie */
    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

body.supernova-theme {
    --accent-primary: #f97316; /* Orange solaire */
    --accent-secondary: #eab308; /* Jaune cosmique */
    --accent-tertiary: #ef4444; /* Rouge supernova */
    --border-color: rgba(249, 115, 22, 0.2);
}

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

body {
    background-color: var(--bg-main);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Canvas Quantique / Constellation */
#quantum-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -2;
}

/* Nébuleuses (Glows) dynamiques */
.background-effects {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.glow {
    position: absolute;
    width: 60vw;
    height: 60vw;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.15;
    animation: float 25s infinite alternate ease-in-out;
}

.glow-1 {
    top: -10%;
    right: -10%;
    background: radial-gradient(circle, var(--accent-primary) 0%, transparent 60%);
}

.glow-2 {
    bottom: -20%;
    left: -10%;
    background: radial-gradient(circle, var(--accent-secondary) 0%, transparent 60%);
    animation-delay: -12s;
}

.glow-3 {
    top: 40%;
    left: 30%;
    width: 40vw;
    height: 40vw;
    background: radial-gradient(circle, var(--accent-tertiary) 0%, transparent 60%);
    opacity: 0.08;
    animation-delay: -5s;
}

@keyframes float {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(-50px, 50px) scale(1.1); }
}

/* Layout */
.container {
    max-width: 1200px;
    margin: 6rem auto 2rem;
    padding: 2rem;
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 3rem;
}

@media (max-width: 900px) {
    .container {
        grid-template-columns: 1fr;
    }
}

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--text-primary);
}

/* Sidebar */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.profile-container {
    text-align: center;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

/* Black Hole Event Horizon Effect */
.black-hole-wrapper {
    position: relative;
    width: 220px;
    height: 220px;
    margin: 0 auto 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: pulse-bh 4s ease-in-out infinite alternate;
}

@keyframes pulse-bh {
    0% { filter: drop-shadow(0 0 15px rgba(255, 100, 0, 0.3)); transform: scale(1); }
    100% { filter: drop-shadow(0 0 25px rgba(255, 100, 0, 0.5)); transform: scale(1.02); }
}

.profile-pic {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    position: relative;
    z-index: 10;
    box-shadow: 
        0 0 0 2px rgba(255, 230, 180, 0.9), /* Photon ring */
        0 0 15px 5px rgba(255, 120, 0, 0.9),
        0 0 30px 15px rgba(255, 50, 0, 0.7);
    transition: transform 0.4s ease;
}

.black-hole-wrapper:hover .profile-pic {
    transform: scale(1.05);
}

.bh-disk-back, .bh-disk-front {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 320px;
    height: 90px;
    border-radius: 50%;
    background: radial-gradient(circle, transparent 38%, rgba(255, 220, 150, 0.9) 42%, rgba(255, 100, 0, 0.8) 48%, rgba(200, 30, 0, 0.4) 65%, transparent 80%);
    box-shadow: 0 0 40px 10px rgba(255, 80, 0, 0.4);
}

.bh-disk-back {
    transform: translate(-50%, -50%) rotate(-15deg);
    z-index: 5;
    clip-path: polygon(0 0, 100% 0, 100% 50%, 0 50%);
}

.bh-disk-front {
    transform: translate(-50%, -50%) rotate(-15deg);
    z-index: 15;
    clip-path: polygon(0 50%, 100% 50%, 100% 100%, 0 100%);
    -webkit-mask-image: linear-gradient(to right, rgba(0,0,0,1) 0%, rgba(0,0,0,0.6) 100%);
    mask-image: linear-gradient(to right, rgba(0,0,0,1) 0%, rgba(0,0,0,0.6) 100%);
}

.bh-lens {
    position: absolute;
    width: 144px;
    height: 144px;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 12;
    box-shadow: 
        0 -35px 25px -15px rgba(255, 200, 100, 0.8),
        0 35px 25px -15px rgba(255, 120, 0, 0.7),
        0 -60px 45px -20px rgba(255, 60, 0, 0.5),
        0 60px 45px -20px rgba(200, 30, 0, 0.4);
    pointer-events: none;
    mix-blend-mode: screen;
}

.name {
    font-size: 2.5rem;
    line-height: 1.1;
    margin-bottom: 0.5rem;
    background: linear-gradient(to right, #fff, var(--accent-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.name span {
    font-weight: 400;
}

.title {
    font-size: 1.25rem;
    color: var(--accent-primary);
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-shadow: 0 0 10px rgba(139, 92, 246, 0.5);
}

.sidebar-section h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.sidebar-section h3::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, var(--border-color), transparent);
}

.contact-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    color: var(--text-secondary);
}

.contact-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-list i {
    color: var(--accent-secondary);
    width: 20px;
    text-align: center;
}

.contact-list a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-list a:hover {
    color: var(--accent-secondary);
    text-shadow: 0 0 8px rgba(14, 165, 233, 0.4);
    text-decoration: underline;
}

.skills-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.skill-tag {
    background: rgba(14, 165, 233, 0.05);
    border: 1px solid rgba(14, 165, 233, 0.2);
    color: #e0f2fe;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    cursor: default;
}

.skill-tag:hover {
    background: rgba(139, 92, 246, 0.15);
    border-color: rgba(139, 92, 246, 0.4);
    box-shadow: 0 0 15px rgba(139, 92, 246, 0.3);
    transform: translateY(-2px);
}

.languages-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.languages-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.languages-list .level {
    color: var(--accent-secondary);
    font-size: 0.9rem;
}

.hobbies-list {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Main Content */
.main-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.section-title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
    text-shadow: 0 0 15px rgba(14, 165, 233, 0.3);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-secondary), var(--accent-primary));
    border-radius: 2px;
    box-shadow: 0 0 10px var(--accent-secondary);
}

/* Glassmorphism Cards */
.glass-card {
    background: var(--bg-card);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
}

.glass-card:hover {
    border-color: rgba(14, 165, 233, 0.4);
    box-shadow: 0 0 25px rgba(14, 165, 233, 0.15), inset 0 0 15px rgba(139, 92, 246, 0.1);
    transform: translateY(-2px);
}

.glass-card p {
    color: var(--text-secondary);
    font-size: 1.05rem;
}

/* Timeline */
.experience-timeline {
    position: relative;
    padding-left: 1.5rem;
}

.experience-timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 2px;
    background: linear-gradient(to bottom, rgba(14, 165, 233, 0.5), transparent);
}

.timeline-item {
    position: relative;
    margin-bottom: 2rem;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-dot {
    position: absolute;
    left: -1.5rem;
    top: 1.5rem;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--bg-main);
    border: 2px solid var(--accent-secondary);
    transform: translateX(-50%);
    box-shadow: 0 0 12px var(--accent-secondary);
    z-index: 1;
    transition: all 0.3s ease;
}

.timeline-item:hover .timeline-dot {
    background: var(--accent-secondary);
    box-shadow: 0 0 20px var(--accent-secondary);
}

.timeline-content {
    padding: 1.5rem;
}

.job-title {
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 0.2rem;
}

.company {
    font-size: 1rem;
    color: var(--accent-primary);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.date {
    display: inline-block;
    font-size: 0.85rem;
    color: var(--text-secondary);
    background: rgba(14, 165, 233, 0.1);
    border: 1px solid rgba(14, 165, 233, 0.2);
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    margin-bottom: 1rem;
}

.task-list {
    list-style: none;
    color: var(--text-secondary);
}

.task-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
}

.task-list li::before {
    content: '▹';
    position: absolute;
    left: 0;
    color: var(--accent-secondary);
}

.task-list strong {
    color: #e0f2fe;
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Floating Action Button (FAB) for printing */
.print-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.4);
    z-index: 100;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(8px);
}

.print-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(14, 165, 233, 0.6);
    background: linear-gradient(135deg, var(--accent-secondary) 0%, var(--accent-primary) 100%);
}

.print-btn:active {
    transform: translateY(-1px) scale(0.98);
}

/* Header & Navigation Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4.5rem;
    background: rgba(2, 6, 23, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 4rem;
    z-index: 1000;
    transition: border-color 0.4s ease;
}

.header .logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.header .logo i {
    color: var(--accent-secondary);
    animation: rotate-atom 10s linear infinite;
}

@keyframes rotate-atom {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-secondary);
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.2rem 0;
}

.nav-link:hover, .nav-link.active {
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-secondary), var(--accent-primary));
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.theme-toggle {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: var(--accent-secondary);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.theme-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(30deg) scale(1.1);
    box-shadow: 0 0 15px var(--accent-secondary);
    color: #fff;
}

/* Hero Section Styles */
.hero-section {
    position: relative;
    padding: 4rem 2rem;
    margin-bottom: 2rem;
    overflow: hidden;
    text-align: left;
}

.hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.15) 0%, transparent 70%);
    z-index: -1;
    pointer-events: none;
}

.hero-title {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    background: linear-gradient(to right, #fff 40%, var(--accent-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--accent-primary);
    margin-bottom: 1.5rem;
    text-shadow: 0 0 10px rgba(139, 92, 246, 0.3);
}

.hero-desc {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 650px;
}

.hero-ctas {
    display: flex;
    gap: 1.5rem;
}

/* Button styles */
.btn {
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(14, 165, 233, 0.5);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 0 15px var(--border-color);
}

/* main about card margin reset */
.about-card p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.7;
}

/* Skills Main Grid (In the main content flow) */
.skills-main-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.category-title {
    font-size: 1.15rem;
    color: #fff;
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.category-title i {
    color: var(--accent-secondary);
}

.skills-progress-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.skill-progress-item {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.skill-name {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
}

.progress-bar-wrapper {
    height: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
    border-radius: 10px;
    box-shadow: 0 0 10px var(--accent-secondary);
    transition: width 1s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Portfolio / Creations Grid Styles */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.project-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    padding: 0;
    transition: all 0.4s ease;
}

.project-card:hover {
    border-color: rgba(14, 165, 233, 0.5);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(14, 165, 233, 0.15);
}

.project-img-wrapper {
    height: 150px;
    background: radial-gradient(circle at center, rgba(14, 165, 233, 0.08) 0%, rgba(2, 6, 23, 0.5) 100%);
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.project-img-wrapper::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(2, 6, 23, 0.3));
}

.project-placeholder-icon {
    font-size: 3rem;
    color: var(--accent-secondary);
    opacity: 0.8;
    filter: drop-shadow(0 0 10px var(--accent-secondary));
    transition: all 0.3s ease;
}

.project-card:hover .project-placeholder-icon {
    transform: scale(1.1) rotate(5deg);
    opacity: 1;
}

.project-info {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.project-name {
    font-size: 1.25rem;
    color: #fff;
    margin-bottom: 0.5rem;
}

.project-description {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 1.2rem;
    flex-grow: 1;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-bottom: 1.2rem;
}

.proj-tag {
    font-size: 0.8rem;
    background: rgba(14, 165, 233, 0.05);
    border: 1px solid rgba(14, 165, 233, 0.15);
    color: var(--accent-secondary);
    padding: 0.15rem 0.5rem;
    border-radius: 4px;
}

.project-link {
    text-decoration: none;
    color: var(--accent-primary);
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.project-link i {
    transition: transform 0.3s ease;
}

.project-link:hover {
    color: var(--accent-secondary);
    text-shadow: 0 0 10px rgba(14, 165, 233, 0.3);
}

.project-link:hover i {
    transform: translateX(5px);
}

/* Contact Footer Section */
.footer-card {
    margin-top: 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-contact-info p {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--text-secondary);
    font-size: 1rem;
}

.footer-contact-info i {
    color: var(--accent-secondary);
    width: 20px;
    text-align: center;
}

.footer-contact-info a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-contact-info a:hover {
    color: var(--accent-secondary);
    text-decoration: underline;
}

.footer-socials {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-socials h3 {
    font-size: 1.1rem;
    color: #fff;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.25rem;
    text-decoration: none;
    transition: all 0.4s ease;
}

.social-icon:hover {
    color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px var(--accent-primary);
    border-color: var(--accent-primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Responsiveness for Header & Footer */
@media (max-width: 900px) {
    .header {
        padding: 0 2rem;
    }
    .nav-menu {
        display: none; /* simple hidden navigation on tablet/mobile for CV context */
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Print styles */
@media print {
    :root {
        --bg-main: #ffffff;
        --text-primary: #0f172a;
        --text-secondary: #475569;
        --accent-primary: #6d28d9;
        --accent-secondary: #0369a1;
        --border-color: #cbd5e1;
    }

    body {
        background-color: #ffffff !important;
        color: #0f172a !important;
        font-size: 10pt;
        line-height: 1.4;
    }

    #quantum-canvas,
    .background-effects,
    .print-btn,
    .header,
    .theme-toggle,
    .hero-glow,
    .hero-ctas,
    .project-img-wrapper,
    .project-link,
    .black-hole-wrapper .bh-disk-back,
    .black-hole-wrapper .bh-disk-front,
    .black-hole-wrapper .bh-lens {
        display: none !important;
    }

    .container {
        max-width: 100%;
        margin: 0 !important;
        padding: 0;
        display: grid;
        grid-template-columns: 220px 1fr;
        gap: 1.5rem;
    }

    .sidebar {
        border-right: 1px solid #cbd5e1;
        padding-right: 1rem;
    }

    .profile-container {
        padding-bottom: 0.5rem;
        border-bottom: 1px solid #cbd5e1;
    }

    .black-hole-wrapper {
        width: 100px;
        height: 100px;
        animation: none !important;
        filter: none !important;
        margin: 0 auto 0.5rem;
    }

    .profile-pic {
        width: 90px;
        height: 90px;
        box-shadow: none !important;
        border: 2px solid #6d28d9;
    }

    .name {
        font-size: 1.5rem;
        background: none;
        -webkit-text-fill-color: initial;
        color: #0f172a;
    }

    .name span {
        color: #0f172a;
    }

    .title {
        font-size: 0.9rem;
        color: #6d28d9;
        text-shadow: none !important;
    }

    .sidebar-section h3 {
        font-size: 1rem;
        color: #0f172a;
        border-bottom: 1px solid #cbd5e1;
        padding-bottom: 0.1rem;
    }

    .sidebar-section h3::after {
        display: none;
    }

    .contact-list {
        gap: 0.3rem;
        color: #475569;
    }

    .contact-list a {
        color: #475569;
    }

    .skill-tag {
        background: #f1f5f9 !important;
        border: 1px solid #cbd5e1 !important;
        color: #0f172a !important;
        padding: 0.1rem 0.4rem;
        font-size: 0.75rem;
    }

    .languages-list li {
        background: #f8fafc;
        border: 1px solid #e2e8f0;
        padding: 0.2rem 0.5rem;
    }

    .main-content {
        gap: 1rem;
    }

    .hero-section {
        padding: 1rem 0;
        margin-bottom: 0.5rem;
    }

    .hero-title {
        font-size: 1.8rem;
        background: none;
        -webkit-text-fill-color: initial;
        color: #0f172a;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }

    .hero-desc {
        font-size: 0.95rem;
        margin-bottom: 0;
    }

    .section-title {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
        text-shadow: none !important;
        color: #0f172a;
    }

    .section-title::after {
        bottom: -2px;
        height: 1.5px;
        box-shadow: none;
    }

    .glass-card {
        background: #ffffff !important;
        border: 1px solid #cbd5e1 !important;
        padding: 0.8rem !important;
        box-shadow: none !important;
        transform: none !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
    }

    .glass-card p {
        color: #475569;
        font-size: 0.9rem;
    }

    .skills-main-grid {
        gap: 1rem;
    }

    .skills-progress-list {
        gap: 0.5rem;
    }

    .progress-bar-wrapper {
        background: #f1f5f9;
        border: 1px solid #cbd5e1;
    }

    .progress-bar {
        background: #cbd5e1 !important;
        box-shadow: none !important;
    }

    .projects-grid {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }

    .project-card {
        border: 1px solid #cbd5e1 !important;
        box-shadow: none !important;
    }

    .project-info {
        padding: 0.8rem;
    }

    .project-name {
        font-size: 1.1rem;
        color: #0f172a;
    }

    .project-description {
        font-size: 0.85rem;
        margin-bottom: 0.5rem;
    }

    .project-tags {
        margin-bottom: 0;
    }

    .proj-tag {
        font-size: 0.75rem;
        background: #f1f5f9 !important;
        border: 1px solid #cbd5e1 !important;
        color: #475569 !important;
    }

    .experience-timeline::before {
        background: #cbd5e1;
    }

    .timeline-item {
        margin-bottom: 0.8rem;
    }

    .timeline-dot {
        border-color: #0369a1;
        background: #ffffff;
        box-shadow: none !important;
    }

    .job-title {
        font-size: 1.1rem;
        color: #0f172a;
    }

    .company {
        color: #6d28d9;
        font-size: 0.9rem;
    }

    .date {
        background: #f1f5f9;
        border: 1px solid #e2e8f0;
        color: #475569;
        padding: 0.05rem 0.3rem;
        margin-bottom: 0.3rem;
    }

    .task-list {
        color: #475569;
    }

    .task-list li::before {
        color: #0369a1;
    }

    .task-list strong {
        color: #0f172a;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding-bottom: 0.8rem;
    }

    .footer-socials {
        display: none;
    }

    .reveal {
        opacity: 1 !important;
        transform: none !important;
    }
}
