:root {
    --bg-color: #05070a;
    --card-bg: rgba(255, 255, 255, 0.03);
    --accent-primary: #00ff88;
    /* Cendero Neon Green */
    --accent-secondary: #bc13fe;
    /* Electric Purple */
    --text-main: #f0f0f0;
    --text-muted: #a0a0a0;
    --nav-bg: rgba(5, 7, 10, 0.8);
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: 'Outfit', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

span.highlight {
    color: var(--accent-primary);
    position: relative;
    display: inline-block;
}

span.highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 10px;
    background: var(--accent-primary);
    opacity: 0.2;
    z-index: -1;
}

/* Custom Cursor */
.cursor {
    width: 10px;
    height: 10px;
    background: var(--accent-primary);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: difference;
    transition: transform 0.1s ease;
}

.cursor-follower {
    width: 30px;
    height: 30px;
    border: 2px solid var(--accent-secondary);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    background: var(--nav-bg);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    text-decoration: none;
    color: var(--text-main);
}

.logo span {
    color: var(--accent-primary);
}

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

.nav-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 600;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--accent-primary);
}

.nav-cendero {
    color: var(--accent-primary) !important;
    position: relative;
}

.nav-cendero::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-primary);
    transition: var(--transition);
}

.nav-cendero:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    cursor: pointer;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15vw 10vw 5vw 10vw;
    position: relative;
    gap: 4rem;
}

.hero-content {
    flex: 1;
}

.hero-tag {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-secondary);
    margin-bottom: 1rem;
}

.hero h1 {
    font-size: clamp(3rem, 8vw, 6rem);
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 2rem;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 500px;
    margin-bottom: 3rem;
}

.hero-description span {
    color: var(--text-main);
    font-weight: 600;
}

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

.btn {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary {
    background: var(--accent-primary);
    color: var(--bg-color);
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 255, 136, 0.3);
}

.btn-secondary {
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-main);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-5px);
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
}

.image-wrapper {
    position: relative;
    width: 400px;
    height: 500px;
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
    filter: grayscale(20%);
    transition: var(--transition);
    z-index: 2;
    position: relative;
}

.image-wrapper:hover img {
    filter: grayscale(0%);
    transform: scale(1.02);
}

.blob {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    z-index: 1;
    border-radius: 30px;
    filter: blur(40px);
    opacity: 0.2;
}

/* About Section */
.about {
    padding: 10rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
}

.title-underline {
    width: 60px;
    height: 4px;
    background: var(--accent-primary);
    margin: 1rem auto;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 5rem;
}

.about-card {
    background: var(--card-bg);
    padding: 3rem;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.about-card:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-10px);
    border-color: var(--accent-primary);
}

.card-icon {
    width: 40px;
    height: 40px;
    color: var(--accent-primary);
    margin-bottom: 2rem;
}

.about-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.about-card p {
    color: var(--text-muted);
}

.about-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.5rem;
    font-style: italic;
    color: var(--text-muted);
}

/* Experiences Section */
.experiences {
    padding: 10rem 0;
    background: linear-gradient(to bottom, transparent, rgba(188, 19, 254, 0.05), transparent);
}

.experiences-wrapper {
    display: flex;
    align-items: center;
    gap: 6rem;
}

.exp-image {
    flex: 1;
}

.exp-image img {
    width: 100%;
    border-radius: 40px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.exp-content {
    flex: 1;
}

.highlight-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-secondary);
    margin: 1rem 0 2rem 0;
}

.skills-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 3rem;
}

.skills-tags span {
    padding: 0.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Cendero Section */
.cendero-brand {
    padding: 10rem 0;
}

.cendero-card {
    background: linear-gradient(135deg, #0d1a0d, #050805);
    padding: 4rem;
    border-radius: 40px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(0, 255, 136, 0.1);
}

.cendero-content {
    flex: 1;
    z-index: 2;
}

.label {
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--accent-primary);
    margin-bottom: 1rem;
}

.cendero-title-wrapper {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-bottom: 1.5rem;
}

.cendero-card h2 {
    font-size: 3.5rem;
    margin: 0;
}

.cendero-inline-logo {
    height: 50px;
    width: auto;
    /* Improved filter for transparency and color */
    filter: invert(48%) sepia(79%) saturate(2476%) hue-rotate(120deg) brightness(118%) contrast(119%);
    mix-blend-mode: color-dodge;
}

@media (max-width: 992px) {
    .cendero-title-wrapper {
        justify-content: center;
    }
}

.cendero-main-desc {
    font-size: 1.2rem;
    color: #b0c0b0;
    margin-bottom: 3rem;
    max-width: 700px;
    line-height: 1.5;
}

.cendero-main-desc span {
    color: var(--accent-primary);
    font-weight: 600;
}

.cendero-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 3rem;
    margin-bottom: 3.5rem;
    text-align: left;
}

.cendero-feature-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.cendero-feature-item i {
    width: 32px;
    height: 32px;
    color: var(--accent-primary);
    flex-shrink: 0;
    margin-top: 4px;
}

.cendero-feature-item h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: white;
    font-weight: 700;
}

.cendero-feature-item p {
    font-size: 1rem;
    color: #a0b0a0;
    margin-bottom: 0;
    line-height: 1.5;
}

.btn-cendero {
    background: white;
    color: #1a2a1a;
    font-size: 1.1rem;
    padding: 1.2rem 3rem;
}

.btn-cendero:hover {
    background: var(--accent-primary);
    color: white;
}

.cendero-visual {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    pointer-events: none;
}

.circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
}

.circle-1 {
    width: 300px;
    height: 300px;
    background: var(--accent-primary);
    top: -50px;
    right: -50px;
    opacity: 0.1;
}

.circle-2 {
    width: 200px;
    height: 200px;
    background: var(--accent-secondary);
    bottom: 50px;
    right: 150px;
    opacity: 0.1;
}

/* Contact Section */
.contact {
    padding: 10rem 0;
    text-align: center;
}

.contact-header h2 {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.contact-header p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 5rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 4rem;
}

.social-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--text-muted);
    transition: var(--transition);
}

.social-item i {
    width: 40px;
    height: 40px;
    margin-bottom: 1rem;
    transition: var(--transition);
}

.social-item:hover {
    color: var(--text-main);
}

.social-item:hover i {
    color: var(--accent-primary);
    transform: scale(1.2);
}

/* Footer */
footer {
    padding: 4rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    color: var(--text-muted);
}

.heart-icon {
    width: 16px;
    height: 16px;
    color: #ff4d4d;
    display: inline-block;
    vertical-align: middle;
}

/* Responsive */
@media (max-width: 992px) {
    .hero {
        flex-direction: column;
        padding-top: 15vh;
        text-align: center;
    }

    .hero-description {
        margin: 0 auto 3rem auto;
    }

    .hero-btns {
        justify-content: center;
    }

    .experiences-wrapper {
        flex-direction: column;
    }

    .cendero-card {
        padding: 4rem 2rem;
        flex-direction: column;
        text-align: center;
    }

    .cendero-card h2 {
        font-size: 2.8rem;
    }

    .cendero-features {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .social-links {
        flex-direction: column;
        gap: 2rem;
    }

    .image-wrapper {
        width: 300px;
        height: 380px;
    }
}