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

html {
    scroll-behavior: smooth;
}

:root {
    /* BABY BLUE PALETTE */
    --baby-100: #e6f0fa;
    --baby-200: #b8d9f5;
    --baby-300: #89c4f4;
    --baby-400: #5f9ea0;
    --baby-500: #2c3e50;
    --baby-600: #1a2c3a;
    --white: #ffffff;
    --shadow-sm: 0 5px 20px rgba(137, 196, 244, 0.15);
    --shadow-lg: 0 15px 40px rgba(95, 158, 160, 0.25);
    --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(145deg, var(--baby-100), #d9e9fa);
    color: var(--baby-500);
    padding-top: 70px;
}

/* NAVBAR */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--baby-500);
    padding: 0.8rem 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--white);
    text-decoration: none;
    letter-spacing: -0.5px;
}

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

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: 400;
    opacity: 0.9;
    transition: var(--transition);
    font-size: 0.95rem;
}

.nav-links a:hover,
.nav-links a.active {
    opacity: 1;
    color: var(--baby-300);
}

.menu-button {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
}

.menu-button svg {
    fill: var(--white);
    width: 24px;
    height: 24px;
}

/* MOBILE SIDEBAR */
.sidebar {
    position: fixed;
    top: 0;
    right: -280px;
    width: 280px;
    height: 100vh;
    background: var(--baby-500);
    padding: 2rem 1.5rem;
    z-index: 1001;
    transition: var(--transition);
    box-shadow: -5px 0 30px rgba(0,0,0,0.2);
}

.sidebar.active {
    right: 0;
}

.close-btn {
    text-align: right;
    margin-bottom: 2rem;
}

.close-btn svg {
    fill: var(--white);
    width: 24px;
    height: 24px;
}

.sidebar li {
    list-style: none;
    margin-bottom: 1rem;
}

.sidebar a {
    color: var(--white);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem;
    border-radius: 12px;
    transition: var(--transition);
}

.sidebar a:hover {
    background: rgba(255,255,255,0.1);
    color: var(--baby-300);
}

.sidebar i {
    width: 20px;
    color: var(--baby-300);
}

/* HERO - PROFESSIONAL */
.hero-section {
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(145deg, var(--baby-600), var(--baby-500), var(--baby-400));
    padding: 2rem;
    overflow: hidden;
}

/* DECORATIVE BACKGROUND */
.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 80%;
    height: 200%;
    background: radial-gradient(circle, rgba(137,196,244,0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

.hero-content {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 10;
}

.hero-text {
    color: var(--white);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.hero-title span {
    color: var(--baby-300);
    position: relative;
    display: inline-block;
}

.hero-title span::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(137, 196, 244, 0.3);
    z-index: -1;
    border-radius: 4px;
}

.hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.95;
    max-width: 500px;
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 2rem;
}

/* CTA BUTTONS */
.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.hero-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2.5rem;
    background: var(--baby-300);
    color: var(--baby-600);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    border: 1px solid rgba(255,255,255,0.2);
}

.hero-btn-primary:hover {
    background: var(--baby-200);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.hero-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2.5rem;
    background: transparent;
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid rgba(255,255,255,0.3);
}

.hero-btn-secondary:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--white);
    transform: translateY(-3px);
}

/* HERO IMAGE */
.hero-image {
    position: relative;
}

.hero-image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.5);
    border: 4px solid rgba(255,255,255,0.2);
    transition: all 0.4s ease;
}

.hero-image-wrapper:hover {
    transform: scale(1.02);
    border-color: var(--baby-300);
    box-shadow: 0 30px 60px -12px rgba(0,0,0,0.6);
}

.hero-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
    transition: all 0.4s ease;
}

.hero-image-wrapper:hover img {
    transform: scale(1.05);
}

/* SCROLL INDICATOR - SIMPLE */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    font-size: 1.5rem;
    animation: bounce 2s infinite;
    opacity: 0.7;
    z-index: 10;
    transition: opacity 0.3s ease;
}

.scroll-indicator:hover {
    opacity: 1;
}

