/* =====================================================
   AUTHOR PAGE STYLES
   ===================================================== */

/* Base Author Section */
.author-page-section {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--color-bg-darkest) 0%, var(--color-bg-darker) 100%) !important;
    color: var(--color-text-primary);
    padding: 0;
    position: relative;
    overflow-x: hidden;
}

.author-page-section .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px;
    position: relative;
}

/* =====================================================
   AUTHOR HERO SECTION
   ===================================================== */

.author-hero {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 82, 82, 0.2);
    border-radius: 25px;
    padding: 60px 40px;
    margin-bottom: 40px;
    overflow: hidden;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.author-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(255, 82, 82, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(255, 82, 82, 0.15) 0%, transparent 50%);
    animation: patternMove 20s ease-in-out infinite;
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        rgba(255, 82, 82, 0.1) 0%, 
        transparent 50%, 
        rgba(255, 82, 82, 0.05) 100%);
}

@keyframes patternMove {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(20px, -20px) rotate(1deg); }
    66% { transform: translate(-20px, 20px) rotate(-1deg); }
}

.author-hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 40px;
    align-items: center;
}

/* Avatar Section */
.author-avatar-container {
    position: relative;
}

.avatar-wrapper {
    position: relative;
    display: inline-block;
}

.author-avatar {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 4px solid rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 15px 35px rgba(255, 82, 82, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
}

.avatar-ring {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 2px solid var(--color-accent);
    border-radius: 50%;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.4s ease;
    z-index: 1;
}

.author-avatar-container:hover .avatar-ring {
    opacity: 1;
    transform: scale(1);
    animation: pulse-ring 2s infinite;
}

.author-avatar-container:hover .author-avatar {
    transform: scale(1.05);
    box-shadow: 
        0 20px 40px rgba(255, 82, 82, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.avatar-badge {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    border: 3px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 5px 15px rgba(255, 82, 82, 0.4);
    z-index: 3;
}

@keyframes pulse-ring {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.2); opacity: 0; }
}

/* Author Info */
.author-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.author-name-section {
    margin-bottom: 10px;
}

.author-name {
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    line-height: 1.2;
    text-shadow: 0 4px 8px rgba(255, 82, 82, 0.2);
}

.author-username {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 5px 0 0 0;
    font-weight: 500;
    font-family: 'Courier New', monospace;
}

.author-bio {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 15px;
    border-left: 4px solid var(--color-accent);
    backdrop-filter: blur(10px);
}

.author-bio p {
    margin: 0;
    line-height: 1.6;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Author Stats */
.author-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 20px 0;
}

.stat-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 20px 15px;
    border-radius: 15px;
    border: 1px solid rgba(255, 82, 82, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    cursor: default;
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 25px rgba(255, 82, 82, 0.2);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-accent);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Author Meta */
.author-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
}

.author-meta-item {
    display: flex;
    align-items: center;
}

