/* ===================================
   ABIN JOSE PORTFOLIO - PREMIUM DESIGN
   Enhanced Minimalist Theme v2.0
   =================================== */

/* CSS Variables - Premium Light Theme */
:root {
    /* Colors */
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-tertiary: #f1f5f9;
    --bg-card: #ffffff;
    --bg-gradient: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);

    --accent-primary: #2563eb;
    --accent-secondary: #1d4ed8;
    --accent-tertiary: #3b82f6;
    --accent-gradient: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
    --accent-light: rgba(37, 99, 235, 0.08);
    --accent-glow: rgba(37, 99, 235, 0.15);

    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-tertiary: #94a3b8;

    --border-light: #e2e8f0;
    --border-medium: #cbd5e1;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-glow: 0 0 40px rgba(37, 99, 235, 0.15);

    --linkedin-blue: #0077b5;
    --success: #10b981;
    --warning: #f59e0b;
    --error: #ef4444;

    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Spacing */
    --section-padding: 120px 0;
    --container-width: 1200px;

    /* Transitions */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
    --transition-fast: 0.15s var(--ease-out);
    --transition-normal: 0.3s var(--ease-out);
    --transition-slow: 0.5s var(--ease-out);

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-2xl: 32px;
}

/* Reset & Base */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-primary);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

::selection {
    background: var(--accent-light);
    color: var(--accent-primary);
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Container */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* Section Base */
.section {
    padding: var(--section-padding);
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 72px;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-primary);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 16px;
    padding: 8px 20px;
    background: var(--accent-light);
    border-radius: 50px;
    border: 1px solid var(--accent-glow);
}

.section-title {
    font-size: clamp(36px, 5vw, 52px);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 16px;
    letter-spacing: -1px;
    line-height: 1.1;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-tertiary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ===================================
   NAVIGATION
   =================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid transparent;
    transition: all var(--transition-normal);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    border-bottom-color: var(--border-light);
    box-shadow: var(--shadow-sm);
}

.nav-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 14px;
}

.logo-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent-primary);
    box-shadow: 0 0 0 4px var(--accent-light);
}

.logo-text {
    font-size: 22px;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-link {
    padding: 10px 18px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent-gradient);
    border-radius: 1px;
    transition: all var(--transition-normal);
    transform: translateX(-50%);
}

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

.nav-link.active {
    color: var(--accent-primary);
}

.nav-link.active::after {
    width: calc(100% - 24px);
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    border-radius: var(--radius-sm);
    transition: background var(--transition-fast);
}

.mobile-menu-btn:hover {
    background: var(--bg-secondary);
}

.mobile-menu-btn span {
    width: 22px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all var(--transition-fast);
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ===================================
   HERO SECTION
   =================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 120px 24px 80px;
    background: var(--bg-primary);
    overflow: hidden;
}

/* Decorative background */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 20%, var(--accent-glow) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(124, 58, 237, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, var(--bg-secondary) 0%, transparent 70%);
    pointer-events: none;
}

/* Grid pattern */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(var(--border-light) 1px, transparent 1px),
        linear-gradient(90deg, var(--border-light) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.4;
    pointer-events: none;
    mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
}

.hero-avatar {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 36px;
    border: 4px solid white;
    box-shadow: var(--shadow-xl), 0 0 0 8px var(--accent-light);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 24px;
    background: white;
    border: 1px solid var(--border-light);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 28px;
    box-shadow: var(--shadow-md);
}

.badge-dot {
    width: 10px;
    height: 10px;
    background: var(--success);
    border-radius: 50%;
    animation: pulse 2s infinite;
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.2);
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.hero-title {
    font-size: clamp(44px, 10vw, 72px);
    font-weight: 800;
    letter-spacing: -2px;
    margin-bottom: 16px;
    color: var(--text-primary);
    line-height: 1.05;
}

.hero-title span {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(18px, 3vw, 24px);
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 20px;
    letter-spacing: -0.3px;
}

