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

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #4a4a4a;
    background: linear-gradient(135deg, #fdf8f8 0%, #fef7ff 50%, #f8fafc 100%);
    overflow-x: hidden;
    opacity: 0;
    transition: opacity 0.5s ease;
}

body.loaded {
    opacity: 1;
}

html {
    scroll-behavior: smooth;
}

html, body {
    height: 100%;
    position: relative;
}

.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: linear-gradient(135deg, #fce7f3, #fbcfe8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.5s ease;
}

.loading-spinner {
    width: 60px;
    height: 60px;
    border: 3px solid rgba(236, 72, 153, 0.3);
    border-top: 3px solid #ec4899;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(252, 231, 243, 0.95));
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    box-shadow: 0 2px 20px rgba(236, 72, 153, 0.1);
    display: flex;
    justify-content: end;
    z-index: 1000;
    border-bottom: 1px solid rgba(236, 72, 153, 0.1);
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: bold;
    color: #be185d;
    background: linear-gradient(135deg, #be185d, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links a {
    text-decoration: none;
    color: #be185d;
    margin-left: 2rem;
    transition: all 0.3s ease;
    font-weight: 500;
    position: relative;
}

.nav-links a:hover {
    color: #ec4899;
    transform: translateY(-1px);
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: linear-gradient(135deg, #be185d, #ec4899);
    transition: width 0.3s ease;
}

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

.hero {
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #fdf2f8 0%, #fce7f3 25%, #fbcfe8 50%, #f9a8d4 75%, #f472b6 100%);
    color: #4a4a4a;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: 3rem 2rem;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 40%, rgba(236, 72, 153, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(190, 24, 93, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: linear-gradient(45deg, #ec4899, #be185d);
    border-radius: 50%;
    animation: floatParticle linear infinite;
    pointer-events: none;
}

@keyframes floatParticle {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) rotate(360deg);
        opacity: 0;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.hero-greeting {
    margin: 3rem  0 3rem;
}

.hero-name {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #be185d, #ec4899, #f472b6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.4s forwards;
}

.hero-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #4a5568;
    margin-bottom: 0.3rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.6s forwards;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #718096;
    font-weight: 400;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.8s forwards;
}

.hero-highlights {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2.5rem 0;
    opacity: 0;
    animation: fadeInUp 0.8s ease 1s forwards;
}

.highlight-item {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(236, 72, 153, 0.2);
    min-width: 100px;
    transition: all 0.3s ease;
}

.highlight-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(236, 72, 153, 0.2);
    background: rgba(255, 255, 255, 0.9);
}

.highlight-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: #be185d;
    margin-bottom: 0.2rem;
}