.join-date {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.author-social-links {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.social-link {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    font-size: 1.1rem;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 1;
}

.social-link i {
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Website Link */
.website-link {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.website-link::before {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    opacity: 0;
}

.website-link:hover {
    border-color: #667eea;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

.website-link:hover::before {
    opacity: 1;
}

.website-link:hover i {
    color: white;
}

/* LinkedIn Link */
.linkedin-link {
    background: rgba(0, 119, 181, 0.1);
    color: #0077b5;
}

.linkedin-link::before {
    background: linear-gradient(135deg, #0077b5 0%, #005885 100%);
    opacity: 0;
}

.linkedin-link:hover {
    border-color: #0077b5;
    box-shadow: 0 10px 30px rgba(0, 119, 181, 0.4);
}

.linkedin-link:hover::before {
    opacity: 1;
}

.linkedin-link:hover i {
    color: white;
}

/* Twitter/X Link */
.twitter-link {
    background: rgba(0, 0, 0, 0.1);
    color: #000;
}

.twitter-link::before {
    background: linear-gradient(135deg, #000 0%, #333 100%);
    opacity: 0;
}

.twitter-link:hover {
    border-color: #000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.twitter-link:hover::before {
    opacity: 1;
}

.twitter-link:hover i {
    color: white;
}

/* Medium Link */
.medium-link {
    background: rgba(0, 0, 0, 0.1);
    color: #000;
}

.medium-link::before {
    background: linear-gradient(135deg, #000 0%, #333 100%);
    opacity: 0;
}

.medium-link:hover {
    border-color: #000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.medium-link:hover::before {
    opacity: 1;
}

.medium-link:hover i {
    color: white;
}

/* GitHub Link */
.github-link {
    background: rgba(36, 41, 47, 0.1);
    color: #24292f;
}

.github-link::before {
    background: linear-gradient(135deg, #24292f 0%, #1c1f23 100%);
    opacity: 0;
}

.github-link:hover {
    border-color: #24292f;
    box-shadow: 0 10px 30px rgba(36, 41, 47, 0.4);
}

.github-link:hover::before {
    opacity: 1;
}

.github-link:hover i {
    color: white;
}

/* Instagram Link */
.instagram-link {
    background: rgba(225, 48, 108, 0.1);
    color: #e1306c;
}

.instagram-link::before {
    background: linear-gradient(135deg, #e1306c 0%, #fd1d1d 25%, #fcb045 50%, #833ab4 75%, #405de6 100%);
    opacity: 0;
}

.instagram-link:hover {
    border-color: #e1306c;
    box-shadow: 0 10px 30px rgba(225, 48, 108, 0.4);
}

.instagram-link:hover::before {
    opacity: 1;
}

.instagram-link:hover i {
    color: white;
}

/* Social Tooltip */
.social-tooltip {
    position: absolute;
    bottom: -35px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 0.75rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    z-index: 10;
}

.social-tooltip::before {
    content: '';
    position: absolute;
    top: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-bottom: 4px solid rgba(0, 0, 0, 0.8);
}

.social-link:hover .social-tooltip {
    opacity: 1;
    bottom: -45px;
}

/* =====================================================
   CONTENT TABS SECTION
   ===================================================== */

.author-content-tabs {
    margin-bottom: 40px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 82, 82, 0.2);
    border-radius: 20px;
    padding: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.tabs-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.tab-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 20px 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid transparent;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 600;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.tab-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.tab-item:hover::before {
    left: 100%;
}

.tab-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 82, 82, 0.2);
}

.tab-item.active {
    background: var(--gradient-primary);
    border-color: rgba(255, 255, 255, 0.3);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 82, 82, 0.4);
}

.tab-item i {
    font-size: 1.2rem;
}

.tab-count {
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 8px;
    border-radius: 10px;
    font-size: 0.8rem;
    font-weight: 700;
    min-width: 24px;
    text-align: center;
}

.tab-item.active .tab-count {
    background: rgba(255, 255, 255, 0.3);
}

/* =====================================================
   CONTENT GRID SECTION
   ===================================================== */

.author-content-grid {
    position: relative;
}

.tab-content {
    display: none;
    animation: fadeInUp 0.6s ease-out;
}

.tab-content.active {
    display: block;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 32px;
    margin-bottom: 60px;
}

/* Author Blog Cards */
.author-blog-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    min-height: 480px;
}

.author-blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.2);
    border-color: rgba(102, 126, 234, 0.5);
}

.author-blog-card-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.author-blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.author-blog-card:hover .author-blog-card-image img {
    transform: scale(1.1);
}

.author-blog-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(11, 9, 10, 0.9) 100%);
}

.author-content-type-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    display: inline-block;
    color: var(--color-white);
    padding: 6px 16px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    z-index: 2;
}

.author-post-badge {
    background: linear-gradient(135deg, #ff4500 0%, #ff6347 100%);
}

.author-article-badge {
    background: linear-gradient(135deg, #2196F3 0%, #1976D2 100%);
}

.author-project-badge {
    background: linear-gradient(135deg, #FF9800 0%, #F57C00 100%);
}

.author-blog-card-content {
    padding: 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.author-blog-card-category {
    margin-bottom: 16px;
}

.author-blog-card-category a {
    display: inline-block;
    background: var(--gradient-primary);
    color: var(--color-white);
    padding: 6px 16px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px var(--shadow-red);
}

.author-blog-card-category a:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px var(--shadow-red-hover);
    color: var(--color-white);
}

.author-blog-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.3;
}

.author-blog-card-title a {
    color: var(--color-white);
    text-decoration: none;
    transition: color 0.2s;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
}

.author-blog-card-title a:hover {
    color: var(--color-white);
}

.author-blog-card-excerpt {
    color: var(--color-gray-dark);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 24px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    line-clamp: 3;
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: 4.8rem;
}

.author-blog-card-excerpt a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.author-blog-card-excerpt:hover a {
    color: rgba(255, 255, 255, 0.9);
}

.author-blog-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: #b8c6db;
}

.author-blog-card-author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.author-blog-card-author a {
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.author-blog-card-author a:hover {
    transform: scale(1.05);
    color: var(--color-white);
}

.author-blog-card-author img {
    border-radius: 50%;
    width: 36px;
    height: 36px;
    border: 2px solid rgba(220, 20, 60, 0.3);
}

.author-blog-read-btn {
    display: inline-block;
    background: var(--gradient-primary);
    color: var(--color-white);
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.author-blog-read-btn::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;
}

.author-blog-read-btn:hover::before {
    left: 100%;
}

.author-blog-read-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--shadow-red-hover);
    color: var(--color-white);
}

/* Card Type Variations */
.post-card {
    position: relative;
}

.post-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, #ff4500, #ff6347);
    opacity: 0.8;
}

.article-card {
    position: relative;
}

.article-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, #2196F3, #1976D2);
    opacity: 0.8;
}

.project-card {
    position: relative;
}

.project-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, #FF9800, #F57C00);
    opacity: 0.8;
}