.hero-tagline {
    font-size: 17px;
    color: var(--text-tertiary);
    max-width: 560px;
    margin: 0 auto 44px;
    line-height: 1.8;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 56px;
    margin-bottom: 48px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.stat-number {
    font-size: 40px;
    font-weight: 800;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.stat-label {
    font-size: 13px;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 8px;
    font-weight: 500;
}

.hero-cta {
    display: flex;
    justify-content: center;
    gap: 16px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius-lg);
    border: none;
    cursor: pointer;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--accent-gradient);
    color: white;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.5);
}

.btn-primary::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;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-secondary {
    background: white;
    color: var(--text-primary);
    border: 2px solid var(--border-light);
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    border-color: var(--accent-primary);
    color: var(--accent-primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: var(--text-tertiary);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    animation: fadeInUp 1s ease 1s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

.scroll-arrow {
    width: 28px;
    height: 44px;
    border: 2px solid var(--border-medium);
    border-radius: 14px;
    position: relative;
}

.scroll-arrow::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 10px;
    background: var(--accent-primary);
    border-radius: 2px;
    animation: scrollBounce 2s infinite;
}

@keyframes scrollBounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }

    50% {
        transform: translateX(-50%) translateY(16px);
        opacity: 0;
    }
}

/* ===================================
   EXPERIENCE TIMELINE
   =================================== */
.experience-section {
    background: var(--bg-primary);
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 24px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--accent-primary), var(--accent-tertiary), var(--border-light));
    border-radius: 1px;
}

.timeline-item {
    position: relative;
    padding-left: 72px;
    padding-bottom: 56px;
    opacity: 0;
    transform: translateX(-20px);
    animation: slideIn 0.6s var(--ease-out) forwards;
}

.timeline-item:nth-child(1) {
    animation-delay: 0.1s;
}

.timeline-item:nth-child(2) {
    animation-delay: 0.2s;
}

.timeline-item:nth-child(3) {
    animation-delay: 0.3s;
}

.timeline-item:nth-child(4) {
    animation-delay: 0.4s;
}

.timeline-item:nth-child(5) {
    animation-delay: 0.5s;
}

@keyframes slideIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

.timeline-marker {
    position: absolute;
    left: 0;
    top: 0;
}

.timeline-dot {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    border: 3px solid var(--accent-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md), 0 0 0 6px var(--accent-light);
    transition: all var(--transition-normal);
}

.timeline-dot.current {
    background: var(--accent-gradient);
    border: none;
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.timeline-dot.current::after {
    content: '';
    width: 14px;
    height: 14px;
    background: white;
    border-radius: 50%;
}

.timeline-content {
    background: white;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    padding: 32px;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-sm);
}

.timeline-content:hover {
    transform: translateX(8px);
    border-color: var(--accent-primary);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.timeline-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
    flex-wrap: wrap;
    gap: 12px;
}

.timeline-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.3px;
}

.timeline-company {
    color: var(--accent-primary);
    font-weight: 600;
    font-size: 16px;
}

.timeline-date {
    font-size: 13px;
    color: var(--accent-primary);
    background: var(--accent-light);
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 600;
    white-space: nowrap;
}

.timeline-location {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-tertiary);
    font-size: 14px;
    margin-bottom: 20px;
}

.timeline-highlights {
    margin-bottom: 24px;
}

.timeline-highlights li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 12px;
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.6;
}

.timeline-highlights li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    background: var(--accent-gradient);
    border-radius: 50%;
}

.timeline-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag {
    padding: 6px 14px;
    background: var(--bg-secondary);
    color: var(--text-secondary);
    font-size: 12px;
    font-weight: 600;
    border-radius: 50px;
    border: 1px solid var(--border-light);
    transition: all var(--transition-fast);
}

.tag:hover {
    background: var(--accent-light);
    color: var(--accent-primary);
    border-color: transparent;
}

/* ===================================
   PROJECTS SECTION
   =================================== */
.projects-section {
    background: var(--bg-secondary);
    position: relative;
}

.projects-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to bottom, var(--bg-primary), transparent);
    pointer-events: none;
}

.projects-grid {
    display: grid;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.project-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    background: white;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-2xl);
    padding: 48px;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-sm);
}