@keyframes bounce {
    0%,100%{ transform: translateX(-50%) translateY(0); }
    50%{ transform: translateX(-50%) translateY(-8px); }
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-text {
        order: 1;
    }
    
    .hero-image {
        order: 0;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        margin: 0 auto;
    }
    
    .hero-buttons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-btn-primary,
    .hero-btn-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .hero-image img {
        height: 300px;
    }
}

/* SECTION HEADERS */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 0 1rem;
}

.section-header h2 {
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--baby-500);
    margin-bottom: 0.8rem;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: var(--baby-300);
    border-radius: 2px;
}

.section-header p {
    color: var(--baby-400);
    font-size: 1rem;
    max-width: 500px;
    margin: 1.5rem auto 0;
}

/* PROFILE CARDS */
.profiles-section {
    padding: 5rem 2rem;
}

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

.profile-card {
    background: var(--white);
    border-radius: 28px;
    padding: 2rem 1.8rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.5);
    backdrop-filter: blur(10px);
}

.profile-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--baby-300);
}

.profile-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.profile-avatar {
    width: 110px;
    height: 110px;
    background: linear-gradient(145deg, var(--baby-300), var(--baby-400));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 1rem;
    color: var(--white);
    box-shadow: 0 8px 20px rgba(137,196,244,0.3);
}

.profile-header h3 {
    font-size: 1.6rem;
    color: var(--baby-500);
    margin-bottom: 0.3rem;
    font-weight: 600;
}

.profile-location {
    color: var(--baby-400);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
}

.profile-location i {
    color: var(--baby-300);
}