.card-header {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.card-header img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.content-card:hover .card-header img {
    transform: scale(1.05);
}

.card-header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.4) 100%);
}

.content-type-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 5px;
    color: white;
    z-index: 2;
    transition: all 0.3s ease;
}

.content-type-badge:hover {
    transform: scale(1.05);
}

.post-badge {
    background: linear-gradient(135deg, #ff4500 0%, #ff6347 100%);
}

.article-badge {
    background: linear-gradient(135deg, #2196F3 0%, #1976D2 100%);
}

.project-badge {
    background: linear-gradient(135deg, #FF9800 0%, #F57C00 100%);
}

.content-date {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 5px;
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 2;
}

.card-thumbnail {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.card-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.content-card:hover .card-thumbnail img {
    transform: scale(1.05);
}

.thumbnail-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.4) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
}

.card-thumbnail:hover .thumbnail-overlay {
    opacity: 1;
}

.thumbnail-overlay i {
    color: white;
    font-size: 2.5rem;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.card-thumbnail:hover .thumbnail-overlay i {
    transform: scale(1);
}

.card-content {
    padding: 25px;
    position: relative;
    z-index: 2;
}

.card-title {
    margin: 0 0 15px 0;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.4;
}

.card-title a {
    color: var(--color-white) !important;
    text-decoration: none;
    transition: all 0.3s ease;
}

.card-title a:hover {
    color: #dc143c;
}

.card-excerpt {
    color: var(--color-white) !important;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    padding-top: 15px;
    border-top: 1px solid #e5e7eb;
    position: relative;
    z-index: 2;
    font-size: 0.875rem;
    color: var(--color-white) !important;
}

.category-link {
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.2), rgba(192, 57, 43, 0.2));
    color: rgba(255, 255, 255, 0.9);
    padding: 6px 14px;
    border-radius: 18px;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid rgba(231, 76, 60, 0.3);
    backdrop-filter: blur(5px);
}

.category-link:hover {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
}

.read-more-btn {
    background: var(--color-red) !important;
    color: var(--color-white) !important;
    border: none !important;
    border-radius: 8px !important;
    font-weight: 600;
    font-size: 1rem;
    padding: 12px 24px !important;
    display: inline-block;
    transition: background 0.2s, color 0.2s;
    box-shadow: 0 4px 15px var(--color-red-bright, #E5383B);
    text-decoration: none;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 8px;
}

.read-more-btn:hover {
    background: var(--color-red-bright) !important;
    color: var(--color-white) !important;
    text-decoration: none;
    box-shadow: 0 8px 25px var(--color-red-bright, #E5383B);
    transform: translateY(-2px);
}

/* No Content Message */
.no-content-message {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 40px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border: 2px dashed rgba(231, 76, 60, 0.3);
    border-radius: 20px;
    backdrop-filter: blur(15px);
}

.no-content-message i {
    font-size: 4rem;
    color: rgba(231, 76, 60, 0.6);
    margin-bottom: 20px;
    filter: drop-shadow(0 0 10px rgba(231, 76, 60, 0.2));
}

.no-content-message h3 {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.no-content-message p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* Loading Placeholder */
.loading-placeholder {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 40px;
    color: rgba(255, 255, 255, 0.7);
}

.loading-placeholder i {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--color-accent);
}

/* Load More Button */
.load-more-container {
    text-align: center;
    margin-top: 40px;
}

.load-more-btn {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 5px 20px rgba(255, 82, 82, 0.3);
    position: relative;
    overflow: hidden;
}

.load-more-btn::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 ease;
}

.load-more-btn:hover::before {
    left: 100%;
}

.load-more-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 82, 82, 0.4);
}

.load-more-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* =====================================================
   RESPONSIVE DESIGN
   ===================================================== */

/* Tablet */
@media (max-width: 1024px) {
    .author-hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    
    .author-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .tabs-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .content-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 20px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .author-page-section .container {
        padding: 20px 15px;
    }
    
    .author-hero {
        padding: 40px 25px;
        margin-bottom: 30px;
    }
    
    .author-name {
        font-size: 2.2rem;
    }
    
    .author-avatar {
        width: 120px;
        height: 120px;
    }
    
    .avatar-badge {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .author-stats {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
    
    .stat-item {
        padding: 15px 10px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .tabs-container {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .tab-item {
        padding: 15px 12px;
        font-size: 0.9rem;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .card-footer {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }
    
    .author-meta {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .author-hero {
        padding: 30px 20px;
    }
    
    .author-name {
        font-size: 1.8rem;
    }
    
    .author-stats {
        grid-template-columns: 1fr;
    }
    
    .stat-item {
        padding: 12px 8px;
    }
    
    .author-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .author-social-links {
        justify-content: center;
        width: 100%;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .no-content-message,
    .loading-placeholder {
        padding: 40px 20px;
    }
    
    .no-content-message i {
        font-size: 3rem;
    }
}