.project-card:nth-child(even) {
    direction: rtl;
}

.project-card:nth-child(even)>* {
    direction: ltr;
}

.project-card:hover {
    border-color: transparent;
    box-shadow: var(--shadow-xl), var(--shadow-glow);
    transform: translateY(-8px);
}

.project-image {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    aspect-ratio: 16/10;
    background: var(--bg-secondary);
    cursor: pointer;
}

.project-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--accent-gradient);
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.project-image:hover::after {
    opacity: 0.1;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.project-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-tertiary) 100%);
    color: var(--text-tertiary);
}

.project-image-placeholder svg {
    width: 64px;
    height: 64px;
    opacity: 0.3;
}

.project-info h3 {
    font-size: 28px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.project-info p {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 28px;
}

.project-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.project-tech span {
    padding: 8px 18px;
    background: var(--accent-light);
    color: var(--accent-primary);
    font-size: 13px;
    font-weight: 600;
    border-radius: 50px;
    transition: all var(--transition-fast);
}

.project-tech span:hover {
    background: var(--accent-primary);
    color: white;
}

/* No Image Projects */
.project-card.no-image {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 56px;
    background: linear-gradient(135deg, white 0%, var(--bg-secondary) 100%);
}

.project-card.no-image .project-info h3 {
    font-size: 26px;
}

.project-card.no-image .project-tech {
    justify-content: center;
}

/* ===================================
   SKILLS SECTION
   =================================== */
.skills-section {
    background: var(--bg-primary);
}

.skills-container {
    display: grid;
    gap: 32px;
}

.skills-category {
    background: white;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    padding: 36px;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
}

.skills-category:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.category-header {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 28px;
}

.category-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-gradient);
    border-radius: var(--radius-lg);
    color: white;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.3);
}

.category-header h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.3px;
}

.skills-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.skill-badge {
    padding: 10px 20px;
    background: var(--bg-secondary);
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
    border-radius: 50px;
    border: 1px solid var(--border-light);
    transition: all var(--transition-fast);
    cursor: default;
}

.skill-badge:hover {
    border-color: var(--accent-primary);
    color: var(--accent-primary);
    background: var(--accent-light);
    transform: translateY(-2px);
}

.skill-badge.highlight {
    background: var(--accent-light);
    color: var(--accent-primary);
    border-color: transparent;
    font-weight: 600;
}

/* ===================================
   PROJECT GALLERY
   =================================== */
.project-gallery {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    background: var(--bg-tertiary);
}

.gallery-images {
    position: relative;
    width: 100%;
    height: 100%;
}

.gallery-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-image.active {
    opacity: 1;
}

.gallery-nav {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.gallery-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid white;
    background: transparent;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.gallery-dot:hover {
    background: rgba(255, 255, 255, 0.5);
}

.gallery-dot.active {
    background: white;
}

/* ===================================
   CERTIFICATIONS SECTION
   =================================== */
.certifications-section {
    background: var(--bg-secondary);
    position: relative;
}

.certifications-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 32px;
}

.certification-category {
    background: white;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    padding: 32px;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-sm);
}

.certification-category:hover {
    border-color: var(--accent-primary);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
    transform: translateY(-4px);
}

.certification-category .category-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-light);
}

.certification-category .category-icon {
    width: 52px;
    height: 52px;
    background: var(--accent-gradient);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.certification-category h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
}

.certification-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.certification-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 18px;
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
    transition: all var(--transition-fast);
}

.certification-item:hover {
    background: var(--accent-light);
    border-color: var(--accent-glow);
}

.cert-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
}

.cert-meta {
    display: flex;
    align-items: center;
    gap: 12px;
}

.cert-issuer {
    font-size: 12px;
    color: var(--text-tertiary);
    font-weight: 500;
}

.cert-score {
    font-size: 12px;
    color: var(--success);
    background: rgba(16, 185, 129, 0.1);
    padding: 4px 10px;
    border-radius: 50px;
    font-weight: 700;
}