.profile-bio {
    text-align: center;
    color: var(--baby-500);
    opacity: 0.8;
    margin: 1.5rem 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

.profile-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.tag {
    background: var(--baby-100);
    color: var(--baby-500);
    padding: 0.3rem 1rem;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid var(--baby-200);
}

.profile-footer {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    border-top: 1px solid var(--baby-100);
    padding-top: 1.5rem;
}

/* BUTTONS */
.btn-primary, .btn-secondary {
    padding: 0.6rem 1.2rem;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.btn-primary {
    background: linear-gradient(145deg, var(--baby-300), var(--baby-400));
    color: var(--white);
    box-shadow: 0 4px 12px rgba(137,196,244,0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(95,158,160,0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--baby-500);
    border: 1.5px solid var(--baby-200);
}

.btn-secondary:hover {
    background: var(--baby-100);
    border-color: var(--baby-300);
    transform: translateY(-2px);
}

/* RECENT POSTS */
.recent-section {
    padding: 5rem 2rem;
    background: rgba(255,255,255,0.6);
    backdrop-filter: blur(8px);
}

.recent-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.recent-group h3 {
    color: var(--baby-500);
    margin-bottom: 1.2rem;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.recent-group h3 i {
    color: var(--baby-300);
}

.recent-list {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--baby-200);
}

.recent-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    text-decoration: none;
    color: inherit;
    border-bottom: 1px solid var(--baby-100);
    transition: var(--transition);
}

.recent-item:last-child {
    border-bottom: none;
}

.recent-item:hover {
    background: var(--baby-100);
}

.recent-info {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.recent-title {
    font-weight: 500;
    color: var(--baby-500);
}

.recent-date {
    font-size: 0.8rem;
    color: var(--baby-400);
}

.recent-item i {
    color: var(--baby-300);
    opacity: 0;
    transition: var(--transition);
}

.recent-item:hover i {
    opacity: 1;
    transform: translateX(3px);
}

/* PROFILE HERO */
.profile-hero {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, var(--baby-500), var(--baby-400));
    text-align: center;
    color: white;
}

.profile-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.profile-hero-avatar {
    width: 120px;
    height: 120px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    margin: 0 auto 1.5rem;
    color: var(--baby-500);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.profile-hero-name {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.profile-hero-tagline {
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

.profile-hero-social {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* PROFILE STATS */
.profile-stats {
    padding: 3rem 2rem;
    background: white;
}

.stats-grid {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--baby-400);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    opacity: 0.8;
    font-size: 0.9rem;
}

/* ABOUT PREVIEW */
.about-preview {
    padding: 4rem 2rem;
}

.about-preview-grid {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-preview-card {
    background: white;
    padding: 3rem;
    border-radius: 30px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 2rem;
    border: 1px solid var(--baby-200);
}

.about-preview-card i {
    font-size: 3rem;
    color: var(--baby-300);
    opacity: 0.3;
    margin-bottom: 1rem;
}

.about-quote {
    font-size: 1.3rem;
    font-style: italic;
    color: var(--baby-500);
    line-height: 1.6;
}

.about-preview-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* PROFILE BLOGS */
.profile-blogs {
    padding: 4rem 2rem;
    background: rgba(255,255,255,0.6);
}

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

.blog-card {
    background: white;
    border-radius: 24px;
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--baby-200);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--baby-300);
}

.blog-card-date {
    color: var(--baby-400);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-card-title {
    font-size: 1.3rem;
    color: var(--baby-500);
    margin-bottom: 0.8rem;
}

.blog-card-excerpt {
    color: var(--baby-500);
    opacity: 0.7;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.blog-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--baby-100);
    padding-top: 1rem;
}

.blog-card-tag {
    color: var(--baby-400);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.blog-card-link {
    color: var(--baby-300);
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    transition: var(--transition);
}

.blog-card-link:hover {
    color: var(--baby-400);
    gap: 0.5rem;
}

/* INTERESTS GRID */
.interests-preview {
    padding: 4rem 2rem;
}

.interests-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.interest-item {
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--baby-200);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.interest-item:hover {
    transform: scale(1.05);
    border-color: var(--baby-300);
    box-shadow: var(--shadow-lg);
}

.interest-icon {
    font-size: 1.2rem;
}

/* PAGE HEADER */
.page-header {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, var(--baby-500), var(--baby-400));
    text-align: center;
    color: white;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    text-transform: capitalize;
}

.page-header p {
    opacity: 0.9;
}

/* ABOUT SECTION */
.about-section {
    padding: 4rem 2rem;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1rem;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.about-card {
    background: white;
    border-radius: 24px;
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--baby-200);
}

.about-card h2 {
    font-size: 1.3rem;
    color: var(--baby-500);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.about-card h2 i {
    color: var(--baby-300);
}

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

.info-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 0.5rem;
    border-bottom: 1px dashed var(--baby-100);
    gap: 1rem;
}

.info-label {
    color: var(--baby-400);
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.5px;
    min-width: 70px;
    flex-shrink: 0;
}

.info-value {
    color: var(--baby-500);
    font-weight: 500;
    font-size: 0.9rem;
    text-align: right;
    word-break: break-word;
}

.hobbies-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.hobby-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    background: var(--baby-100);
    border-radius: 12px;
    transition: var(--transition);
}

.hobby-item:hover {
    background: var(--baby-200);
    transform: translateX(5px);
}

.hobby-icon {
    font-size: 1.2rem;
}

.interests-card {
    margin-bottom: 2rem;
}

.interests-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.interest-tag {
    background: var(--baby-100);
    color: var(--baby-500);
    padding: 0.5rem 1.2rem;
    border-radius: 30px;
    font-size: 0.9rem;
    border: 1px solid var(--baby-200);
    transition: var(--transition);
}

.interest-tag:hover {
    background: var(--baby-300);
    color: white;
    transform: scale(1.05);
}

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

.goal-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem;
    background: var(--baby-100);
    border-radius: 12px;
    transition: var(--transition);
}

.goal-item:hover {
    background: var(--baby-200);
    transform: translateX(5px);
}

.goal-item i {
    color: var(--baby-300);
    font-size: 1.2rem;
}

.goal-item p {
    color: var(--baby-500);
}

.center-button {
    text-align: center;
    margin-top: 2rem;
}

/* STATS */
.stats-section {
    padding: 3rem 2rem;
    background: linear-gradient(145deg, var(--baby-300), var(--baby-400));
}

.stats-container {
    max-width: 700px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    text-align: center;
}

.stat-card {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(8px);
    padding: 1.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.2);
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--white);
    line-height: 1;
    margin-bottom: 0.3rem;
}

