.jmt-author-layout {
    min-height: 100vh;
}

.jmt-author-hero {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(249, 115, 22, 0.1));
}

.jmt-author-dashboard {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.jmt-author-dashboard::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(245, 158, 11, 0.1), transparent);
    transition: left 1s ease;
    animation: jmtAuthorGlow 4s ease-in-out infinite;
}

@keyframes jmtAuthorGlow {
    0%, 100% {
        left: -100%;
    }
    50% {
        left: 100%;
    }
}

.jmt-author-avatar {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.jmt-author-avatar::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
}

.jmt-author-profile:hover .jmt-author-avatar::before {
    left: 100%;
}

.jmt-author-stats .jmt-stat-item {
    transition: all 0.3s ease;
}

.jmt-author-stats .jmt-stat-item:hover {
    transform: translateY(-5px);
}

.jmt-author-actions button {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.jmt-author-actions button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transition: all 0.3s ease;
    transform: translate(-50%, -50%);
}

.jmt-author-actions button:hover::before {
    width: 300px;
    height: 300px;
}

@media (max-width: 768px) {
    .jmt-author-profile {
        flex-direction: column;
        text-align: center;
    }
    
    .jmt-author-avatar {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .jmt-author-actions {
        flex-direction: column;
    }
    
    .jmt-author-actions button {
        width: 100%;
        margin-bottom: 0.5rem;
    }
}