.cert-year {
    font-size: 12px;
    color: var(--accent-primary);
    background: var(--accent-light);
    padding: 4px 10px;
    border-radius: 50px;
    font-weight: 600;
}

.cert-link {
    color: var(--text-primary);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all var(--transition-fast);
}

.cert-link:hover {
    color: var(--accent-primary);
}

.cert-link svg {
    opacity: 0.5;
    transition: opacity var(--transition-fast);
}

.cert-link:hover svg {
    opacity: 1;
}

.certification-item.has-link:hover {
    background: var(--accent-light);
    border-color: var(--accent-primary);
    cursor: pointer;
}

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

    .certification-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .cert-meta {
        flex-wrap: wrap;
    }
}

/* ===================================
   LINKEDIN SECTION
   =================================== */
.linkedin-section {
    background: var(--bg-secondary);
    position: relative;
}

.linkedin-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 28px;
    justify-items: center;
}

.linkedin-post {
    background: white;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-sm);
    width: 100%;
    max-width: 540px;
}

.linkedin-post:hover {
    border-color: var(--linkedin-blue);
    box-shadow: var(--shadow-xl), 0 0 40px rgba(0, 119, 181, 0.15);
    transform: translateY(-8px);
}

.linkedin-post-header {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px 24px;
    border-bottom: 1px solid var(--border-light);
    background: var(--bg-secondary);
}

.linkedin-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid white;
    box-shadow: var(--shadow-sm);
}

.linkedin-avatar-placeholder {
    width: 52px;
    height: 52px;
    background: var(--accent-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    color: white;
}

.linkedin-author h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
}

.linkedin-author span {
    font-size: 13px;
    color: var(--text-tertiary);
}

.linkedin-badge {
    margin-left: auto;
    color: var(--linkedin-blue);
}

.linkedin-embed {
    width: 100%;
    min-height: 200px;
}

.linkedin-embed iframe {
    width: 100% !important;
    border: none;
    display: block;
}

.embed-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 60px 20px;
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
    color: var(--text-tertiary);
    font-size: 14px;
}

/* ===================================
   BLOG SECTION
   =================================== */
.blog-section {
    background: var(--bg-primary);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 28px;
}

.blog-card {
    background: white;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    overflow: hidden;
    cursor: pointer;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-sm);
}

.blog-card:hover {
    border-color: var(--accent-primary);
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl), var(--shadow-glow);
}

.blog-card-content {
    padding: 32px;
}

.blog-card-date {
    font-size: 13px;
    color: var(--accent-primary);
    margin-bottom: 14px;
    font-weight: 600;
}

.blog-card-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 14px;
    line-height: 1.3;
    letter-spacing: -0.3px;
}

.blog-card-excerpt {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.7;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-footer {
    padding: 18px 32px;
    border-top: 1px solid var(--border-light);
    background: var(--bg-secondary);
}

.blog-read-more {
    color: var(--accent-primary);
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: gap var(--transition-normal);
}

.blog-card:hover .blog-read-more {
    gap: 12px;
}

/* Empty State */
.empty-state {
    grid-column: 1 / -1;
    text-align: center;
    padding: 100px 40px;
    color: var(--text-tertiary);
    background: var(--bg-secondary);
    border-radius: var(--radius-xl);
    border: 2px dashed var(--border-light);
}

.empty-state svg {
    margin-bottom: 20px;
    opacity: 0.3;
}

.empty-state p {
    font-size: 16px;
}

/* ===================================
   MODALS
   =================================== */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.modal-content {
    position: relative;
    background: white;
    border-radius: var(--radius-2xl);
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    animation: modalSlideIn 0.4s var(--ease-out);
    box-shadow: var(--shadow-xl);
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-30px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 44px;
    height: 44px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-light);
    border-radius: 50%;
    color: var(--text-secondary);
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
    z-index: 10;
}

.modal-close:hover {
    background: var(--accent-primary);
    border-color: var(--accent-primary);
    color: white;
    transform: rotate(90deg);
}

.article-full {
    padding: 56px;
}

.article-full h1 {
    font-size: 36px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.article-meta {
    color: var(--accent-primary);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 36px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--border-light);
}