.highlight-label {
    display: block;
    font-size: 0.8rem;
    color: #666;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-description {
    font-size: 1.1rem;
    margin: 2rem auto;
    color: #4a5568;
    max-width: 600px;
    line-height: 1.7;
    text-align: center;
    opacity: 0;
    animation: fadeInUp 0.8s ease 1.2s forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-buttons {
    margin-top: 3rem;
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 0.8s ease 1.4s forwards;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-button.primary {
    background: linear-gradient(135deg, #ec4899, #be185d);
    color: white;
    box-shadow: 0 8px 25px rgba(236, 72, 153, 0.3);
}

.cta-button.secondary {
    background: rgba(255, 255, 255, 0.9);
    color: #be185d;
    border: 2px solid #ec4899;
    box-shadow: 0 8px 25px rgba(236, 72, 153, 0.1);
    backdrop-filter: blur(10px);
}

.cta-button .arrow {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
}

.cta-button:hover .arrow {
    transform: translateX(3px);
}

.cta-button.primary:hover {
    box-shadow: 0 12px 35px rgba(236, 72, 153, 0.4);
    background: linear-gradient(135deg, #be185d, #a21caf);
}

.cta-button.secondary:hover {
    background: linear-gradient(135deg, #ec4899, #be185d);
    color: white;
    box-shadow: 0 12px 35px rgba(236, 72, 153, 0.3);
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

section {
    padding: 6rem 2rem;
    position: relative;
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.animate-on-scroll.animate-in {
    opacity: 1;
    transform: translateY(0);
}

section:nth-child(even) {
    position: relative;
}

section:nth-child(even)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(252, 231, 243, 0.3), rgba(251, 207, 232, 0.2));
    z-index: -1;
}

h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #be185d;
    font-weight: 600;
    position: relative;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #be185d, #ec4899);
    border-radius: 2px;
}

.about {
    background: linear-gradient(135deg, #fef7ff, #fdf2f8);
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: left;
}

.about-content > p {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.education {
    margin-bottom: 3rem;
}

.education h3, .skills h3 {
    text-align: center;
    margin-bottom: 2rem;
    color: #2c3e50;
    font-size: 1.5rem;
}

.education-item {
    background: linear-gradient(135deg, #ffffff, #fef7ff);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(236, 72, 153, 0.1);
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    border: 1px solid rgba(236, 72, 153, 0.1);
    transition: all 0.3s ease;
}

.education-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(236, 72, 153, 0.15);
}

.education-item h4 {
    color: #be185d;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.education-item p {
    margin: 0.5rem 0;
    color: #666;
}

.skills {
    margin-top: 2rem;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.skill-group {
    text-align: center;
    position: relative;
}

.skill-group-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #be185d;
    margin-bottom: 1.8rem;
    text-align: center;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1.1rem;
}

.skill-group-title::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(135deg, #ec4899, #be185d);
}

.skill-group-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 2px;
    background: linear-gradient(135deg, #be185d, #ec4899);
}

.skill-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    justify-content: center;
}

.skill-tag {
    background: transparent;
    color: #4a4a4a;
    padding: 0.5rem 1rem;
    font-size: 0.95rem;
    font-weight: 500;
    border: 2px solid rgba(236, 72, 153, 0.3);
    border-radius: 5px;
    transition: all 0.3s ease;
    cursor: default;
    position: relative;
}

.skill-tag:hover {
    color: #be185d;
    border-color: #be185d;
    background: rgba(236, 72, 153, 0.05);
    transform: translateY(-1px);
}

.skill-tag:nth-child(odd) {
    border-color: rgba(190, 24, 93, 0.4);
}

.skill-tag:nth-child(even) {
    border-color: rgba(236, 72, 153, 0.4);
}

/* Animation on scroll */
.skill-group.animate-in {
    animation: skill-group-fade-in 0.8s ease-out forwards;
}

@keyframes skill-group-fade-in {
    0% { 
        opacity: 0; 
        transform: translateY(20px); 
    }
    100% { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

.skill-tag.animate-in {
    animation: skill-tag-fade-in 0.4s ease-out forwards;
}

@keyframes skill-tag-fade-in {
    0% { 
        opacity: 0; 
        transform: translateY(10px); 
    }
    100% { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

.experience {
    background: linear-gradient(135deg, #fdf8f8, #fef7ff);
}

.experience-content {
    max-width: 1000px;
    margin: 0 auto;
}

.experience-item {
    background: linear-gradient(135deg, #ffffff, #fef7ff);
    padding: 2.5rem;
    margin-bottom: 2rem;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(236, 72, 153, 0.1);
    border-left: 5px solid #ec4899;
    transition: all 0.3s ease;
    border: 1px solid rgba(236, 72, 153, 0.1);
}

.experience-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(236, 72, 153, 0.15);
}

.experience-item h3 {
    color: #be185d;
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.experience-item h4 {
    color: #ec4899;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.experience-date {
    color: #666;
    font-style: italic;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.experience-tasks {
    list-style: none;
    padding-left: 0;
}

.experience-tasks li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
    color: #444;
}

.experience-tasks li:before {
    content: "▸";
    color: #ec4899;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.project-card {
    background: linear-gradient(135deg, #ffffff, #fef7ff);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(236, 72, 153, 0.1);
    transition: all 0.3s ease;
    border-top: 4px solid #ec4899;
    border: 1px solid rgba(236, 72, 153, 0.1);
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(236, 72, 153, 0.15);
}

.project-card h3 {
    color: #be185d;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.project-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.project-tech {
    margin: 1.5rem 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tech-tag {
    background: linear-gradient(135deg, #fce7f3, #fbcfe8);
    color: #be185d;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid #f9a8d4;
    transition: all 0.3s ease;
}

.tech-tag:hover {
    background: linear-gradient(135deg, #fbcfe8, #f9a8d4);
    transform: translateY(-1px);
}

.project-link {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.8rem 1.5rem;
    background: linear-gradient(135deg, #ec4899, #be185d);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(236, 72, 153, 0.3);
}

.project-link:hover {
    background: linear-gradient(135deg, #be185d, #a21caf);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(236, 72, 153, 0.4);
}

/* Enhanced Project Links Layout */
.project-links {
    display: flex;
    gap: 0.8rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.project-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 0;
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
    min-width: auto;
    flex: 1;
    justify-content: center;
    text-align: center;
}

.project-link .icon {
    font-size: 1rem;
    line-height: 1;
}

.project-link span {
    font-weight: 600;
    font-size: 0.85rem;
}

/* Different colors for different link types */
.project-link.github {
    background: linear-gradient(135deg, #333, #555);
    box-shadow: 0 4px 15px rgba(51, 51, 51, 0.3);
}

.project-link.github:hover {
    background: linear-gradient(135deg, #555, #666);
    box-shadow: 0 6px 20px rgba(51, 51, 51, 0.4);
}

.project-link.website {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.project-link.website:hover {
    background: linear-gradient(135deg, #1d4ed8, #1e40af);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

.project-link.article {
    background: linear-gradient(135deg, #10b981, #059669);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.project-link.article:hover {
    background: linear-gradient(135deg, #059669, #047857);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

.contact {
    background: linear-gradient(135deg, #fef7ff, #fdf2f8);
    text-align: center;
}

.contact-content {
    max-width: 700px;
    margin: 0 auto;
}

.contact-content > p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
}

.contact-info {
    background: linear-gradient(135deg, #ffffff, #fef7ff);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(236, 72, 153, 0.1);
    margin-bottom: 2rem;
    border: 1px solid rgba(236, 72, 153, 0.1);
    transition: all 0.3s ease;
}

.contact-info:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(236, 72, 153, 0.15);
}

.contact-info p {
    margin: 0.8rem 0;
    font-size: 1.1rem;
    color: #444;
}

.contact-info strong {
    color: #be185d;
}

.contact-links {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.contact-links a {
    display: inline-block;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, #ec4899, #be185d);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-weight: 500;
    min-width: 120px;
    box-shadow: 0 4px 15px rgba(236, 72, 153, 0.3);
}

.contact-links a:hover {
    background: linear-gradient(135deg, #be185d, #a21caf);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(236, 72, 153, 0.4);
}

footer {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #be185d, #a21caf);
    color: white;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero {
        min-height: 80vh;
        padding: 2rem 1rem;
    }
    
    .hero-name {
        font-size: 2.5rem;
    }
    
    .hero-title {
        font-size: 1.4rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-highlights {
        flex-direction: row;
        gap: 1rem;
    }
    
    .highlight-item {
        padding: 0.8rem;
        min-width: 80px;
    }
    
    .highlight-number {
        font-size: 1.4rem;
    }
    
    .highlight-label {
        font-size: 0.7rem;
    }
    
    .hero-description {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .cta-button {
        width: 220px;
        padding: 12px 24px;
    }
    
    section {
        padding: 4rem 1rem;
    }
    
    .about-content {
        text-align: center;
    }
    
    .experience-item, .education-item, .contact-info {
        padding: 1.5rem;
    }
    
    .experience-item h3 {
        font-size: 1.2rem;
    }
    
    .experience-item h4 {
        font-size: 1.1rem;
    }
    
    .project-card {
        padding: 1.5rem;
    }
    
    .project-links {
        flex-direction: column;
        gap: 0.6rem;
    }
    
    .project-link {
        flex: none;
        width: 100%;
        padding: 0.7rem 1rem;
        font-size: 0.9rem;
    }
    
    .contact-links {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-links a {
        width: 200px;
    }
    
    .skills-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .skills-grid {
        gap: 2.5rem 1rem;
    }
    
    .skill-group-title {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .skill-tags {
        gap: 0.5rem;
        justify-content: center;
    }
    
    .skill-tag {
        font-size: 0.85rem;
        padding: 0.4rem 0.8rem;
    }
    
}

@media (min-width: 769px) {
    .project-card:hover {
        background: linear-gradient(135deg, #ffffff, #fce7f3);
    }
    
    .experience-item:hover {
        background: linear-gradient(135deg, #ffffff, #fce7f3);
    }
    
    .education-item:hover {
        background: linear-gradient(135deg, #ffffff, #fce7f3);
    }
}

/* Smooth Scroll Behavior */
html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #fdf2f8;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #ec4899, #be185d);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #be185d, #a21caf);
}

/* Enhanced Article Cards with Images */
.articles {
    padding: 5rem 0;
    background: linear-gradient(135deg, #fef7ff 0%, #fdf8f8 50%, #f8fafc 100%);
}

.article-card.enhanced {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(190, 24, 93, 0.1);
    transition: all 0.4s ease;
    border: 1px solid rgba(190, 24, 93, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.article-card.enhanced:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(190, 24, 93, 0.15);
    border-color: rgba(190, 24, 93, 0.2);
}

.article-image {
    position: relative;
    height: 140px;
    overflow: hidden;
    margin: 1.5rem 1.5rem 0 1.5rem;
    border-radius: 12px;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    border-radius: 12px;
}

.article-card.enhanced:hover .article-image img {
    transform: scale(1.05);
}

.article-overlay {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 500;
    color: #be185d;
    border: 1px solid rgba(190, 24, 93, 0.1);
}

.article-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.article-content .article-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.article-category {
    background: linear-gradient(135deg, #be185d, #a21caf);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.article-content h3 {
    color: #2d3748;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.article-content p {
    color: #4a5568;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 1.5rem;
}

.article-tags .tag {
    background: rgba(190, 24, 93, 0.1);
    color: #be185d;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(190, 24, 93, 0.2);
}

.article-link.enhanced {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, #be185d, #a21caf);
    color: white;
    text-decoration: none;
    padding: 14px 20px;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: auto;
}

.article-link.enhanced:hover {
    background: linear-gradient(135deg, #a21caf, #86198f);
    transform: translateX(5px);
}

.article-link.enhanced .arrow {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.article-link.enhanced:hover .arrow {
    transform: translateX(5px);
}

.articles-cta {
    text-align: center;
    margin-top: 3rem;
}

.btn.secondary.enhanced {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: #be185d;
    border: 2px solid #be185d;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn.secondary.enhanced:hover {
    background: #be185d;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(190, 24, 93, 0.3);
}

.external-icon {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.btn.secondary.enhanced:hover .external-icon {
    transform: translate(3px, -3px);
}

@media (max-width: 768px) {
    .article-image {
        height: 120px;
        margin: 1rem 1rem 0 1rem;
    }
    
    .article-content {
        padding: 1.5rem;
    }
    
    .article-content h3 {
        font-size: 1.2rem;
    }
    
    .article-tags .tag {
        font-size: 0.75rem;
        padding: 4px 10px;
    }
}

/* Enhanced Articles Section */
.articles-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.articles-intro p {
    font-size: 1.1rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

.article-image-header {
    margin: -1.5rem -1.5rem 1.5rem -1.5rem;
    border-radius: 15px 15px 0 0;
    overflow: hidden;
    position: relative;
}

.article-card-image {
    width: 100%;
    height: 160px;
    object-fit: cover;
    transition: transform 0.4s ease;
    border-radius: 15px 15px 0 0;
}

.project-card:hover .article-card-image {
    transform: scale(1.05);
}

.project-image-header {
    margin: -1.5rem -1.5rem 1.5rem -1.5rem;
    border-radius: 15px 15px 0 0;
    overflow: hidden;
    position: relative;
}

.project-card-image {
    width: 100%;
    height: 160px;
    object-fit: cover;
    transition: transform 0.4s ease;
    border-radius: 15px 15px 0 0;
}

.project-card:hover .project-card-image {
    transform: scale(1.05);
}

.article-header-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(190, 24, 93, 0.1);
}

.article-platform {
    background: linear-gradient(135deg, #be185d, #a21caf);
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.article-status {
    color: #6b7280;
    font-size: 0.85rem;
    font-weight: 500;
}

.article-highlights {
    margin: 1.5rem 0;
}

.highlight-point {
    color: #059669;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.articles-footer {
    text-align: center;
    margin-top: 3rem;
}

.btn.secondary {
    display: inline-block;
    background: transparent;
    color: #be185d;
    border: 2px solid #be185d;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn.secondary:hover {
    background: #be185d;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(190, 24, 93, 0.3);
}

@media (max-width: 768px) {
    .article-header-info {
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-start;
    }
    
    .articles-intro p {
        font-size: 1rem;
    }
    
    .highlight-point {
        font-size: 0.85rem;
    }
    
    .article-image-header {
        margin: -1rem -1rem 1rem -1rem;
    }
    
    .article-card-image {
        height: 140px;
    }
    
    .project-image-header {
        margin: -1rem -1rem 1rem -1rem;
    }
    
    .project-card-image {
        height: 140px;
    }
}

/* Prefers Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}