.stat-label {
    color: var(--baby-500);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* CTA  */
.cta-section {
    padding: 5rem 2rem;
    text-align: center;
    background: linear-gradient(145deg, var(--baby-500), var(--baby-600));
    color: var(--white);
}

.cta-content h2 {
    font-size: 2.2rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.cta-content p {
    opacity: 0.9;
    margin-bottom: 2rem;
    font-weight: 300;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* FOOTER */
.footer {
    background: var(--baby-500);
    color: var(--white);
    padding: 3rem 2rem 1rem;
}

.footer-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2.5rem;
    margin-bottom: 2.5rem;
}

.footer-logo h3 {
    font-size: 1.5rem;
    color: var(--baby-300);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.footer-logo p {
    opacity: 0.8;
    font-size: 0.9rem;
}

.footer-social h4,
.footer-links h4 {
    font-size: 1rem;
    margin-bottom: 1.2rem;
    color: var(--baby-300);
    font-weight: 500;
    letter-spacing: 0.5px;
}

.social-icons {
    display: flex;
    gap: 0.8rem;
}

.social-icon {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.1);
}

.social-icon:hover {
    background: var(--baby-300);
    color: var(--baby-500);
    transform: translateY(-3px);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.6rem;
}

.footer-links a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--baby-300);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
}

/* RESPONSIVE */
@media (max-width: 480px) {
    .blog-image-card {
        margin: 1.5rem 0;
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }
    
    .blog-image-card img {
        width: 100%;
        height: auto;
        aspect-ratio: 16/9;
        object-fit: cover;
    }
    
    .blog-image-caption {
        padding: 0.8rem 1rem;
        font-size: 0.85rem;
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .blog-image-caption i {
        font-size: 1rem;
    }
    
    .blog-image-caption span {
        word-break: break-word;
        flex: 1;
    }
}

@media (max-width: 480px) {
    .profiles-grid {
        grid-template-columns: 1fr;
        padding: 0 0.5rem;
    }
    
    .profile-card {
        padding: 1.5rem 1rem;
    }
    
    .profile-footer {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .profile-footer .btn-primary,
    .profile-footer .btn-secondary {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
    
    .recent-grid {
        gap: 1rem;
    }
    
    .recent-item {
        padding: 0.8rem 1rem;
    }
    
    .recent-info {
        max-width: 70%;
    }
    
    .recent-title {
        font-size: 0.9rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .recent-date {
        font-size: 0.75rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .cta-buttons .btn-primary {
        width: 100%;
        justify-content: center;
    }
    
    .stats-container {
        gap: 0.8rem;
    }
    
    .stat-card {
        padding: 1rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-label {
        font-size: 0.7rem;
    }
    
    .hero-image img {
        height: 250px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-btn-primary {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 360px) {
    .profile-card {
        padding: 1rem;
    }
    
    .profile-avatar {
        width: 90px;
        height: 90px;
        font-size: 2.5rem;
    }
    
    .profile-header h3 {
        font-size: 1.3rem;
    }
    
    .tag {
        font-size: 0.7rem;
        padding: 0.2rem 0.6rem;
    }
    
    .recent-title {
        max-width: 150px;
    }
    
    .recent-item i {
        font-size: 0.9rem;
    }
    
    .blog-image-caption {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .menu-button {
        display: block;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-text {
        order: 1;
    }
    
    .hero-image {
        order: 0;
        max-width: 450px;
        margin: 0 auto;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        margin: 0 auto;
    }
    
    .recent-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .stats-container {
        grid-template-columns: 1fr;
    }
    
    .profile-footer {
        flex-wrap: wrap;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .about-preview-buttons {
        flex-direction: column;
    }
    
    .profile-blogs-grid {
        grid-template-columns: 1fr;
    }
    
    .hobbies-grid {
        grid-template-columns: 1fr;
    }
    
    .profile-hero-name {
        font-size: 2rem;
    }
    
    .info-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.3rem;
    }
    
    .info-label {
        min-width: auto;
        font-size: 0.7rem;
    }
    
    .info-value {
        text-align: left;
        font-size: 0.9rem;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .profile-footer {
        flex-direction: column;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .info-item {
        gap: 0.2rem;
    }
    
    .info-value {
        font-size: 0.85rem;
    }
}