.article-body {
    color: var(--text-secondary);
    font-size: 17px;
    line-height: 1.9;
}

.article-body h2 {
    color: var(--text-primary);
    font-size: 26px;
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: 700;
}

.article-body h3 {
    color: var(--text-primary);
    font-size: 22px;
    margin-top: 32px;
    margin-bottom: 16px;
    font-weight: 600;
}

.article-body p {
    margin-bottom: 20px;
}

.article-body ul,
.article-body ol {
    margin-bottom: 20px;
    padding-left: 28px;
}

.article-body li {
    margin-bottom: 10px;
}

.article-body code {
    background: var(--bg-secondary);
    padding: 3px 10px;
    border-radius: var(--radius-sm);
    font-family: 'Fira Code', 'Consolas', monospace;
    font-size: 0.9em;
}

.article-body pre {
    background: var(--text-primary);
    color: #e2e8f0;
    padding: 24px;
    border-radius: var(--radius-lg);
    overflow-x: auto;
    margin-bottom: 20px;
}

.article-body blockquote {
    border-left: 4px solid var(--accent-primary);
    padding-left: 24px;
    margin: 28px 0;
    color: var(--text-tertiary);
    font-style: italic;
    font-size: 18px;
}

/* Project Modal */
.project-modal-content {
    max-width: 900px;
}

.project-modal-body {
    padding: 40px;
}

.project-modal-image {
    width: 100%;
    max-height: 500px;
    object-fit: contain;
    border-radius: var(--radius-xl);
    margin-bottom: 28px;
    background: var(--bg-secondary);
}

.project-modal-body h2 {
    font-size: 32px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.project-modal-body p {
    color: var(--text-secondary);
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 28px;
}

.project-modal-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.project-modal-tech span {
    padding: 10px 20px;
    background: var(--accent-light);
    color: var(--accent-primary);
    font-size: 14px;
    font-weight: 600;
    border-radius: 50px;
}

/* ===================================
   ADMIN SECTION STYLES
   =================================== */
.admin-section {
    background: var(--bg-tertiary);
    border-top: 1px solid var(--border-light);
}

.admin-login {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.login-card {
    background: white;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-2xl);
    padding: 56px;
    text-align: center;
    max-width: 420px;
    width: 100%;
    box-shadow: var(--shadow-lg);
}

.login-icon {
    width: 88px;
    height: 88px;
    background: var(--accent-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px;
    color: white;
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.3);
}

.login-card h2 {
    font-size: 28px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.login-card>p {
    color: var(--text-tertiary);
    margin-bottom: 28px;
    font-size: 15px;
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.login-input {
    padding: 16px 20px;
    background: var(--bg-secondary);
    border: 2px solid var(--border-light);
    border-radius: var(--radius-lg);
    color: var(--text-primary);
    font-size: 16px;
    text-align: center;
    transition: all var(--transition-fast);
}

.login-input:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 4px var(--accent-light);
}

.login-hint {
    margin-top: 20px;
    font-size: 13px;
    color: var(--text-tertiary);
}

/* Admin Panel */
.admin-panel {
    padding-top: 20px;
}

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
    background: white;
    padding: 24px 28px;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
}

.admin-header h2 {
    font-size: 26px;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.5px;
}

.admin-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 28px;
    flex-wrap: wrap;
    background: white;
    padding: 14px;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
}

.admin-tab {
    padding: 12px 22px;
    background: transparent;
    border: 2px solid var(--border-light);
    border-radius: var(--radius-lg);
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.admin-tab:hover {
    border-color: var(--accent-primary);
    color: var(--accent-primary);
}

.admin-tab.active {
    background: var(--accent-gradient);
    color: white;
    border-color: transparent;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.3);
}

.admin-tab-content {
    display: none;
}

.admin-tab-content.active {
    display: block;
}

.editor-card {
    background: white;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    padding: 36px;
    box-shadow: var(--shadow-sm);
}

.editor-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-light);
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.form-input {
    width: 100%;
    padding: 14px 18px;
    background: var(--bg-secondary);
    border: 2px solid var(--border-light);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-size: 16px;
    font-family: inherit;
    transition: all var(--transition-fast);
}

.form-input:focus {
    outline: none;
    border-color: var(--accent-primary);
    background: white;
    box-shadow: 0 0 0 4px var(--accent-light);
}

.form-textarea {
    width: 100%;
    padding: 18px;
    background: var(--bg-secondary);
    border: 2px solid var(--border-light);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-size: 16px;
    font-family: inherit;
    min-height: 200px;
    resize: vertical;
    line-height: 1.7;
}

.form-textarea:focus {
    outline: none;
    border-color: var(--accent-primary);
    background: white;
    box-shadow: 0 0 0 4px var(--accent-light);
}

.form-hint {
    font-size: 13px;
    color: var(--text-tertiary);
    margin-top: 10px;
}

/* GitHub OAuth Button */
.btn-github {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 24px;
    background: #24292e;
    color: white;
    font-size: 16px;
    font-weight: 600;
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: all var(--transition-fast);
    border: none;
    cursor: pointer;
    width: 100%;
}

.btn-github:hover {
    background: #2f363d;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.btn-github svg {
    fill: white;
}

.auth-error {
    margin-top: 16px;
    padding: 12px 16px;
    background: rgba(239, 68, 68, 0.1);
    color: var(--error);
    border-radius: var(--radius-md);
    font-size: 14px;
    text-align: center;
}

.admin-user {
    display: flex;
    align-items: center;
    gap: 12px;
}

.admin-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent-primary);
}

#adminName {
    font-weight: 600;
    color: var(--text-primary);
}

/* Toggle Switch */
.checkbox-group {
    padding: 24px;
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
}

.toggle-label {
    display: flex;
    align-items: center;
    gap: 14px;
    cursor: pointer;
}

.toggle-label input {
    display: none;
}

.toggle-slider {
    width: 52px;
    height: 28px;
    background: var(--border-medium);
    border-radius: 14px;
    position: relative;
    transition: background var(--transition-fast);
}

.toggle-slider::before {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 22px;
    height: 22px;
    background: white;
    border-radius: 50%;
    transition: all var(--transition-fast);
    box-shadow: var(--shadow-sm);
}

.toggle-label input:checked+.toggle-slider {
    background: var(--linkedin-blue);
}

.toggle-label input:checked+.toggle-slider::before {
    left: 27px;
}

.toggle-text {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
}

/* Admin Edit Sections */
.admin-edit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

/* Manage Section */
.manage-section {
    margin-bottom: 32px;
}

.manage-section h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 18px;
}

.manage-list {
    background: white;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.manage-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 28px;
    border-bottom: 1px solid var(--border-light);
    transition: background var(--transition-fast);
}

.manage-item:hover {
    background: var(--bg-secondary);
}

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

.manage-item-info h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.manage-item-info span {
    font-size: 13px;
    color: var(--text-tertiary);
}

.manage-item-info .linkedin-badge {
    display: inline-block;
    background: var(--linkedin-blue);
    color: white;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 11px;
    margin-left: 10px;
    font-weight: 600;
}

.btn-delete {
    padding: 10px 18px;
    background: rgba(239, 68, 68, 0.08);
    color: var(--error);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: var(--radius-md);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.btn-delete:hover {
    background: var(--error);
    color: white;
    border-color: var(--error);
}

.btn-edit {
    padding: 10px 18px;
    background: rgba(99, 102, 241, 0.08);
    color: var(--accent-primary);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: var(--radius-md);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
}

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

.manage-actions {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}

.manage-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.empty-manage {
    padding: 48px;
    text-align: center;
    color: var(--text-tertiary);
}

/* ===================================
   FOOTER
   =================================== */
.footer {
    background: white;
    border-top: 1px solid var(--border-light);
    padding: 72px 0 36px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 48px;
}

.footer-brand {
    max-width: 400px;
}

.footer-logo {
    display: inline-block;
    font-size: 28px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 14px;
    letter-spacing: -0.5px;
}

.footer-brand p {
    color: var(--text-tertiary);
    font-size: 15px;
    line-height: 1.6;
}

.footer-links {
    display: flex;
    gap: 14px;
}

.footer-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
    padding: 12px 20px;
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    transition: all var(--transition-fast);
}

.footer-link:hover {
    color: var(--accent-primary);
    border-color: var(--accent-primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.footer-link svg {
    width: 18px;
    height: 18px;
}

.footer-bottom {
    text-align: center;
    padding-top: 28px;
    border-top: 1px solid var(--border-light);
}

.footer-bottom p {
    color: var(--text-tertiary);
    font-size: 14px;
    margin-bottom: 10px;
}

.copyright {
    color: var(--text-tertiary);
    opacity: 0.6;
    font-size: 13px;
}

.admin-footer-link {
    display: inline-block;
    margin-top: 18px;
    font-size: 12px;
    color: var(--text-tertiary);
    opacity: 0.4;
    transition: all var(--transition-fast);
    letter-spacing: 0.5px;
}

.admin-footer-link:hover {
    opacity: 1;
    color: var(--accent-primary);
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */
@media (max-width: 1024px) {
    .project-card {
        grid-template-columns: 1fr;
        padding: 32px;
        gap: 32px;
    }

    .project-card:nth-child(even) {
        direction: ltr;
    }

    .project-image {
        order: -1;
    }

    .project-info h3 {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 80px 0;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 24px;
        gap: 8px;
        border-bottom: 1px solid var(--border-light);
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: all var(--transition-normal);
        box-shadow: var(--shadow-lg);
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .nav-link {
        width: 100%;
        text-align: center;
        padding: 16px;
    }

    .nav-link::after {
        display: none;
    }

    .hero-stats {
        flex-direction: column;
        gap: 28px;
    }

    .hero-cta {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .btn {
        width: 100%;
    }

    .timeline::before {
        left: 12px;
    }

    .timeline-item {
        padding-left: 48px;
    }

    .timeline-dot {
        width: 26px;
        height: 26px;
    }

    .timeline-dot.current::after {
        width: 8px;
        height: 8px;
    }

    .timeline-header {
        flex-direction: column;
        gap: 8px;
    }

    .timeline-content {
        padding: 24px;
    }

    .section-title {
        font-size: 32px;
    }

    .section-header {
        margin-bottom: 48px;
    }

    .project-card {
        padding: 24px;
    }

    .skills-category {
        padding: 28px;
    }

    .linkedin-grid {
        grid-template-columns: 1fr;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .admin-tabs {
        flex-direction: column;
    }

    .admin-tab {
        width: 100%;
        text-align: center;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-brand {
        max-width: 100%;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .article-full {
        padding: 32px;
    }

    .article-full h1 {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 40px;
    }

    .hero-avatar {
        width: 120px;
        height: 120px;
    }

    .stat-number {
        font-size: 32px;
    }

    .hero-badge {
        padding: 8px 18px;
        font-size: 13px;
    }

    .login-card {
        padding: 36px 28px;
    }

    .editor-card {
        padding: 24px;
    }

    .manage-item {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
    }

    .project-card.no-image {
        padding: 36px;
    }
}

/* ===================================
   UTILITY CLASSES
   =================================== */
.hidden {
    display: none !important;
}

.text-center {
    text-align: center;
}

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

/* Toast Notifications */
.toast {
    position: fixed;
    bottom: 28px;
    right: 28px;
    padding: 18px 28px;
    background: white;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    color: var(--text-primary);
    font-size: 14px;
    font-weight: 600;
    z-index: 3000;
    box-shadow: var(--shadow-xl);
    animation: toastSlideIn 0.4s var(--ease-out), toastSlideOut 0.4s var(--ease-out) 2.6s forwards;
}

@keyframes toastSlideIn {
    from {
        transform: translateX(120%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes toastSlideOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }

    to {
        transform: translateX(120%);
        opacity: 0;
    }
}

.toast.success {
    border-left: 4px solid var(--success);
}

.toast.error {
    border-left: 4px solid var(--error);
}